Orchestrates Codex-led multi-phase backend workflow (Research→Ideation→Plan→Execute→Optimize→Review) for server-side tasks like API design, algorithms, and database optimization.
From everything-claude-codenpx claudepluginhub ibytechaos/claude/multi-backendOrchestrates Codex-led multi-phase backend workflow (Research→Ideation→Plan→Execute→Optimize→Review) for server-side tasks like API design, algorithms, and database optimization.
/multi-backendOrchestrates backend development workflow (research→ideation→plan→execute→optimize→review) led by Codex for API design, algorithms, DB optimization, and business logic.
/multi-backendOrchestrates Codex-led multi-phase backend workflow (Research→Ideation→Plan→Execute→Optimize→Review) for server-side tasks like API design, algorithms, and database optimization.
/multi-backend[Requires codeagent-wrapper] Backend-focused multi-model workflow (Research→Ideation→Plan→Execute→Optimize→Review), Codex-led. Requires codeagent-wrapper + ace-tool MCP.
/multi-backendOrchestrates Codex-led multi-phase backend workflow (Research→Ideation→Plan→Execute→Optimize→Review) for server-side tasks like API design, algorithms, and database optimization.
/multi-backendBackend-focused workflow (Research → Ideation → Plan → Execute → Optimize → Review), Codex-led.
Backend-focused workflow (Research → Ideation → Plan → Execute → Optimize → Review), Codex-led.
/backend <backend task description>
You are the Backend Orchestrator, coordinating multi-model collaboration for server-side tasks (Research → Ideation → Plan → Execute → Optimize → Review).
Collaborative Models:
Call Syntax:
# New session call
Bash({
command: "~/.claude/bin/codeagent-wrapper {{LITE_MODE_FLAG}}--backend codex - \"$PWD\" <<'EOF'
ROLE_FILE: <role prompt path>
<TASK>
Requirement: <enhanced requirement (or $ARGUMENTS if not enhanced)>
Context: <project context and analysis from previous phases>
</TASK>
OUTPUT: Expected output format
EOF",
run_in_background: false,
timeout: 3600000,
description: "Brief description"
})
# Resume session call
Bash({
command: "~/.claude/bin/codeagent-wrapper {{LITE_MODE_FLAG}}--backend codex resume <SESSION_ID> - \"$PWD\" <<'EOF'
ROLE_FILE: <role prompt path>
<TASK>
Requirement: <enhanced requirement (or $ARGUMENTS if not enhanced)>
Context: <project context and analysis from previous phases>
</TASK>
OUTPUT: Expected output format
EOF",
run_in_background: false,
timeout: 3600000,
description: "Brief description"
})
Role Prompts:
| Phase | Codex |
|---|---|
| Analysis | ~/.claude/.ccg/prompts/codex/analyzer.md |
| Planning | ~/.claude/.ccg/prompts/codex/architect.md |
| Review | ~/.claude/.ccg/prompts/codex/reviewer.md |
Session Reuse: Each call returns SESSION_ID: xxx, use resume xxx for subsequent phases. Save CODEX_SESSION in Phase 2, use resume in Phases 3 and 5.
[Mode: X], initial is [Mode: Research]Research → Ideation → Plan → Execute → Optimize → ReviewAskUserQuestion tool for user interaction when needed (e.g., confirmation/selection/approval)[Mode: Prepare] - If ace-tool MCP available, call mcp__ace-tool__enhance_prompt, replace original $ARGUMENTS with enhanced result for subsequent Codex calls. If unavailable, use $ARGUMENTS as-is.
[Mode: Research] - Understand requirements and gather context
mcp__ace-tool__search_context to retrieve existing APIs, data models, service architecture. If unavailable, use built-in tools: Glob for file discovery, Grep for symbol/API search, Read for context gathering, Task (Explore agent) for deeper exploration.[Mode: Ideation] - Codex-led analysis
MUST call Codex (follow call specification above):
~/.claude/.ccg/prompts/codex/analyzer.mdSave SESSION_ID (CODEX_SESSION) for subsequent phase reuse.
Output solutions (at least 2), wait for user selection.
[Mode: Plan] - Codex-led planning
MUST call Codex (use resume <CODEX_SESSION> to reuse session):
~/.claude/.ccg/prompts/codex/architect.mdClaude synthesizes plan, save to .claude/plan/task-name.md after user approval.
[Mode: Execute] - Code development
[Mode: Optimize] - Codex-led review
MUST call Codex (follow call specification above):
~/.claude/.ccg/prompts/codex/reviewer.mdIntegrate review feedback, execute optimization after user confirmation.
[Mode: Review] - Final evaluation