From cortex
Execute the 3-agent workflow (research → implement → verify) for coding tasks. Use for ALL feature implementations, bug fixes, and code changes. Spawns autonomous agents that research, implement, and verify changes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/cortex:implement <task-id or description><task-id or description>This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill executes the **3-agent autonomous workflow** for coding tasks.
This skill executes the 3-agent autonomous workflow for coding tasks.
research → implement → verify → done
| Agent | Purpose |
|---|---|
| research | Understand codebase, search memories, create plan |
| implement | Write code following the plan |
| verify | Run tests, review code, complete task |
$ARGUMENTS
If a task ID (CX-N) was provided, get the task:
mcp__cortex__task(action="get", id="CX-N")
If a description was provided, create a task first:
mcp__cortex__task(action="create", title="<description>", type="feature|bug|chore")
Spawn the research agent to begin:
mcp__cortex__agent(action="spawn", task_id="CX-N", agent_name="research")
This returns a prompt and session_id.
Use the Task tool with the prompt from agent_spawn:
Task(
subagent_type="research",
prompt="<prompt from agent_spawn>",
run_in_background=false
)
The research agent will:
agent_report when doneWhen the agent completes and calls agent_report, check the response:
next_action.action == "spawn_agent", execute the next agentnext_action.action == "workflow_complete", the task is doneExecute each agent's prompt using the Task tool until workflow is complete.
/implement CX-104
→ Executes full workflow for task CX-104
/implement Add user authentication
→ Creates task, then executes full workflow
Check agent sessions:
mcp__cortex__agent(action="sessions", task_id="CX-N")
done when verify completesnpx claudepluginhub jsvitolo/cortex-plugins --plugin cortexCreates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.