This tool allows the LLM to run gert::git_status(), equivalent to git status in the terminal, and to see the current status of the working
directory.
btw_tool_git_status(
include = c("both", "staged", "unstaged"),
pathspec = NULL,
`_intent` = ""
)One of "both", "staged", or "unstaged". Use "both" to
show both staged and unstaged files (default).
Optional character vector with paths to match.
An optional string describing the intent of the tool use. When the tool is used by an LLM, the model will use this argument to explain why it called the tool.
Returns a character table of file statuses.
withr::with_tempdir({
gert::git_init()
gert::git_config_set("user.name", "R Example")
gert::git_config_set("user.email", "ex@example.com")
writeLines("hello, world", "hello.md")
# What the LLM sees
cat(btw_tool_git_status()@value)
})
#> hello.md [new] -unstaged