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.
From cortexnpx claudepluginhub jsvitolo/cortex-plugins --plugin cortexThis skill is limited to using the following tools:
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
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 completes