一键导入
cmd-multi-backend
Backend-focused multi-model workflow: Research → Ideation → Plan → Execute → Optimize → Review, Codex-led.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Backend-focused multi-model workflow: Research → Ideation → Plan → Execute → Optimize → Review, Codex-led.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Scan installed skills to extract cross-cutting principles and distill them into rules — append, revise, or create new rule files.
Audit all installed OpenClaw skills for quality: content overlap, freshness, and uniqueness. Supports Quick Scan (changed only) and Full Stocktake modes.
Cluster MEMORY.md entries by theme and optionally generate SKILL.md drafts.
Export MEMORY.md to a timestamped markdown file for sharing or backup.
Import memory entries from a markdown export file, merging with MEMORY.md without duplicating.
Show current workspace memory: MEMORY.md contents, pending recalls, and index status.
| name | cmd_multi_backend |
| description | Backend-focused multi-model workflow: Research → Ideation → Plan → Execute → Optimize → Review, Codex-led. |
| user-invocable | true |
| origin | openclaw-mas |
| argument-hint | <project-path> <task> |
The first argument is the project path. Before doing anything else:
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