diff options
| author | Kujtim Hoxha <[email protected]> | 2025-04-17 00:00:19 +0200 |
|---|---|---|
| committer | Kujtim Hoxha <[email protected]> | 2025-04-21 13:42:02 +0200 |
| commit | 36172979b45facc8ccec6861f124193eaebc42e9 (patch) | |
| tree | 41f7683c53bd1aaa550a7ec22e027e98c29e5d4e /internal/llm/agent | |
| parent | cc07f7a186995f428436bc1adc66a264a95171a4 (diff) | |
| download | opencode-36172979b45facc8ccec6861f124193eaebc42e9.tar.gz opencode-36172979b45facc8ccec6861f124193eaebc42e9.zip | |
Update agent prompt, improve TUI patch UI, remove obsolete tool tests
- Replace and expand agent coder prompt for clarity and safety
- Add patch tool and TUI dialog support for patch diffs
- Sort sidebar modified files by name
- Remove Bash/Edit/Sourcegraph/Write tool tests
🤖 Generated with opencode
Co-Authored-By: opencode <[email protected]>
Diffstat (limited to 'internal/llm/agent')
| -rw-r--r-- | internal/llm/agent/tools.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/llm/agent/tools.go b/internal/llm/agent/tools.go index 409d14273..9120809ff 100644 --- a/internal/llm/agent/tools.go +++ b/internal/llm/agent/tools.go @@ -31,6 +31,8 @@ func CoderAgentTools( tools.NewGlobTool(), tools.NewGrepTool(), tools.NewLsTool(), + // TODO: see if we want to use this tool + // tools.NewPatchTool(lspClients, permissions, history), tools.NewSourcegraphTool(), tools.NewViewTool(lspClients), tools.NewWriteTool(lspClients, permissions, history), |
