feat: integrate cognitive enhancement agents into capability index and orchestrator
- Added planner, reflector, memory-manager to capability-index.yaml - Extended capability_routing with cognitive capabilities - Updated orchestrator.md with new agent permissions and routing table - All 3 new agents integrated into workflow Related: Issue #25 (Research Milestone)
This commit is contained in:
@@ -29,6 +29,9 @@ permission:
|
|||||||
"agent-architect": allow
|
"agent-architect": allow
|
||||||
"browser-automation": allow
|
"browser-automation": allow
|
||||||
"visual-tester": allow
|
"visual-tester": allow
|
||||||
|
"planner": allow
|
||||||
|
"reflector": allow
|
||||||
|
"memory-manager": allow
|
||||||
---
|
---
|
||||||
|
|
||||||
# Kilo Code: Orchestrator
|
# Kilo Code: Orchestrator
|
||||||
@@ -122,6 +125,9 @@ Use the Task tool to delegate to subagents with these subagent_type values:
|
|||||||
| MarkdownValidator | markdown-validator | Validate Markdown formatting |
|
| MarkdownValidator | markdown-validator | Validate Markdown formatting |
|
||||||
| BackendDeveloper | backend-developer | Node.js, Express, APIs, database |
|
| BackendDeveloper | backend-developer | Node.js, Express, APIs, database |
|
||||||
| WorkflowArchitect | workflow-architect | Create workflow definitions |
|
| WorkflowArchitect | workflow-architect | Create workflow definitions |
|
||||||
|
| Planner | planner | Task decomposition, CoT, ToT planning |
|
||||||
|
| Reflector | reflector | Self-reflection, lesson extraction |
|
||||||
|
| MemoryManager | memory-manager | Memory systems, context retrieval |
|
||||||
|
|
||||||
**Note:** `agent-architect` subagent_type is not recognized. Use `system-analyst` with prompt "You are Agent Architect..." as workaround.
|
**Note:** `agent-architect` subagent_type is not recognized. Use `system-analyst` with prompt "You are Agent Architect..." as workaround.
|
||||||
|
|
||||||
|
|||||||
@@ -394,6 +394,67 @@ agents:
|
|||||||
model: ollama-cloud/gpt-oss:120b
|
model: ollama-cloud/gpt-oss:120b
|
||||||
mode: subagent
|
mode: subagent
|
||||||
|
|
||||||
|
# Cognitive Enhancement (New - Research Based)
|
||||||
|
planner:
|
||||||
|
capabilities:
|
||||||
|
- task_decomposition
|
||||||
|
- chain_of_thought
|
||||||
|
- tree_of_thoughts
|
||||||
|
- plan_execute_reflect
|
||||||
|
- dependency_analysis
|
||||||
|
receives:
|
||||||
|
- complex_task
|
||||||
|
- objective
|
||||||
|
produces:
|
||||||
|
- decomposed_steps
|
||||||
|
- dependency_graph
|
||||||
|
- success_criteria
|
||||||
|
forbidden:
|
||||||
|
- implementation
|
||||||
|
- execution
|
||||||
|
model: ollama-cloud/gpt-oss:120b
|
||||||
|
mode: subagent
|
||||||
|
|
||||||
|
reflector:
|
||||||
|
capabilities:
|
||||||
|
- self_reflection
|
||||||
|
- mistake_analysis
|
||||||
|
- lesson_extraction
|
||||||
|
- trajectory_analysis
|
||||||
|
- heuristic_evaluation
|
||||||
|
receives:
|
||||||
|
- action_trajectory
|
||||||
|
- task_result
|
||||||
|
produces:
|
||||||
|
- reflection_report
|
||||||
|
- lessons_learned
|
||||||
|
- improved_approach
|
||||||
|
forbidden:
|
||||||
|
- implementation
|
||||||
|
- code_changes
|
||||||
|
model: ollama-cloud/gpt-oss:120b
|
||||||
|
mode: subagent
|
||||||
|
|
||||||
|
memory-manager:
|
||||||
|
capabilities:
|
||||||
|
- memory_retrieval
|
||||||
|
- memory_storage
|
||||||
|
- memory_consolidation
|
||||||
|
- relevance_scoring
|
||||||
|
- episodic_management
|
||||||
|
receives:
|
||||||
|
- query
|
||||||
|
- memory_type
|
||||||
|
produces:
|
||||||
|
- retrieved_memories
|
||||||
|
- relevance_scores
|
||||||
|
- consolidated_memories
|
||||||
|
forbidden:
|
||||||
|
- code_changes
|
||||||
|
- implementation
|
||||||
|
model: ollama-cloud/gpt-oss:120b
|
||||||
|
mode: subagent
|
||||||
|
|
||||||
# Capability Routing Map
|
# Capability Routing Map
|
||||||
capability_routing:
|
capability_routing:
|
||||||
code_writing: lead-developer
|
code_writing: lead-developer
|
||||||
@@ -417,6 +478,12 @@ capability_routing:
|
|||||||
duplicate_detection: history-miner
|
duplicate_detection: history-miner
|
||||||
agent_design: agent-architect
|
agent_design: agent-architect
|
||||||
markdown_validation: markdown-validator
|
markdown_validation: markdown-validator
|
||||||
|
# Cognitive Enhancement (New)
|
||||||
|
task_decomposition: planner
|
||||||
|
self_reflection: reflector
|
||||||
|
memory_retrieval: memory-manager
|
||||||
|
chain_of_thought: planner
|
||||||
|
tree_of_thoughts: planner
|
||||||
|
|
||||||
# Parallelizable Tasks
|
# Parallelizable Tasks
|
||||||
parallel_groups:
|
parallel_groups:
|
||||||
|
|||||||
Reference in New Issue
Block a user