-
Notifications
You must be signed in to change notification settings - Fork 1.3k
feat(tools-box): introduce tools modal with builtin tools, mcp, and subagents #1854
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: dev
Are you sure you want to change the base?
feat(tools-box): introduce tools modal with builtin tools, mcp, and subagents #1854
Conversation
735dacd
to
7563e05
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This violates the AGENTS.md guideline: AVOID using any
type. Consider: Use a more specific type like Record<string, { name: string; description: string; type: string; source: string; defaultEnabled: boolean }>
File: packages/opencode/src/agent/agent.ts
Line: 143
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This violates the AGENTS.md guideline: AVOID using any
type. Consider: Use a more specific type like Record<string, { name: string; description: string; type: string; source: string; defaultEnabled: boolean }>
File: packages/opencode/src/mcp/index.ts
Line: 158
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This violates the AGENTS.md guideline: AVOID using any
type. Consider: Use a more specific type like Record<string, { name: string; description: string; type: string; source: string; defaultEnabled: boolean }>
File: packages/opencode/src/tool/registry.ts
Line: 92
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This violates the AGENTS.md guideline: AVOID else
statements. Consider: Restructure this if-else block to avoid the else clause by returning early or using separate conditional blocks.
File: packages/opencode/src/session/index.ts
Around lines 817-830 in the diff (the else block in the agent description replacement logic)
9aa0700
to
5141fe8
Compare
OK quick thoughts
|
Heard. @thdxr |
- stupid amount of commits rebased, no need to see my struggles
1488dda
to
b11635e
Compare
all done ! |
Introduce the tool box
This feature rich PR provides users with fine-grained control over their Agent's capabilities while maintaining a clean, intuitive interface that integrates seamlessly with the existing TUI experience. Deprecating #1767
UX Enhancements
tab
) to manage toolsets independently for each one.Issues
Resolves #1142