You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: update Primary Agent and MCP API documentation
Update documentation for recently added features
README: Add Solution Architect and Technical Planner to Layer 2 Primary Agents (5 languages)
API docs: Document parse_mode response fields and new MCP tools
CHANGELOG: Add version 2.0.0 changes
Agents README: Add detailed documentation for Solution Architect and Technical Planner
no reference
"text": "{\"agentName\": \"security-specialist\", \"systemPrompt\": \"You are a Security Specialist agent...\", \"taskPrompt\": \"Analyze security of src/auth/login.ts...\"}"
665
+
}
666
+
]
667
+
}
668
+
```
669
+
670
+
---
671
+
672
+
### prepare_parallel_agents
673
+
674
+
Prepare multiple specialist agents for parallel execution via Claude Code Task tool.
675
+
676
+
**Input Schema**:
677
+
678
+
```json
679
+
{
680
+
"type": "object",
681
+
"properties": {
682
+
"mode": {
683
+
"type": "string",
684
+
"enum": ["PLAN", "ACT", "EVAL"],
685
+
"description": "Current workflow mode"
686
+
},
687
+
"specialists": {
688
+
"type": "array",
689
+
"items": { "type": "string" },
690
+
"description": "List of specialist agent names"
691
+
},
692
+
"targetFiles": {
693
+
"type": "array",
694
+
"items": { "type": "string" },
695
+
"description": "Files to analyze or review"
696
+
},
697
+
"sharedContext": {
698
+
"type": "string",
699
+
"description": "Shared context or task description for all agents"
Prompts provide pre-defined message templates for common workflows.
@@ -584,7 +819,7 @@ Activate a specific specialist agent with project context.
584
819
|`Invalid URI scheme`| URI doesn't start with `rules://` or `config://`| Use correct URI scheme |
585
820
|`Resource not found: {uri}`| Requested rule file doesn't exist | Check file path in `packages/rules/.ai-rules/`|
586
821
|`Agent '{name}' not found`| Invalid agent name | Use valid agent name from list |
587
-
|`Tool not found: {name}`| Invalid tool name | Use one of: `search_rules`, `get_agent_details`, `parse_mode`, `get_project_config`, `suggest_config_updates`, `recommend_skills`|
822
+
|`Tool not found: {name}`| Invalid tool name | Use one of: `search_rules`, `get_agent_details`, `parse_mode`, `get_project_config`, `suggest_config_updates`, `recommend_skills`, `list_skills`, `get_agent_system_prompt`, `prepare_parallel_agents`|
588
823
|`Failed to load project configuration`| Missing or invalid `codingbuddy.config.js`| Run `npx codingbuddy init`|
0 commit comments