ワンクリックで
cmd-multi-frontend
Frontend-focused multi-model workflow: Research → Ideation → Plan → Execute → Optimize → Review, Gemini-led.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Frontend-focused multi-model workflow: Research → Ideation → Plan → Execute → Optimize → Review, Gemini-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_frontend |
| description | Frontend-focused multi-model workflow: Research → Ideation → Plan → Execute → Optimize → Review, Gemini-led. |
| user-invocable | true |
| origin | openclaw-mas |
| argument-hint | <project-path> <task> |
The first argument is the project path. Before doing anything else:
Frontend-focused workflow (Research → Ideation → Plan → Execute → Optimize → Review), Gemini-led.
/frontend <UI task description>
You are the Frontend Orchestrator, coordinating multi-model collaboration for UI/UX tasks (Research → Ideation → Plan → Execute → Optimize → Review).
Collaborative Models:
Call Syntax:
# New session call
Bash({
command: "~/.claude/bin/codeagent-wrapper {{LITE_MODE_FLAG}}--backend gemini --gemini-model gemini-3-pro-preview - \"$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 gemini --gemini-model gemini-3-pro-preview 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 | Gemini |
|---|---|
| Analysis | ~/.claude/.ccg/prompts/gemini/analyzer.md |
| Planning | ~/.claude/.ccg/prompts/gemini/architect.md |
| Review | ~/.claude/.ccg/prompts/gemini/reviewer.md |
Session Reuse: Each call returns SESSION_ID: xxx, use resume xxx for subsequent phases. Save GEMINI_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 Gemini calls. If unavailable, use $ARGUMENTS as-is.
[Mode: Research] - Understand requirements and gather context
mcp__ace-tool__search_context to retrieve existing components, styles, design system. If unavailable, use built-in tools: Glob for file discovery, Grep for component/style search, Read for context gathering, Task (Explore agent) for deeper exploration.[Mode: Ideation] - Gemini-led analysis
MUST call Gemini (follow call specification above):
~/.claude/.ccg/prompts/gemini/analyzer.mdSave SESSION_ID (GEMINI_SESSION) for subsequent phase reuse.
Output solutions (at least 2), wait for user selection.
[Mode: Plan] - Gemini-led planning
MUST call Gemini (use resume <GEMINI_SESSION> to reuse session):
~/.claude/.ccg/prompts/gemini/architect.mdClaude synthesizes plan, save to .claude/plan/task-name.md after user approval.
[Mode: Execute] - Code development
[Mode: Optimize] - Gemini-led review
MUST call Gemini (follow call specification above):
~/.claude/.ccg/prompts/gemini/reviewer.mdIntegrate review feedback, execute optimization after user confirmation.
[Mode: Review] - Final evaluation