Files
supabase-pinger/.opencode/agents/task-planner/SKILL.md
T
Luca Sacchi Ricciardi 6c8c05b13b feat: dashboard real-time con aggiornamento incrementale
- 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/
2026-04-26 14:34:23 +02:00

1.4 KiB

name, description, allowed-tools
name description allowed-tools
task-planner Task Planner — breakdown task in step eseguibili
Read
Write
Task
AskUserQuestion
Analizza task complessi e li scompone in step eseguibili Assign a sub-agenti appropriati.

<planning_method>

Goal-Backward Planning

  1. Definisci goal finale
  2. Identifica step necessari
  3. Ordina per dependencies
  4. 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:

  1. [explorer] Trova struttura API attuale
  2. [editor] Aggiungi endpoint in app.py
  3. [reviewer] Verifica implementazione
  4. [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>