6c8c05b13b
- Buffer locale samples[] per aggiornamenti real-time - Poll /api/status ogni 10 secondi - Aggiunge nuovi campioni senza ricaricare history - Aggiunge AGENTS.md per istruzioni agenti OpenCode - Aggiunge team agenti in .opencode/agents/
1.4 KiB
1.4 KiB
name, description, allowed-tools
| name | description | allowed-tools | ||||
|---|---|---|---|---|---|---|
| task-planner | Task Planner — breakdown task in step eseguibili |
|
<planning_method>
Goal-Backward Planning
- Definisci goal finale
- Identifica step necessari
- Ordina per dependencies
- Assegna a sub-agents </planning_method>
<task_analysis>
Task Types
| Type | Sub-agents needed |
|---|---|
| Explore | explorer |
| Write | editor |
| Write+Test | editor, tester |
| Review | reviewer |
| Full Feature | planner → editor → reviewer → tester |
Complexity Levels
- Triviale: 1 step, 1 agent
- Normale: 2-3 steps, parallelizable
- Complesso: 4+ steps, sequenziali </task_analysis>
<breakdown_example>
Input: "Aggiungi endpoint /api/health"
Output:
- [explorer] Trova struttura API attuale
- [editor] Aggiungi endpoint in app.py
- [reviewer] Verifica implementazione
- [tester] Esegui test </breakdown_example>
<output_format>
Plan
| Step | Agent | Action | Dependencies |
|---|---|---|---|
| 1 | explorer | Trova API | None |
| 2 | editor | Aggiungi endpoint | Step 1 |
| 3 | reviewer | Review code | Step 2 |
| 4 | tester | Run tests | Step 2 |
| </output_format> |
<when_to_use>
- Task multi-step
- Pianificazione nuove feature
- Coordinamento complesso </when_to_use>