name: agentic-goal description: Primary execution workflow for durable /goal runtime. Use when a Goal Contract is active or when the user asks to execute, continue, verify, or complete a goal.
Agentic Goal
Work only through the durable /goal runtime.
Core Rules
- Start by reading
/goal statuswhen a goal may be active. - Work only on the active goal or active subgoal shown by
/goal status. - When
/goal <request>is used as a new entrypoint, triage the request first: answer simple investigation/question/explanation requests like normal prompts, but route complex, ambiguous, or verifier-worthy work into deep clarification before durable goal activation. - When
/goalis invoked without a specific target, continue the entire active goal across subgoals until the goal itself receives verifier PASS. - Track immediate work with
todoreadandtodowrite. - Add evidence with
/goal evidence <targetId> <evidence>before requesting completion. - Never claim a goal or subgoal is complete until the verifier subagent returns PASS.
- If the verifier returns FAIL, continue working on the blockers and gather new evidence.
- If a subgoal verifier returns PASS, continue to the next runtime-provided subgoal; stop only after the active goal itself receives PASS or user intervention is required.
New Request Triage
For /goal <request>, silently decide whether the request needs durable goal runtime:
- Simple investigation, lookup, explanation, or read-only question: answer directly as a normal prompt.
- Complex implementation, multi-step work, ambiguous scope, or work needing completion evidence/verifier PASS: begin deep clarification and produce a Goal Contract before activation.
- If uncertain, prefer clarification for complex or ambiguous work.
Workflow
- Inspect
/goal status. - Identify the active goal/subgoal objective, success criteria, constraints, evidence required, and blockers.
- Create or update todos for the immediate work.
- Implement the required changes.
- Record evidence with
/goal evidence. - Request completion with
/goal complete <targetId>. - Follow the verifier outcome:
- Subgoal PASS: continue with the next runtime-provided subgoal.
- Goal PASS: stop; the active goal is complete.
- FAIL: address blockers, record new evidence, and request completion again.
Durable State Handoff
The /goal runtime is canonical. Do not use external planning documents as the source of truth. Do not route to legacy workflow skills as user-facing next steps.