-
Notifications
You must be signed in to change notification settings - Fork 39
fix: update deprecated Plan+ agent references to Build+ #229
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
Changes from all commits
75d8434
dfb9481
157b1f6
fe1af12
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -358,7 +358,7 @@ opencode run --attach http://localhost:4096 "Another test" --agent SEO | |
| |----------|---------| | ||
| | New MCP added | `opencode run "List tools from [mcp]_*" --agent [agent]` | | ||
| | MCP auth issues | `opencode run "Call [mcp]_[tool]" --agent [agent] 2>&1` | | ||
| | Agent permissions | `opencode run "Try to write a file" --agent Plan+` | | ||
| | Agent permissions | `opencode run "Try to write a file" --agent Build+` | | ||
| | Slash command | `opencode run "/new-command arg1 arg2" --agent Build+` | | ||
| | Quick task | `opencode run "Do X quickly" --agent Build+` | | ||
|
|
||
|
|
@@ -371,7 +371,7 @@ Use the helper script for common testing tasks: | |
| ~/.aidevops/agents/scripts/opencode-test-helper.sh test-mcp dataforseo SEO | ||
|
|
||
| # Test agent permissions | ||
| ~/.aidevops/agents/scripts/opencode-test-helper.sh test-agent Plan+ | ||
| ~/.aidevops/agents/scripts/opencode-test-helper.sh test-agent Build+ | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This doc now shows Other Locations
🤖 Was this useful? React with 👍 or 👎 |
||
|
|
||
| # List tools available to agent | ||
| ~/.aidevops/agents/scripts/opencode-test-helper.sh list-tools Build+ | ||
|
|
@@ -532,7 +532,7 @@ When a parent agent uses the `task` tool to spawn a subagent: | |
| | `write: false, edit: false, bash: true` | NO - bash can write files | | ||
| | `write: false, edit: false, bash: false, task: false` | YES - truly read-only | | ||
|
|
||
| **Example**: Plan+ with `task: true` could call a subagent that creates files, defeating its read-only purpose. | ||
| **Example**: A read-only agent (like @plan-plus) with `task: true` could call a subagent that creates files, defeating its read-only purpose. | ||
|
|
||
| ### Bash Escapes All Restrictions | ||
|
|
||
|
|
@@ -543,12 +543,12 @@ When `bash: true`, the agent can execute ANY shell command, including: | |
|
|
||
| **For true read-only behavior**: Set both `bash: false` AND `task: false` | ||
|
|
||
| ### Plan+ Read-Only Configuration | ||
| ### @plan-plus Read-Only Configuration | ||
|
|
||
| Plan+ is configured as strictly read-only: | ||
| The @plan-plus subagent is configured as strictly read-only: | ||
|
|
||
| ```json | ||
| "Plan+": { | ||
| "@plan-plus": { | ||
| "permission": { | ||
| "edit": "deny", | ||
| "write": "deny", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -91,7 +91,7 @@ The result: AI agents that work *with* your development process, not around it. | |
|
|
||
| ### Agent Structure | ||
|
|
||
| - 15 primary agents (Plan+, Build+, SEO, Marketing, etc.) | ||
| - Primary agents (Build+, SEO, Marketing, etc.) with @plan-plus subagent for planning-only mode | ||
| - 552+ subagent markdown files organized by domain | ||
| - 147 helper scripts in `.agent/scripts/` | ||
| - 14 slash commands for common workflows | ||
|
|
@@ -1238,7 +1238,7 @@ Ordered as they appear in OpenCode Tab selector and other AI assistants (15 tota | |
|
|
||
| | Name | File | Purpose | MCPs Enabled | | ||
| |------|------|---------|--------------| | ||
| | Plan+ | `plan-plus.md` | Planning with semantic search, writes to TODO.md/todo/ | context7, augment, repomix | | ||
| | @plan-plus | `plan-plus.md` | Planning-only subagent (Build+ handles planning by default) | context7, augment, repomix | | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the “Main Agents” table, the 🤖 Was this useful? React with 👍 or 👎 |
||
| | Build+ | `build-plus.md` | Enhanced Build with context tools | context7, augment, repomix | | ||
| | Build-Agent | `build-agent.md` | Design and improve AI agents | context7, augment, repomix | | ||
| | Build-MCP | `build-mcp.md` | Build MCP servers with TS+Bun+ElysiaJS | context7, augment, repomix | | ||
|
|
||
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 prompt asks about “main agents and subagents”, but the “Main Agents Available” list no longer includes the planning-only option that’s referenced later as
@plan-plus, which makes the example a bit inconsistent for enablement decisions. Consider either listing@plan-plusunder subagents here or adjusting the wording to match the list.🤖 Was this useful? React with 👍 or 👎