mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-12 02:37:45 +08:00
docs: 更新所有命令描述并重新生成索引文件
- 更新所有69个命令文件的description字段,基于实际功能重新生成详细描述 - 重新生成5个索引文件(all-commands, by-category, by-use-case, essential-commands, command-relationships) - 移动analyze_commands.py到scripts/目录并完善功能 - 移除临时备份文件 命令描述改进示例: - workflow:plan: 增加了工具和代理的详细说明(Gemini, action-planning-agent) - cli:execute: 说明了YOLO权限和多种执行模式 - memory:update-related: 详细说明了批处理策略和工具回退链 索引文件改进: - usage_scenario从2种扩展到10种(更精细分类) - command-relationships覆盖所有69个命令 - 区分built-in(内置调用)和sequential(用户顺序执行)关系 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,142 +1,142 @@
|
||||
[
|
||||
{
|
||||
"name": "enhance-prompt",
|
||||
"description": "Context-aware prompt enhancement using session memory and codebase analysis",
|
||||
"arguments": "\"user input to enhance\"",
|
||||
"category": "general",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"name": "cli:codex-execute",
|
||||
"description": "Multi-stage Codex execution with automatic task decomposition into grouped subtasks using resume mechanism for context continuity",
|
||||
"arguments": "[--verify-git] task description or task-id",
|
||||
"category": "cli",
|
||||
"subcategory": "core",
|
||||
"usage_scenario": "session-management",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "enhance-prompt.md"
|
||||
"file_path": "cli/codex-execute.md"
|
||||
},
|
||||
{
|
||||
"name": "cli:execute",
|
||||
"description": "Autonomous code implementation with YOLO auto-approval using Gemini/Qwen/Codex, supports task ID or description input with automatic file pattern detection",
|
||||
"arguments": "[--agent] [--tool codex|gemini|qwen] [--enhance] description or task-id",
|
||||
"category": "cli",
|
||||
"subcategory": "core",
|
||||
"usage_scenario": "session-management",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "cli/execute.md"
|
||||
},
|
||||
{
|
||||
"name": "memory:load",
|
||||
"description": "Delegate to universal-executor agent to analyze project via Gemini/Qwen CLI and return JSON core content package for task context",
|
||||
"arguments": "[--tool gemini|qwen] \\\"task context description\\\"",
|
||||
"category": "memory",
|
||||
"subcategory": "core",
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "memory/load.md"
|
||||
},
|
||||
{
|
||||
"name": "memory:skill-memory",
|
||||
"description": "4-phase autonomous orchestrator: check docs → /memory:docs planning → /workflow:execute → generate SKILL.md with progressive loading index (skips phases 2-3 if docs exist)",
|
||||
"arguments": "[path] [--tool <gemini|qwen|codex>] [--regenerate] [--mode <full|partial>] [--cli-execute]",
|
||||
"category": "memory",
|
||||
"subcategory": "core",
|
||||
"usage_scenario": "documentation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "memory/skill-memory.md"
|
||||
},
|
||||
{
|
||||
"name": "task:create",
|
||||
"description": "Generate task JSON from natural language description with automatic file pattern detection, scope inference, and dependency analysis",
|
||||
"arguments": "\\\"task title\\\"",
|
||||
"category": "task",
|
||||
"subcategory": "core",
|
||||
"usage_scenario": "testing",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task/create.md"
|
||||
},
|
||||
{
|
||||
"name": "task:execute",
|
||||
"description": "Execute task JSON using appropriate agent (@doc-generator/@implementation-agent/@test-agent) with pre-analysis context loading and status tracking",
|
||||
"arguments": "task-id",
|
||||
"category": "task",
|
||||
"subcategory": "core",
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task/execute.md"
|
||||
},
|
||||
{
|
||||
"name": "version",
|
||||
"description": "Display version information and check for updates",
|
||||
"description": "Display Claude Code version information and check for updates",
|
||||
"arguments": "",
|
||||
"category": "general",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"subcategory": "core",
|
||||
"usage_scenario": "utilities",
|
||||
"difficulty": "Basic",
|
||||
"file_path": "version.md"
|
||||
},
|
||||
{
|
||||
"name": "analyze",
|
||||
"description": "Quick codebase analysis using CLI tools (codex/gemini/qwen)",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] analysis target\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\analyze.md"
|
||||
},
|
||||
{
|
||||
"name": "chat",
|
||||
"description": "Simple CLI interaction command for direct codebase analysis",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] inquiry\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\chat.md"
|
||||
},
|
||||
{
|
||||
"name": "execute",
|
||||
"description": "Auto-execution of implementation tasks with YOLO permissions and intelligent context inference",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] description or task-id\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\execute.md"
|
||||
},
|
||||
{
|
||||
"name": "plan",
|
||||
"description": "Project planning and architecture analysis using CLI tools",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] topic\"",
|
||||
"category": "cli",
|
||||
"subcategory": "mode",
|
||||
"name": "workflow:action-plan-verify",
|
||||
"description": "Perform non-destructive cross-artifact consistency analysis between IMPL_PLAN.md and task JSONs with quality gate validation",
|
||||
"arguments": "[optional: --session session-id]",
|
||||
"category": "workflow",
|
||||
"subcategory": "core",
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\mode\\plan.md"
|
||||
},
|
||||
{
|
||||
"name": "breakdown",
|
||||
"description": "Intelligent task decomposition with context-aware subtask generation",
|
||||
"arguments": "\"task-id\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\breakdown.md"
|
||||
"file_path": "workflow/action-plan-verify.md"
|
||||
},
|
||||
{
|
||||
"name": "create",
|
||||
"description": "Create implementation tasks with automatic context awareness",
|
||||
"arguments": "\"\\\"task title\\\"\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"name": "workflow:execute",
|
||||
"description": "Coordinate agent execution for workflow tasks with automatic session discovery, parallel task processing, and status tracking",
|
||||
"arguments": "[--resume-session=\\\"session-id\\\"]",
|
||||
"category": "workflow",
|
||||
"subcategory": "core",
|
||||
"usage_scenario": "session-management",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow/execute.md"
|
||||
},
|
||||
{
|
||||
"name": "workflow:plan",
|
||||
"description": "5-phase planning workflow with Gemini analysis and action-planning-agent task generation, outputs IMPL_PLAN.md and task JSONs with optional CLI auto-execution",
|
||||
"arguments": "[--agent] [--cli-execute] \\\"text description\\\"|file.md",
|
||||
"category": "workflow",
|
||||
"subcategory": "core",
|
||||
"usage_scenario": "session-management",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow/plan.md"
|
||||
},
|
||||
{
|
||||
"name": "workflow:resume",
|
||||
"description": "Resume paused workflow session with automatic progress analysis, pending task identification, and conflict detection",
|
||||
"arguments": "session-id for workflow session to resume",
|
||||
"category": "workflow",
|
||||
"subcategory": "core",
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\create.md"
|
||||
"file_path": "workflow/resume.md"
|
||||
},
|
||||
{
|
||||
"name": "execute",
|
||||
"description": "Execute tasks with appropriate agents and context-aware orchestration",
|
||||
"arguments": "\"task-id\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"name": "workflow:session:start",
|
||||
"description": "Discover existing sessions or start new workflow session with intelligent session management and conflict detection",
|
||||
"arguments": "[--auto|--new] [optional: task description for new session]",
|
||||
"category": "workflow",
|
||||
"subcategory": "session",
|
||||
"usage_scenario": "session-management",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\execute.md"
|
||||
"file_path": "workflow/session/start.md"
|
||||
},
|
||||
{
|
||||
"name": "execute",
|
||||
"description": "Coordinate agents for existing workflow tasks with automatic discovery",
|
||||
"arguments": "\"[--resume-session=\\\"session-id\\\"]\"",
|
||||
"name": "workflow:status",
|
||||
"description": "Generate on-demand task status views from JSON task data with optional task-id filtering for detailed view",
|
||||
"arguments": "[optional: task-id]",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"subcategory": "core",
|
||||
"usage_scenario": "monitoring",
|
||||
"difficulty": "Basic",
|
||||
"file_path": "workflow/status.md"
|
||||
},
|
||||
{
|
||||
"name": "workflow:test-cycle-execute",
|
||||
"description": "Execute test-fix workflow with dynamic task generation and iterative fix cycles until all tests pass or max iterations reached",
|
||||
"arguments": "[--resume-session=\\\"session-id\\\"] [--max-iterations=N]",
|
||||
"category": "workflow",
|
||||
"subcategory": "core",
|
||||
"usage_scenario": "session-management",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\execute.md"
|
||||
},
|
||||
{
|
||||
"name": "plan",
|
||||
"description": "Orchestrate 5-phase planning workflow with quality gate, executing commands and passing context between phases",
|
||||
"arguments": "\"[--agent] [--cli-execute] \\\"text description\\\"|file.md\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\plan.md"
|
||||
},
|
||||
{
|
||||
"name": "review",
|
||||
"description": "Optional specialized review (security, architecture, docs) for completed implementation",
|
||||
"arguments": "\"[--type=security|architecture|action-items|quality] [optional: session-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\review.md"
|
||||
},
|
||||
{
|
||||
"name": "tdd-plan",
|
||||
"description": "Orchestrate TDD workflow planning with Red-Green-Refactor task chains",
|
||||
"arguments": "\"[--agent] \\\"feature description\\\"|file.md\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\tdd-plan.md"
|
||||
},
|
||||
{
|
||||
"name": "test-gen",
|
||||
"description": "Create independent test-fix workflow session by analyzing completed implementation",
|
||||
"arguments": "\"[--use-codex] [--cli-execute] source-session-id\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\test-gen.md"
|
||||
"file_path": "workflow/test-cycle-execute.md"
|
||||
}
|
||||
]
|
||||
@@ -1,692 +0,0 @@
|
||||
[
|
||||
{
|
||||
"name": "enhance-prompt",
|
||||
"description": "Context-aware prompt enhancement using session memory and codebase analysis",
|
||||
"arguments": "\"user input to enhance\"",
|
||||
"category": "general",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "enhance-prompt.md"
|
||||
},
|
||||
{
|
||||
"name": "version",
|
||||
"description": "Display version information and check for updates",
|
||||
"arguments": "",
|
||||
"category": "general",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "version.md"
|
||||
},
|
||||
{
|
||||
"name": "analyze",
|
||||
"description": "Quick codebase analysis using CLI tools (codex/gemini/qwen)",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] analysis target\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\analyze.md"
|
||||
},
|
||||
{
|
||||
"name": "chat",
|
||||
"description": "Simple CLI interaction command for direct codebase analysis",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] inquiry\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\chat.md"
|
||||
},
|
||||
{
|
||||
"name": "cli-init",
|
||||
"description": "Initialize CLI tool configurations (Gemini and Qwen) based on workspace analysis",
|
||||
"arguments": "\"[--tool gemini|qwen|all] [--output path] [--preview]\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Beginner",
|
||||
"file_path": "cli\\cli-init.md"
|
||||
},
|
||||
{
|
||||
"name": "codex-execute",
|
||||
"description": "Automated task decomposition and execution with Codex using resume mechanism",
|
||||
"arguments": "\"[--verify-git] task description or task-id\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "cli\\codex-execute.md"
|
||||
},
|
||||
{
|
||||
"name": "discuss-plan",
|
||||
"description": "Orchestrates an iterative, multi-model discussion for planning and analysis without implementation.",
|
||||
"arguments": "\"[--topic '...'] [--task-id '...'] [--rounds N]\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "cli\\discuss-plan.md"
|
||||
},
|
||||
{
|
||||
"name": "execute",
|
||||
"description": "Auto-execution of implementation tasks with YOLO permissions and intelligent context inference",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] description or task-id\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\execute.md"
|
||||
},
|
||||
{
|
||||
"name": "bug-diagnosis",
|
||||
"description": "Bug diagnosis and fix suggestions using CLI tools with specialized template",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] bug description\"",
|
||||
"category": "cli",
|
||||
"subcategory": "mode",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\mode\\bug-diagnosis.md"
|
||||
},
|
||||
{
|
||||
"name": "code-analysis",
|
||||
"description": "Deep code analysis and debugging using CLI tools with specialized template",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] analysis target\"",
|
||||
"category": "cli",
|
||||
"subcategory": "mode",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\mode\\code-analysis.md"
|
||||
},
|
||||
{
|
||||
"name": "plan",
|
||||
"description": "Project planning and architecture analysis using CLI tools",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] topic\"",
|
||||
"category": "cli",
|
||||
"subcategory": "mode",
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\mode\\plan.md"
|
||||
},
|
||||
{
|
||||
"name": "docs",
|
||||
"description": "Documentation planning and orchestration - creates structured documentation tasks for execution",
|
||||
"arguments": "\"[path] [--tool <gemini|qwen|codex>] [--mode <full|partial>] [--cli-execute]\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "documentation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "memory\\docs.md"
|
||||
},
|
||||
{
|
||||
"name": "load-skill-memory",
|
||||
"description": "Activate SKILL package (auto-detect or manual) and load documentation based on task intent",
|
||||
"arguments": "\"[skill_name] \\\"task intent description\\\"\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "memory\\load-skill-memory.md"
|
||||
},
|
||||
{
|
||||
"name": "load",
|
||||
"description": "Load project memory by delegating to agent, returns structured core content package for subsequent operations",
|
||||
"arguments": "\"[--tool gemini|qwen] \\\"task context description\\\"\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "memory\\load.md"
|
||||
},
|
||||
{
|
||||
"name": "skill-memory",
|
||||
"description": "Generate SKILL package index from project documentation",
|
||||
"arguments": "\"[path] [--tool <gemini|qwen|codex>] [--regenerate] [--mode <full|partial>] [--cli-execute]\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "memory\\skill-memory.md"
|
||||
},
|
||||
{
|
||||
"name": "tech-research",
|
||||
"description": "Generate tech stack SKILL packages using Exa research via agent delegation",
|
||||
"arguments": "\"[session-id | tech-stack-name] [--regenerate] [--tool <gemini|qwen>]\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "memory\\tech-research.md"
|
||||
},
|
||||
{
|
||||
"name": "update-full",
|
||||
"description": "Complete project-wide CLAUDE.md documentation update with agent-based parallel execution and tool fallback",
|
||||
"arguments": "\"[--tool gemini|qwen|codex] [--path <directory>]\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "documentation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "memory\\update-full.md"
|
||||
},
|
||||
{
|
||||
"name": "update-related",
|
||||
"description": "Context-aware CLAUDE.md documentation updates based on recent changes with agent-based execution and tool fallback",
|
||||
"arguments": "\"[--tool gemini|qwen|codex]\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "documentation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "memory\\update-related.md"
|
||||
},
|
||||
{
|
||||
"name": "workflow-skill-memory",
|
||||
"description": "Generate SKILL package from archived workflow sessions for progressive context loading",
|
||||
"arguments": "\"session <session-id> | all\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "memory\\workflow-skill-memory.md"
|
||||
},
|
||||
{
|
||||
"name": "breakdown",
|
||||
"description": "Intelligent task decomposition with context-aware subtask generation",
|
||||
"arguments": "\"task-id\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\breakdown.md"
|
||||
},
|
||||
{
|
||||
"name": "create",
|
||||
"description": "Create implementation tasks with automatic context awareness",
|
||||
"arguments": "\"\\\"task title\\\"\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\create.md"
|
||||
},
|
||||
{
|
||||
"name": "execute",
|
||||
"description": "Execute tasks with appropriate agents and context-aware orchestration",
|
||||
"arguments": "\"task-id\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\execute.md"
|
||||
},
|
||||
{
|
||||
"name": "replan",
|
||||
"description": "Replan individual tasks with detailed user input and change tracking",
|
||||
"arguments": "\"task-id [\\\"text\\\"|file.md] | --batch [verification-report.md]\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\replan.md"
|
||||
},
|
||||
{
|
||||
"name": "action-plan-verify",
|
||||
"description": "Perform non-destructive cross-artifact consistency and quality analysis of IMPL_PLAN.md and task.json before execution",
|
||||
"arguments": "\"[optional: --session session-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\action-plan-verify.md"
|
||||
},
|
||||
{
|
||||
"name": "execute",
|
||||
"description": "Coordinate agents for existing workflow tasks with automatic discovery",
|
||||
"arguments": "\"[--resume-session=\\\"session-id\\\"]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\execute.md"
|
||||
},
|
||||
{
|
||||
"name": "plan",
|
||||
"description": "Orchestrate 5-phase planning workflow with quality gate, executing commands and passing context between phases",
|
||||
"arguments": "\"[--agent] [--cli-execute] \\\"text description\\\"|file.md\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\plan.md"
|
||||
},
|
||||
{
|
||||
"name": "resume",
|
||||
"description": "Intelligent workflow session resumption with automatic progress analysis",
|
||||
"arguments": "\"session-id for workflow session to resume\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\resume.md"
|
||||
},
|
||||
{
|
||||
"name": "review",
|
||||
"description": "Optional specialized review (security, architecture, docs) for completed implementation",
|
||||
"arguments": "\"[--type=security|architecture|action-items|quality] [optional: session-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\review.md"
|
||||
},
|
||||
{
|
||||
"name": "workflow:status",
|
||||
"description": "Generate on-demand views from JSON task data",
|
||||
"arguments": "\"[optional: task-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Beginner",
|
||||
"file_path": "workflow\\status.md"
|
||||
},
|
||||
{
|
||||
"name": "tdd-plan",
|
||||
"description": "Orchestrate TDD workflow planning with Red-Green-Refactor task chains",
|
||||
"arguments": "\"[--agent] \\\"feature description\\\"|file.md\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\tdd-plan.md"
|
||||
},
|
||||
{
|
||||
"name": "tdd-verify",
|
||||
"description": "Verify TDD workflow compliance and generate quality report",
|
||||
"arguments": "\"[optional: WFS-session-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "testing",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tdd-verify.md"
|
||||
},
|
||||
{
|
||||
"name": "test-cycle-execute",
|
||||
"description": "Execute test-fix workflow with dynamic task generation and iterative fix cycles",
|
||||
"arguments": "\"[--resume-session=\\\"session-id\\\"] [--max-iterations=N]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\test-cycle-execute.md"
|
||||
},
|
||||
{
|
||||
"name": "test-fix-gen",
|
||||
"description": "Create independent test-fix workflow session from existing implementation (session or prompt-based)",
|
||||
"arguments": "\"[--use-codex] [--cli-execute] (source-session-id | \\\"feature description\\\" | /path/to/file.md)\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\test-fix-gen.md"
|
||||
},
|
||||
{
|
||||
"name": "test-gen",
|
||||
"description": "Create independent test-fix workflow session by analyzing completed implementation",
|
||||
"arguments": "\"[--use-codex] [--cli-execute] source-session-id\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\test-gen.md"
|
||||
},
|
||||
{
|
||||
"name": "api-designer",
|
||||
"description": "Generate or update api-designer/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\api-designer.md"
|
||||
},
|
||||
{
|
||||
"name": "artifacts",
|
||||
"description": "Interactive clarification generating confirmed guidance specification",
|
||||
"arguments": "\"topic or challenge description [--count N]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\artifacts.md"
|
||||
},
|
||||
{
|
||||
"name": "auto-parallel",
|
||||
"description": "Parallel brainstorming automation with dynamic role selection and concurrent execution",
|
||||
"arguments": "\"topic or challenge description\" [--count N]",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\auto-parallel.md"
|
||||
},
|
||||
{
|
||||
"name": "data-architect",
|
||||
"description": "Generate or update data-architect/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\data-architect.md"
|
||||
},
|
||||
{
|
||||
"name": "product-manager",
|
||||
"description": "Generate or update product-manager/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\product-manager.md"
|
||||
},
|
||||
{
|
||||
"name": "product-owner",
|
||||
"description": "Generate or update product-owner/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\product-owner.md"
|
||||
},
|
||||
{
|
||||
"name": "scrum-master",
|
||||
"description": "Generate or update scrum-master/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\scrum-master.md"
|
||||
},
|
||||
{
|
||||
"name": "subject-matter-expert",
|
||||
"description": "Generate or update subject-matter-expert/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\subject-matter-expert.md"
|
||||
},
|
||||
{
|
||||
"name": "synthesis",
|
||||
"description": "Clarify and refine role analyses through intelligent Q&A and targeted updates",
|
||||
"arguments": "\"[optional: --session session-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\synthesis.md"
|
||||
},
|
||||
{
|
||||
"name": "system-architect",
|
||||
"description": "Generate or update system-architect/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\system-architect.md"
|
||||
},
|
||||
{
|
||||
"name": "ui-designer",
|
||||
"description": "Generate or update ui-designer/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\ui-designer.md"
|
||||
},
|
||||
{
|
||||
"name": "ux-expert",
|
||||
"description": "Generate or update ux-expert/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\ux-expert.md"
|
||||
},
|
||||
{
|
||||
"name": "complete",
|
||||
"description": "Mark the active workflow session as complete, archive it with lessons learned, and remove active flag",
|
||||
"arguments": "",
|
||||
"category": "workflow",
|
||||
"subcategory": "session",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\session\\complete.md"
|
||||
},
|
||||
{
|
||||
"name": "list",
|
||||
"description": "List all workflow sessions with status",
|
||||
"arguments": "",
|
||||
"category": "workflow",
|
||||
"subcategory": "session",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Beginner",
|
||||
"file_path": "workflow\\session\\list.md"
|
||||
},
|
||||
{
|
||||
"name": "resume",
|
||||
"description": "Resume the most recently paused workflow session",
|
||||
"arguments": "",
|
||||
"category": "workflow",
|
||||
"subcategory": "session",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\session\\resume.md"
|
||||
},
|
||||
{
|
||||
"name": "start",
|
||||
"description": "Discover existing sessions or start a new workflow session with intelligent session management",
|
||||
"arguments": "[--auto|--new] [optional: task description for new session]",
|
||||
"category": "workflow",
|
||||
"subcategory": "session",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\session\\start.md"
|
||||
},
|
||||
{
|
||||
"name": "conflict-resolution",
|
||||
"description": "Detect and resolve conflicts between plan and existing codebase using CLI-powered analysis",
|
||||
"arguments": "\"--session WFS-session-id --context path/to/context-package.json\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\conflict-resolution.md"
|
||||
},
|
||||
{
|
||||
"name": "gather",
|
||||
"description": "Intelligently collect project context using context-search-agent based on task description and package into standardized JSON",
|
||||
"arguments": "\"--session WFS-session-id \\\"task description\\\"\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\context-gather.md"
|
||||
},
|
||||
{
|
||||
"name": "task-generate-agent",
|
||||
"description": "Autonomous task generation using action-planning-agent with discovery and output phases",
|
||||
"arguments": "\"--session WFS-session-id [--cli-execute]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\task-generate-agent.md"
|
||||
},
|
||||
{
|
||||
"name": "task-generate-tdd",
|
||||
"description": "Generate TDD task chains with Red-Green-Refactor dependencies",
|
||||
"arguments": "\"--session WFS-session-id [--agent]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\tools\\task-generate-tdd.md"
|
||||
},
|
||||
{
|
||||
"name": "task-generate",
|
||||
"description": "Generate task JSON files and IMPL_PLAN.md from analysis results with artifacts integration",
|
||||
"arguments": "\"--session WFS-session-id [--cli-execute]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\task-generate.md"
|
||||
},
|
||||
{
|
||||
"name": "tdd-coverage-analysis",
|
||||
"description": "Analyze test coverage and TDD cycle execution",
|
||||
"arguments": "\"--session WFS-session-id\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\tdd-coverage-analysis.md"
|
||||
},
|
||||
{
|
||||
"name": "test-concept-enhanced",
|
||||
"description": "Analyze test requirements and generate test generation strategy using Gemini",
|
||||
"arguments": "\"--session WFS-test-session-id --context path/to/test-context-package.json\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "testing",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\test-concept-enhanced.md"
|
||||
},
|
||||
{
|
||||
"name": "test-context-gather",
|
||||
"description": "Intelligently collect test coverage context using test-context-search-agent and package into standardized test-context JSON",
|
||||
"arguments": "\"--session WFS-test-session-id\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "testing",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\test-context-gather.md"
|
||||
},
|
||||
{
|
||||
"name": "test-task-generate",
|
||||
"description": "Generate test-fix task JSON with iterative test-fix-retest cycle specification",
|
||||
"arguments": "\"[--use-codex] [--cli-execute] --session WFS-test-session-id\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "testing",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\tools\\test-task-generate.md"
|
||||
},
|
||||
{
|
||||
"name": "animation-extract",
|
||||
"description": "Extract animation and transition patterns from URLs, CSS, or interactive questioning",
|
||||
"arguments": "\"[--base-path <path>] [--session <id>] [--urls \"<list>\"] [--mode <auto|interactive>] [--focus \"<types>\"]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\animation-extract.md"
|
||||
},
|
||||
{
|
||||
"name": "batch-generate",
|
||||
"description": "Prompt-driven batch UI generation using target-style-centric parallel execution",
|
||||
"arguments": "[--targets \"<list>\"] [--target-type \"page|component\"] [--device-type \"desktop|mobile|tablet|responsive\"] [--base-path <path>] [--session <id>] [--style-variants <count>] [--layout-variants <count>]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\batch-generate.md"
|
||||
},
|
||||
{
|
||||
"name": "capture",
|
||||
"description": "Batch screenshot capture for UI design workflows using MCP or local fallback",
|
||||
"arguments": "--url-map \"target:url,...\" [--base-path path] [--session id]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\capture.md"
|
||||
},
|
||||
{
|
||||
"name": "explore-auto",
|
||||
"description": "Exploratory UI design workflow with style-centric batch generation",
|
||||
"arguments": "\"[--prompt \"<desc>\"] [--images \"<glob>\"] [--targets \"<list>\"] [--target-type \"page|component\"] [--session <id>] [--style-variants <count>] [--layout-variants <count>] [--batch-plan]\"\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\explore-auto.md"
|
||||
},
|
||||
{
|
||||
"name": "explore-layers",
|
||||
"description": "Interactive deep UI capture with depth-controlled layer exploration",
|
||||
"arguments": "--url <url> --depth <1-5> [--session id] [--base-path path]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\explore-layers.md"
|
||||
},
|
||||
{
|
||||
"name": "generate",
|
||||
"description": "Assemble UI prototypes by combining layout templates with design tokens (pure assembler)",
|
||||
"arguments": "[--base-path <path>] [--session <id>] [--style-variants <count>] [--layout-variants <count>]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\generate.md"
|
||||
},
|
||||
{
|
||||
"name": "imitate-auto",
|
||||
"description": "High-speed multi-page UI replication with batch screenshot capture",
|
||||
"arguments": "--url-map \"<map>\" [--capture-mode <batch|deep>] [--depth <1-5>] [--session <id>] [--prompt \"<desc>\"]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\imitate-auto.md"
|
||||
},
|
||||
{
|
||||
"name": "layout-extract",
|
||||
"description": "Extract structural layout information from reference images, URLs, or text prompts",
|
||||
"arguments": "[--base-path <path>] [--session <id>] [--images \"<glob>\"] [--urls \"<list>\"] [--prompt \"<desc>\"] [--targets \"<list>\"] [--mode <imitate|explore>] [--variants <count>] [--device-type <desktop|mobile|tablet|responsive>]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\layout-extract.md"
|
||||
},
|
||||
{
|
||||
"name": "style-extract",
|
||||
"description": "Extract design style from reference images or text prompts using Claude's analysis",
|
||||
"arguments": "\"[--base-path <path>] [--session <id>] [--images \"<glob>\"] [--urls \"<list>\"] [--prompt \"<desc>\"] [--mode <imitate|explore>] [--variants <count>]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\style-extract.md"
|
||||
},
|
||||
{
|
||||
"name": "update",
|
||||
"description": "Update brainstorming artifacts with finalized design system references",
|
||||
"arguments": "--session <session_id> [--selected-prototypes \"<list>\"]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\update.md"
|
||||
}
|
||||
]
|
||||
@@ -1,722 +0,0 @@
|
||||
{
|
||||
"general": {
|
||||
"_root": [
|
||||
{
|
||||
"name": "enhance-prompt",
|
||||
"description": "Context-aware prompt enhancement using session memory and codebase analysis",
|
||||
"arguments": "\"user input to enhance\"",
|
||||
"category": "general",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "enhance-prompt.md"
|
||||
},
|
||||
{
|
||||
"name": "version",
|
||||
"description": "Display version information and check for updates",
|
||||
"arguments": "",
|
||||
"category": "general",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "version.md"
|
||||
}
|
||||
]
|
||||
},
|
||||
"cli": {
|
||||
"_root": [
|
||||
{
|
||||
"name": "analyze",
|
||||
"description": "Quick codebase analysis using CLI tools (codex/gemini/qwen)",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] analysis target\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\analyze.md"
|
||||
},
|
||||
{
|
||||
"name": "chat",
|
||||
"description": "Simple CLI interaction command for direct codebase analysis",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] inquiry\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\chat.md"
|
||||
},
|
||||
{
|
||||
"name": "cli-init",
|
||||
"description": "Initialize CLI tool configurations (Gemini and Qwen) based on workspace analysis",
|
||||
"arguments": "\"[--tool gemini|qwen|all] [--output path] [--preview]\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Beginner",
|
||||
"file_path": "cli\\cli-init.md"
|
||||
},
|
||||
{
|
||||
"name": "codex-execute",
|
||||
"description": "Automated task decomposition and execution with Codex using resume mechanism",
|
||||
"arguments": "\"[--verify-git] task description or task-id\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "cli\\codex-execute.md"
|
||||
},
|
||||
{
|
||||
"name": "discuss-plan",
|
||||
"description": "Orchestrates an iterative, multi-model discussion for planning and analysis without implementation.",
|
||||
"arguments": "\"[--topic '...'] [--task-id '...'] [--rounds N]\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "cli\\discuss-plan.md"
|
||||
},
|
||||
{
|
||||
"name": "execute",
|
||||
"description": "Auto-execution of implementation tasks with YOLO permissions and intelligent context inference",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] description or task-id\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\execute.md"
|
||||
}
|
||||
],
|
||||
"mode": [
|
||||
{
|
||||
"name": "bug-diagnosis",
|
||||
"description": "Bug diagnosis and fix suggestions using CLI tools with specialized template",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] bug description\"",
|
||||
"category": "cli",
|
||||
"subcategory": "mode",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\mode\\bug-diagnosis.md"
|
||||
},
|
||||
{
|
||||
"name": "code-analysis",
|
||||
"description": "Deep code analysis and debugging using CLI tools with specialized template",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] analysis target\"",
|
||||
"category": "cli",
|
||||
"subcategory": "mode",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\mode\\code-analysis.md"
|
||||
},
|
||||
{
|
||||
"name": "plan",
|
||||
"description": "Project planning and architecture analysis using CLI tools",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] topic\"",
|
||||
"category": "cli",
|
||||
"subcategory": "mode",
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\mode\\plan.md"
|
||||
}
|
||||
]
|
||||
},
|
||||
"memory": {
|
||||
"_root": [
|
||||
{
|
||||
"name": "docs",
|
||||
"description": "Documentation planning and orchestration - creates structured documentation tasks for execution",
|
||||
"arguments": "\"[path] [--tool <gemini|qwen|codex>] [--mode <full|partial>] [--cli-execute]\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "documentation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "memory\\docs.md"
|
||||
},
|
||||
{
|
||||
"name": "load-skill-memory",
|
||||
"description": "Activate SKILL package (auto-detect or manual) and load documentation based on task intent",
|
||||
"arguments": "\"[skill_name] \\\"task intent description\\\"\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "memory\\load-skill-memory.md"
|
||||
},
|
||||
{
|
||||
"name": "load",
|
||||
"description": "Load project memory by delegating to agent, returns structured core content package for subsequent operations",
|
||||
"arguments": "\"[--tool gemini|qwen] \\\"task context description\\\"\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "memory\\load.md"
|
||||
},
|
||||
{
|
||||
"name": "skill-memory",
|
||||
"description": "Generate SKILL package index from project documentation",
|
||||
"arguments": "\"[path] [--tool <gemini|qwen|codex>] [--regenerate] [--mode <full|partial>] [--cli-execute]\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "memory\\skill-memory.md"
|
||||
},
|
||||
{
|
||||
"name": "tech-research",
|
||||
"description": "Generate tech stack SKILL packages using Exa research via agent delegation",
|
||||
"arguments": "\"[session-id | tech-stack-name] [--regenerate] [--tool <gemini|qwen>]\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "memory\\tech-research.md"
|
||||
},
|
||||
{
|
||||
"name": "update-full",
|
||||
"description": "Complete project-wide CLAUDE.md documentation update with agent-based parallel execution and tool fallback",
|
||||
"arguments": "\"[--tool gemini|qwen|codex] [--path <directory>]\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "documentation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "memory\\update-full.md"
|
||||
},
|
||||
{
|
||||
"name": "update-related",
|
||||
"description": "Context-aware CLAUDE.md documentation updates based on recent changes with agent-based execution and tool fallback",
|
||||
"arguments": "\"[--tool gemini|qwen|codex]\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "documentation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "memory\\update-related.md"
|
||||
},
|
||||
{
|
||||
"name": "workflow-skill-memory",
|
||||
"description": "Generate SKILL package from archived workflow sessions for progressive context loading",
|
||||
"arguments": "\"session <session-id> | all\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "memory\\workflow-skill-memory.md"
|
||||
}
|
||||
]
|
||||
},
|
||||
"task": {
|
||||
"_root": [
|
||||
{
|
||||
"name": "breakdown",
|
||||
"description": "Intelligent task decomposition with context-aware subtask generation",
|
||||
"arguments": "\"task-id\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\breakdown.md"
|
||||
},
|
||||
{
|
||||
"name": "create",
|
||||
"description": "Create implementation tasks with automatic context awareness",
|
||||
"arguments": "\"\\\"task title\\\"\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\create.md"
|
||||
},
|
||||
{
|
||||
"name": "execute",
|
||||
"description": "Execute tasks with appropriate agents and context-aware orchestration",
|
||||
"arguments": "\"task-id\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\execute.md"
|
||||
},
|
||||
{
|
||||
"name": "replan",
|
||||
"description": "Replan individual tasks with detailed user input and change tracking",
|
||||
"arguments": "\"task-id [\\\"text\\\"|file.md] | --batch [verification-report.md]\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\replan.md"
|
||||
}
|
||||
]
|
||||
},
|
||||
"workflow": {
|
||||
"_root": [
|
||||
{
|
||||
"name": "action-plan-verify",
|
||||
"description": "Perform non-destructive cross-artifact consistency and quality analysis of IMPL_PLAN.md and task.json before execution",
|
||||
"arguments": "\"[optional: --session session-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\action-plan-verify.md"
|
||||
},
|
||||
{
|
||||
"name": "execute",
|
||||
"description": "Coordinate agents for existing workflow tasks with automatic discovery",
|
||||
"arguments": "\"[--resume-session=\\\"session-id\\\"]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\execute.md"
|
||||
},
|
||||
{
|
||||
"name": "plan",
|
||||
"description": "Orchestrate 5-phase planning workflow with quality gate, executing commands and passing context between phases",
|
||||
"arguments": "\"[--agent] [--cli-execute] \\\"text description\\\"|file.md\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\plan.md"
|
||||
},
|
||||
{
|
||||
"name": "resume",
|
||||
"description": "Intelligent workflow session resumption with automatic progress analysis",
|
||||
"arguments": "\"session-id for workflow session to resume\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\resume.md"
|
||||
},
|
||||
{
|
||||
"name": "review",
|
||||
"description": "Optional specialized review (security, architecture, docs) for completed implementation",
|
||||
"arguments": "\"[--type=security|architecture|action-items|quality] [optional: session-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\review.md"
|
||||
},
|
||||
{
|
||||
"name": "workflow:status",
|
||||
"description": "Generate on-demand views from JSON task data",
|
||||
"arguments": "\"[optional: task-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Beginner",
|
||||
"file_path": "workflow\\status.md"
|
||||
},
|
||||
{
|
||||
"name": "tdd-plan",
|
||||
"description": "Orchestrate TDD workflow planning with Red-Green-Refactor task chains",
|
||||
"arguments": "\"[--agent] \\\"feature description\\\"|file.md\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\tdd-plan.md"
|
||||
},
|
||||
{
|
||||
"name": "tdd-verify",
|
||||
"description": "Verify TDD workflow compliance and generate quality report",
|
||||
"arguments": "\"[optional: WFS-session-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "testing",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tdd-verify.md"
|
||||
},
|
||||
{
|
||||
"name": "test-cycle-execute",
|
||||
"description": "Execute test-fix workflow with dynamic task generation and iterative fix cycles",
|
||||
"arguments": "\"[--resume-session=\\\"session-id\\\"] [--max-iterations=N]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\test-cycle-execute.md"
|
||||
},
|
||||
{
|
||||
"name": "test-fix-gen",
|
||||
"description": "Create independent test-fix workflow session from existing implementation (session or prompt-based)",
|
||||
"arguments": "\"[--use-codex] [--cli-execute] (source-session-id | \\\"feature description\\\" | /path/to/file.md)\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\test-fix-gen.md"
|
||||
},
|
||||
{
|
||||
"name": "test-gen",
|
||||
"description": "Create independent test-fix workflow session by analyzing completed implementation",
|
||||
"arguments": "\"[--use-codex] [--cli-execute] source-session-id\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\test-gen.md"
|
||||
}
|
||||
],
|
||||
"brainstorm": [
|
||||
{
|
||||
"name": "api-designer",
|
||||
"description": "Generate or update api-designer/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\api-designer.md"
|
||||
},
|
||||
{
|
||||
"name": "artifacts",
|
||||
"description": "Interactive clarification generating confirmed guidance specification",
|
||||
"arguments": "\"topic or challenge description [--count N]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\artifacts.md"
|
||||
},
|
||||
{
|
||||
"name": "auto-parallel",
|
||||
"description": "Parallel brainstorming automation with dynamic role selection and concurrent execution",
|
||||
"arguments": "\"topic or challenge description\" [--count N]",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\auto-parallel.md"
|
||||
},
|
||||
{
|
||||
"name": "data-architect",
|
||||
"description": "Generate or update data-architect/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\data-architect.md"
|
||||
},
|
||||
{
|
||||
"name": "product-manager",
|
||||
"description": "Generate or update product-manager/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\product-manager.md"
|
||||
},
|
||||
{
|
||||
"name": "product-owner",
|
||||
"description": "Generate or update product-owner/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\product-owner.md"
|
||||
},
|
||||
{
|
||||
"name": "scrum-master",
|
||||
"description": "Generate or update scrum-master/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\scrum-master.md"
|
||||
},
|
||||
{
|
||||
"name": "subject-matter-expert",
|
||||
"description": "Generate or update subject-matter-expert/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\subject-matter-expert.md"
|
||||
},
|
||||
{
|
||||
"name": "synthesis",
|
||||
"description": "Clarify and refine role analyses through intelligent Q&A and targeted updates",
|
||||
"arguments": "\"[optional: --session session-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\synthesis.md"
|
||||
},
|
||||
{
|
||||
"name": "system-architect",
|
||||
"description": "Generate or update system-architect/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\system-architect.md"
|
||||
},
|
||||
{
|
||||
"name": "ui-designer",
|
||||
"description": "Generate or update ui-designer/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\ui-designer.md"
|
||||
},
|
||||
{
|
||||
"name": "ux-expert",
|
||||
"description": "Generate or update ux-expert/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\ux-expert.md"
|
||||
}
|
||||
],
|
||||
"session": [
|
||||
{
|
||||
"name": "complete",
|
||||
"description": "Mark the active workflow session as complete, archive it with lessons learned, and remove active flag",
|
||||
"arguments": "",
|
||||
"category": "workflow",
|
||||
"subcategory": "session",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\session\\complete.md"
|
||||
},
|
||||
{
|
||||
"name": "list",
|
||||
"description": "List all workflow sessions with status",
|
||||
"arguments": "",
|
||||
"category": "workflow",
|
||||
"subcategory": "session",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Beginner",
|
||||
"file_path": "workflow\\session\\list.md"
|
||||
},
|
||||
{
|
||||
"name": "resume",
|
||||
"description": "Resume the most recently paused workflow session",
|
||||
"arguments": "",
|
||||
"category": "workflow",
|
||||
"subcategory": "session",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\session\\resume.md"
|
||||
},
|
||||
{
|
||||
"name": "start",
|
||||
"description": "Discover existing sessions or start a new workflow session with intelligent session management",
|
||||
"arguments": "[--auto|--new] [optional: task description for new session]",
|
||||
"category": "workflow",
|
||||
"subcategory": "session",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\session\\start.md"
|
||||
}
|
||||
],
|
||||
"tools": [
|
||||
{
|
||||
"name": "conflict-resolution",
|
||||
"description": "Detect and resolve conflicts between plan and existing codebase using CLI-powered analysis",
|
||||
"arguments": "\"--session WFS-session-id --context path/to/context-package.json\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\conflict-resolution.md"
|
||||
},
|
||||
{
|
||||
"name": "gather",
|
||||
"description": "Intelligently collect project context using context-search-agent based on task description and package into standardized JSON",
|
||||
"arguments": "\"--session WFS-session-id \\\"task description\\\"\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\context-gather.md"
|
||||
},
|
||||
{
|
||||
"name": "task-generate-agent",
|
||||
"description": "Autonomous task generation using action-planning-agent with discovery and output phases",
|
||||
"arguments": "\"--session WFS-session-id [--cli-execute]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\task-generate-agent.md"
|
||||
},
|
||||
{
|
||||
"name": "task-generate-tdd",
|
||||
"description": "Generate TDD task chains with Red-Green-Refactor dependencies",
|
||||
"arguments": "\"--session WFS-session-id [--agent]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\tools\\task-generate-tdd.md"
|
||||
},
|
||||
{
|
||||
"name": "task-generate",
|
||||
"description": "Generate task JSON files and IMPL_PLAN.md from analysis results with artifacts integration",
|
||||
"arguments": "\"--session WFS-session-id [--cli-execute]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\task-generate.md"
|
||||
},
|
||||
{
|
||||
"name": "tdd-coverage-analysis",
|
||||
"description": "Analyze test coverage and TDD cycle execution",
|
||||
"arguments": "\"--session WFS-session-id\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\tdd-coverage-analysis.md"
|
||||
},
|
||||
{
|
||||
"name": "test-concept-enhanced",
|
||||
"description": "Analyze test requirements and generate test generation strategy using Gemini",
|
||||
"arguments": "\"--session WFS-test-session-id --context path/to/test-context-package.json\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "testing",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\test-concept-enhanced.md"
|
||||
},
|
||||
{
|
||||
"name": "test-context-gather",
|
||||
"description": "Intelligently collect test coverage context using test-context-search-agent and package into standardized test-context JSON",
|
||||
"arguments": "\"--session WFS-test-session-id\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "testing",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\test-context-gather.md"
|
||||
},
|
||||
{
|
||||
"name": "test-task-generate",
|
||||
"description": "Generate test-fix task JSON with iterative test-fix-retest cycle specification",
|
||||
"arguments": "\"[--use-codex] [--cli-execute] --session WFS-test-session-id\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "testing",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\tools\\test-task-generate.md"
|
||||
}
|
||||
],
|
||||
"ui-design": [
|
||||
{
|
||||
"name": "animation-extract",
|
||||
"description": "Extract animation and transition patterns from URLs, CSS, or interactive questioning",
|
||||
"arguments": "\"[--base-path <path>] [--session <id>] [--urls \"<list>\"] [--mode <auto|interactive>] [--focus \"<types>\"]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\animation-extract.md"
|
||||
},
|
||||
{
|
||||
"name": "batch-generate",
|
||||
"description": "Prompt-driven batch UI generation using target-style-centric parallel execution",
|
||||
"arguments": "[--targets \"<list>\"] [--target-type \"page|component\"] [--device-type \"desktop|mobile|tablet|responsive\"] [--base-path <path>] [--session <id>] [--style-variants <count>] [--layout-variants <count>]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\batch-generate.md"
|
||||
},
|
||||
{
|
||||
"name": "capture",
|
||||
"description": "Batch screenshot capture for UI design workflows using MCP or local fallback",
|
||||
"arguments": "--url-map \"target:url,...\" [--base-path path] [--session id]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\capture.md"
|
||||
},
|
||||
{
|
||||
"name": "explore-auto",
|
||||
"description": "Exploratory UI design workflow with style-centric batch generation",
|
||||
"arguments": "\"[--prompt \"<desc>\"] [--images \"<glob>\"] [--targets \"<list>\"] [--target-type \"page|component\"] [--session <id>] [--style-variants <count>] [--layout-variants <count>] [--batch-plan]\"\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\explore-auto.md"
|
||||
},
|
||||
{
|
||||
"name": "explore-layers",
|
||||
"description": "Interactive deep UI capture with depth-controlled layer exploration",
|
||||
"arguments": "--url <url> --depth <1-5> [--session id] [--base-path path]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\explore-layers.md"
|
||||
},
|
||||
{
|
||||
"name": "generate",
|
||||
"description": "Assemble UI prototypes by combining layout templates with design tokens (pure assembler)",
|
||||
"arguments": "[--base-path <path>] [--session <id>] [--style-variants <count>] [--layout-variants <count>]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\generate.md"
|
||||
},
|
||||
{
|
||||
"name": "imitate-auto",
|
||||
"description": "High-speed multi-page UI replication with batch screenshot capture",
|
||||
"arguments": "--url-map \"<map>\" [--capture-mode <batch|deep>] [--depth <1-5>] [--session <id>] [--prompt \"<desc>\"]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\imitate-auto.md"
|
||||
},
|
||||
{
|
||||
"name": "layout-extract",
|
||||
"description": "Extract structural layout information from reference images, URLs, or text prompts",
|
||||
"arguments": "[--base-path <path>] [--session <id>] [--images \"<glob>\"] [--urls \"<list>\"] [--prompt \"<desc>\"] [--targets \"<list>\"] [--mode <imitate|explore>] [--variants <count>] [--device-type <desktop|mobile|tablet|responsive>]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\layout-extract.md"
|
||||
},
|
||||
{
|
||||
"name": "style-extract",
|
||||
"description": "Extract design style from reference images or text prompts using Claude's analysis",
|
||||
"arguments": "\"[--base-path <path>] [--session <id>] [--images \"<glob>\"] [--urls \"<list>\"] [--prompt \"<desc>\"] [--mode <imitate|explore>] [--variants <count>]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\style-extract.md"
|
||||
},
|
||||
{
|
||||
"name": "update",
|
||||
"description": "Update brainstorming artifacts with finalized design system references",
|
||||
"arguments": "--session <session_id> [--selected-prototypes \"<list>\"]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\update.md"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -1,702 +0,0 @@
|
||||
{
|
||||
"general": [
|
||||
{
|
||||
"name": "enhance-prompt",
|
||||
"description": "Context-aware prompt enhancement using session memory and codebase analysis",
|
||||
"arguments": "\"user input to enhance\"",
|
||||
"category": "general",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "enhance-prompt.md"
|
||||
},
|
||||
{
|
||||
"name": "version",
|
||||
"description": "Display version information and check for updates",
|
||||
"arguments": "",
|
||||
"category": "general",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "version.md"
|
||||
},
|
||||
{
|
||||
"name": "analyze",
|
||||
"description": "Quick codebase analysis using CLI tools (codex/gemini/qwen)",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] analysis target\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\analyze.md"
|
||||
},
|
||||
{
|
||||
"name": "chat",
|
||||
"description": "Simple CLI interaction command for direct codebase analysis",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] inquiry\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\chat.md"
|
||||
},
|
||||
{
|
||||
"name": "cli-init",
|
||||
"description": "Initialize CLI tool configurations (Gemini and Qwen) based on workspace analysis",
|
||||
"arguments": "\"[--tool gemini|qwen|all] [--output path] [--preview]\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Beginner",
|
||||
"file_path": "cli\\cli-init.md"
|
||||
},
|
||||
{
|
||||
"name": "bug-diagnosis",
|
||||
"description": "Bug diagnosis and fix suggestions using CLI tools with specialized template",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] bug description\"",
|
||||
"category": "cli",
|
||||
"subcategory": "mode",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\mode\\bug-diagnosis.md"
|
||||
},
|
||||
{
|
||||
"name": "code-analysis",
|
||||
"description": "Deep code analysis and debugging using CLI tools with specialized template",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] analysis target\"",
|
||||
"category": "cli",
|
||||
"subcategory": "mode",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\mode\\code-analysis.md"
|
||||
},
|
||||
{
|
||||
"name": "load-skill-memory",
|
||||
"description": "Activate SKILL package (auto-detect or manual) and load documentation based on task intent",
|
||||
"arguments": "\"[skill_name] \\\"task intent description\\\"\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "memory\\load-skill-memory.md"
|
||||
},
|
||||
{
|
||||
"name": "load",
|
||||
"description": "Load project memory by delegating to agent, returns structured core content package for subsequent operations",
|
||||
"arguments": "\"[--tool gemini|qwen] \\\"task context description\\\"\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "memory\\load.md"
|
||||
},
|
||||
{
|
||||
"name": "skill-memory",
|
||||
"description": "Generate SKILL package index from project documentation",
|
||||
"arguments": "\"[path] [--tool <gemini|qwen|codex>] [--regenerate] [--mode <full|partial>] [--cli-execute]\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "memory\\skill-memory.md"
|
||||
},
|
||||
{
|
||||
"name": "tech-research",
|
||||
"description": "Generate tech stack SKILL packages using Exa research via agent delegation",
|
||||
"arguments": "\"[session-id | tech-stack-name] [--regenerate] [--tool <gemini|qwen>]\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "memory\\tech-research.md"
|
||||
},
|
||||
{
|
||||
"name": "workflow-skill-memory",
|
||||
"description": "Generate SKILL package from archived workflow sessions for progressive context loading",
|
||||
"arguments": "\"session <session-id> | all\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "memory\\workflow-skill-memory.md"
|
||||
},
|
||||
{
|
||||
"name": "breakdown",
|
||||
"description": "Intelligent task decomposition with context-aware subtask generation",
|
||||
"arguments": "\"task-id\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\breakdown.md"
|
||||
},
|
||||
{
|
||||
"name": "resume",
|
||||
"description": "Intelligent workflow session resumption with automatic progress analysis",
|
||||
"arguments": "\"session-id for workflow session to resume\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\resume.md"
|
||||
},
|
||||
{
|
||||
"name": "workflow:status",
|
||||
"description": "Generate on-demand views from JSON task data",
|
||||
"arguments": "\"[optional: task-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Beginner",
|
||||
"file_path": "workflow\\status.md"
|
||||
},
|
||||
{
|
||||
"name": "api-designer",
|
||||
"description": "Generate or update api-designer/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\api-designer.md"
|
||||
},
|
||||
{
|
||||
"name": "artifacts",
|
||||
"description": "Interactive clarification generating confirmed guidance specification",
|
||||
"arguments": "\"topic or challenge description [--count N]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\artifacts.md"
|
||||
},
|
||||
{
|
||||
"name": "auto-parallel",
|
||||
"description": "Parallel brainstorming automation with dynamic role selection and concurrent execution",
|
||||
"arguments": "\"topic or challenge description\" [--count N]",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\auto-parallel.md"
|
||||
},
|
||||
{
|
||||
"name": "data-architect",
|
||||
"description": "Generate or update data-architect/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\data-architect.md"
|
||||
},
|
||||
{
|
||||
"name": "product-manager",
|
||||
"description": "Generate or update product-manager/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\product-manager.md"
|
||||
},
|
||||
{
|
||||
"name": "product-owner",
|
||||
"description": "Generate or update product-owner/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\product-owner.md"
|
||||
},
|
||||
{
|
||||
"name": "scrum-master",
|
||||
"description": "Generate or update scrum-master/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\scrum-master.md"
|
||||
},
|
||||
{
|
||||
"name": "subject-matter-expert",
|
||||
"description": "Generate or update subject-matter-expert/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\subject-matter-expert.md"
|
||||
},
|
||||
{
|
||||
"name": "synthesis",
|
||||
"description": "Clarify and refine role analyses through intelligent Q&A and targeted updates",
|
||||
"arguments": "\"[optional: --session session-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\synthesis.md"
|
||||
},
|
||||
{
|
||||
"name": "system-architect",
|
||||
"description": "Generate or update system-architect/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\system-architect.md"
|
||||
},
|
||||
{
|
||||
"name": "ui-designer",
|
||||
"description": "Generate or update ui-designer/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\ui-designer.md"
|
||||
},
|
||||
{
|
||||
"name": "ux-expert",
|
||||
"description": "Generate or update ux-expert/analysis.md addressing guidance-specification discussion points",
|
||||
"arguments": "\"optional topic - uses existing framework if available\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "brainstorm",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\brainstorm\\ux-expert.md"
|
||||
},
|
||||
{
|
||||
"name": "complete",
|
||||
"description": "Mark the active workflow session as complete, archive it with lessons learned, and remove active flag",
|
||||
"arguments": "",
|
||||
"category": "workflow",
|
||||
"subcategory": "session",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\session\\complete.md"
|
||||
},
|
||||
{
|
||||
"name": "list",
|
||||
"description": "List all workflow sessions with status",
|
||||
"arguments": "",
|
||||
"category": "workflow",
|
||||
"subcategory": "session",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Beginner",
|
||||
"file_path": "workflow\\session\\list.md"
|
||||
},
|
||||
{
|
||||
"name": "resume",
|
||||
"description": "Resume the most recently paused workflow session",
|
||||
"arguments": "",
|
||||
"category": "workflow",
|
||||
"subcategory": "session",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\session\\resume.md"
|
||||
},
|
||||
{
|
||||
"name": "start",
|
||||
"description": "Discover existing sessions or start a new workflow session with intelligent session management",
|
||||
"arguments": "[--auto|--new] [optional: task description for new session]",
|
||||
"category": "workflow",
|
||||
"subcategory": "session",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\session\\start.md"
|
||||
},
|
||||
{
|
||||
"name": "conflict-resolution",
|
||||
"description": "Detect and resolve conflicts between plan and existing codebase using CLI-powered analysis",
|
||||
"arguments": "\"--session WFS-session-id --context path/to/context-package.json\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\conflict-resolution.md"
|
||||
},
|
||||
{
|
||||
"name": "gather",
|
||||
"description": "Intelligently collect project context using context-search-agent based on task description and package into standardized JSON",
|
||||
"arguments": "\"--session WFS-session-id \\\"task description\\\"\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\context-gather.md"
|
||||
},
|
||||
{
|
||||
"name": "task-generate-agent",
|
||||
"description": "Autonomous task generation using action-planning-agent with discovery and output phases",
|
||||
"arguments": "\"--session WFS-session-id [--cli-execute]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\task-generate-agent.md"
|
||||
},
|
||||
{
|
||||
"name": "task-generate-tdd",
|
||||
"description": "Generate TDD task chains with Red-Green-Refactor dependencies",
|
||||
"arguments": "\"--session WFS-session-id [--agent]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\tools\\task-generate-tdd.md"
|
||||
},
|
||||
{
|
||||
"name": "task-generate",
|
||||
"description": "Generate task JSON files and IMPL_PLAN.md from analysis results with artifacts integration",
|
||||
"arguments": "\"--session WFS-session-id [--cli-execute]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\task-generate.md"
|
||||
},
|
||||
{
|
||||
"name": "tdd-coverage-analysis",
|
||||
"description": "Analyze test coverage and TDD cycle execution",
|
||||
"arguments": "\"--session WFS-session-id\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\tdd-coverage-analysis.md"
|
||||
},
|
||||
{
|
||||
"name": "animation-extract",
|
||||
"description": "Extract animation and transition patterns from URLs, CSS, or interactive questioning",
|
||||
"arguments": "\"[--base-path <path>] [--session <id>] [--urls \"<list>\"] [--mode <auto|interactive>] [--focus \"<types>\"]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\animation-extract.md"
|
||||
},
|
||||
{
|
||||
"name": "batch-generate",
|
||||
"description": "Prompt-driven batch UI generation using target-style-centric parallel execution",
|
||||
"arguments": "[--targets \"<list>\"] [--target-type \"page|component\"] [--device-type \"desktop|mobile|tablet|responsive\"] [--base-path <path>] [--session <id>] [--style-variants <count>] [--layout-variants <count>]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\batch-generate.md"
|
||||
},
|
||||
{
|
||||
"name": "capture",
|
||||
"description": "Batch screenshot capture for UI design workflows using MCP or local fallback",
|
||||
"arguments": "--url-map \"target:url,...\" [--base-path path] [--session id]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\capture.md"
|
||||
},
|
||||
{
|
||||
"name": "explore-auto",
|
||||
"description": "Exploratory UI design workflow with style-centric batch generation",
|
||||
"arguments": "\"[--prompt \"<desc>\"] [--images \"<glob>\"] [--targets \"<list>\"] [--target-type \"page|component\"] [--session <id>] [--style-variants <count>] [--layout-variants <count>] [--batch-plan]\"\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\explore-auto.md"
|
||||
},
|
||||
{
|
||||
"name": "explore-layers",
|
||||
"description": "Interactive deep UI capture with depth-controlled layer exploration",
|
||||
"arguments": "--url <url> --depth <1-5> [--session id] [--base-path path]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\explore-layers.md"
|
||||
},
|
||||
{
|
||||
"name": "generate",
|
||||
"description": "Assemble UI prototypes by combining layout templates with design tokens (pure assembler)",
|
||||
"arguments": "[--base-path <path>] [--session <id>] [--style-variants <count>] [--layout-variants <count>]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\generate.md"
|
||||
},
|
||||
{
|
||||
"name": "imitate-auto",
|
||||
"description": "High-speed multi-page UI replication with batch screenshot capture",
|
||||
"arguments": "--url-map \"<map>\" [--capture-mode <batch|deep>] [--depth <1-5>] [--session <id>] [--prompt \"<desc>\"]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\imitate-auto.md"
|
||||
},
|
||||
{
|
||||
"name": "layout-extract",
|
||||
"description": "Extract structural layout information from reference images, URLs, or text prompts",
|
||||
"arguments": "[--base-path <path>] [--session <id>] [--images \"<glob>\"] [--urls \"<list>\"] [--prompt \"<desc>\"] [--targets \"<list>\"] [--mode <imitate|explore>] [--variants <count>] [--device-type <desktop|mobile|tablet|responsive>]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\layout-extract.md"
|
||||
},
|
||||
{
|
||||
"name": "style-extract",
|
||||
"description": "Extract design style from reference images or text prompts using Claude's analysis",
|
||||
"arguments": "\"[--base-path <path>] [--session <id>] [--images \"<glob>\"] [--urls \"<list>\"] [--prompt \"<desc>\"] [--mode <imitate|explore>] [--variants <count>]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\style-extract.md"
|
||||
},
|
||||
{
|
||||
"name": "update",
|
||||
"description": "Update brainstorming artifacts with finalized design system references",
|
||||
"arguments": "--session <session_id> [--selected-prototypes \"<list>\"]",
|
||||
"category": "workflow",
|
||||
"subcategory": "ui-design",
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\ui-design\\update.md"
|
||||
}
|
||||
],
|
||||
"implementation": [
|
||||
{
|
||||
"name": "codex-execute",
|
||||
"description": "Automated task decomposition and execution with Codex using resume mechanism",
|
||||
"arguments": "\"[--verify-git] task description or task-id\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "cli\\codex-execute.md"
|
||||
},
|
||||
{
|
||||
"name": "execute",
|
||||
"description": "Auto-execution of implementation tasks with YOLO permissions and intelligent context inference",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] description or task-id\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\execute.md"
|
||||
},
|
||||
{
|
||||
"name": "create",
|
||||
"description": "Create implementation tasks with automatic context awareness",
|
||||
"arguments": "\"\\\"task title\\\"\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\create.md"
|
||||
},
|
||||
{
|
||||
"name": "execute",
|
||||
"description": "Execute tasks with appropriate agents and context-aware orchestration",
|
||||
"arguments": "\"task-id\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\execute.md"
|
||||
},
|
||||
{
|
||||
"name": "execute",
|
||||
"description": "Coordinate agents for existing workflow tasks with automatic discovery",
|
||||
"arguments": "\"[--resume-session=\\\"session-id\\\"]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\execute.md"
|
||||
},
|
||||
{
|
||||
"name": "review",
|
||||
"description": "Optional specialized review (security, architecture, docs) for completed implementation",
|
||||
"arguments": "\"[--type=security|architecture|action-items|quality] [optional: session-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\review.md"
|
||||
},
|
||||
{
|
||||
"name": "test-cycle-execute",
|
||||
"description": "Execute test-fix workflow with dynamic task generation and iterative fix cycles",
|
||||
"arguments": "\"[--resume-session=\\\"session-id\\\"] [--max-iterations=N]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\test-cycle-execute.md"
|
||||
},
|
||||
{
|
||||
"name": "test-fix-gen",
|
||||
"description": "Create independent test-fix workflow session from existing implementation (session or prompt-based)",
|
||||
"arguments": "\"[--use-codex] [--cli-execute] (source-session-id | \\\"feature description\\\" | /path/to/file.md)\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\test-fix-gen.md"
|
||||
},
|
||||
{
|
||||
"name": "test-gen",
|
||||
"description": "Create independent test-fix workflow session by analyzing completed implementation",
|
||||
"arguments": "\"[--use-codex] [--cli-execute] source-session-id\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\test-gen.md"
|
||||
}
|
||||
],
|
||||
"planning": [
|
||||
{
|
||||
"name": "discuss-plan",
|
||||
"description": "Orchestrates an iterative, multi-model discussion for planning and analysis without implementation.",
|
||||
"arguments": "\"[--topic '...'] [--task-id '...'] [--rounds N]\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "cli\\discuss-plan.md"
|
||||
},
|
||||
{
|
||||
"name": "plan",
|
||||
"description": "Project planning and architecture analysis using CLI tools",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] topic\"",
|
||||
"category": "cli",
|
||||
"subcategory": "mode",
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\mode\\plan.md"
|
||||
},
|
||||
{
|
||||
"name": "replan",
|
||||
"description": "Replan individual tasks with detailed user input and change tracking",
|
||||
"arguments": "\"task-id [\\\"text\\\"|file.md] | --batch [verification-report.md]\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\replan.md"
|
||||
},
|
||||
{
|
||||
"name": "action-plan-verify",
|
||||
"description": "Perform non-destructive cross-artifact consistency and quality analysis of IMPL_PLAN.md and task.json before execution",
|
||||
"arguments": "\"[optional: --session session-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\action-plan-verify.md"
|
||||
},
|
||||
{
|
||||
"name": "plan",
|
||||
"description": "Orchestrate 5-phase planning workflow with quality gate, executing commands and passing context between phases",
|
||||
"arguments": "\"[--agent] [--cli-execute] \\\"text description\\\"|file.md\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\plan.md"
|
||||
},
|
||||
{
|
||||
"name": "tdd-plan",
|
||||
"description": "Orchestrate TDD workflow planning with Red-Green-Refactor task chains",
|
||||
"arguments": "\"[--agent] \\\"feature description\\\"|file.md\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\tdd-plan.md"
|
||||
}
|
||||
],
|
||||
"documentation": [
|
||||
{
|
||||
"name": "docs",
|
||||
"description": "Documentation planning and orchestration - creates structured documentation tasks for execution",
|
||||
"arguments": "\"[path] [--tool <gemini|qwen|codex>] [--mode <full|partial>] [--cli-execute]\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "documentation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "memory\\docs.md"
|
||||
},
|
||||
{
|
||||
"name": "update-full",
|
||||
"description": "Complete project-wide CLAUDE.md documentation update with agent-based parallel execution and tool fallback",
|
||||
"arguments": "\"[--tool gemini|qwen|codex] [--path <directory>]\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "documentation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "memory\\update-full.md"
|
||||
},
|
||||
{
|
||||
"name": "update-related",
|
||||
"description": "Context-aware CLAUDE.md documentation updates based on recent changes with agent-based execution and tool fallback",
|
||||
"arguments": "\"[--tool gemini|qwen|codex]\"",
|
||||
"category": "memory",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "documentation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "memory\\update-related.md"
|
||||
}
|
||||
],
|
||||
"testing": [
|
||||
{
|
||||
"name": "tdd-verify",
|
||||
"description": "Verify TDD workflow compliance and generate quality report",
|
||||
"arguments": "\"[optional: WFS-session-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "testing",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tdd-verify.md"
|
||||
},
|
||||
{
|
||||
"name": "test-concept-enhanced",
|
||||
"description": "Analyze test requirements and generate test generation strategy using Gemini",
|
||||
"arguments": "\"--session WFS-test-session-id --context path/to/test-context-package.json\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "testing",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\test-concept-enhanced.md"
|
||||
},
|
||||
{
|
||||
"name": "test-context-gather",
|
||||
"description": "Intelligently collect test coverage context using test-context-search-agent and package into standardized test-context JSON",
|
||||
"arguments": "\"--session WFS-test-session-id\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "testing",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\tools\\test-context-gather.md"
|
||||
},
|
||||
{
|
||||
"name": "test-task-generate",
|
||||
"description": "Generate test-fix task JSON with iterative test-fix-retest cycle specification",
|
||||
"arguments": "\"[--use-codex] [--cli-execute] --session WFS-test-session-id\"",
|
||||
"category": "workflow",
|
||||
"subcategory": "tools",
|
||||
"usage_scenario": "testing",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\tools\\test-task-generate.md"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,457 +0,0 @@
|
||||
{
|
||||
"analyze": [
|
||||
"enhance-prompt"
|
||||
],
|
||||
"chat": [
|
||||
"enhance-prompt"
|
||||
],
|
||||
"cli-init": [
|
||||
"analyze"
|
||||
],
|
||||
"codex-execute": [
|
||||
"chat"
|
||||
],
|
||||
"discuss-plan": [
|
||||
"version",
|
||||
"chat",
|
||||
"codex-execute",
|
||||
"analyze"
|
||||
],
|
||||
"execute": [
|
||||
"create",
|
||||
"plan",
|
||||
"load",
|
||||
"breakdown",
|
||||
"docs"
|
||||
],
|
||||
"bug-diagnosis": [
|
||||
"enhance-prompt",
|
||||
"chat"
|
||||
],
|
||||
"code-analysis": [
|
||||
"enhance-prompt",
|
||||
"chat"
|
||||
],
|
||||
"plan": [
|
||||
"action-plan-verify",
|
||||
"create",
|
||||
"execute",
|
||||
"analyze",
|
||||
"breakdown"
|
||||
],
|
||||
"docs": [
|
||||
"plan",
|
||||
"execute",
|
||||
"analyze"
|
||||
],
|
||||
"load-skill-memory": [
|
||||
"docs",
|
||||
"analyze"
|
||||
],
|
||||
"load": [
|
||||
"execute",
|
||||
"docs",
|
||||
"analyze"
|
||||
],
|
||||
"skill-memory": [
|
||||
"version",
|
||||
"execute",
|
||||
"plan",
|
||||
"load",
|
||||
"docs"
|
||||
],
|
||||
"tech-research": [
|
||||
"version",
|
||||
"load",
|
||||
"execute"
|
||||
],
|
||||
"update-full": [
|
||||
"plan",
|
||||
"docs",
|
||||
"execute"
|
||||
],
|
||||
"update-related": [
|
||||
"plan",
|
||||
"docs",
|
||||
"execute"
|
||||
],
|
||||
"workflow-skill-memory": [
|
||||
"version",
|
||||
"skill-memory",
|
||||
"load",
|
||||
"analyze"
|
||||
],
|
||||
"breakdown": [
|
||||
"plan"
|
||||
],
|
||||
"create": [
|
||||
"plan",
|
||||
"docs"
|
||||
],
|
||||
"replan": [
|
||||
"version",
|
||||
"plan",
|
||||
"create"
|
||||
],
|
||||
"action-plan-verify": [
|
||||
"plan",
|
||||
"execute"
|
||||
],
|
||||
"resume": [
|
||||
"execute"
|
||||
],
|
||||
"review": [
|
||||
"plan",
|
||||
"create",
|
||||
"docs",
|
||||
"execute"
|
||||
],
|
||||
"tdd-plan": [
|
||||
"action-plan-verify",
|
||||
"workflow:status",
|
||||
"execute",
|
||||
"analyze",
|
||||
"plan",
|
||||
"breakdown"
|
||||
],
|
||||
"tdd-verify": [
|
||||
"create",
|
||||
"workflow:status",
|
||||
"tdd-plan",
|
||||
"execute",
|
||||
"plan",
|
||||
"review"
|
||||
],
|
||||
"test-cycle-execute": [
|
||||
"resume",
|
||||
"workflow:status",
|
||||
"execute",
|
||||
"analyze",
|
||||
"plan",
|
||||
"load"
|
||||
],
|
||||
"test-fix-gen": [
|
||||
"create",
|
||||
"resume",
|
||||
"workflow:status",
|
||||
"test-cycle-execute",
|
||||
"execute",
|
||||
"analyze",
|
||||
"plan",
|
||||
"docs"
|
||||
],
|
||||
"test-gen": [
|
||||
"create",
|
||||
"workflow:status",
|
||||
"test-cycle-execute",
|
||||
"execute",
|
||||
"analyze",
|
||||
"plan"
|
||||
],
|
||||
"api-designer": [
|
||||
"version",
|
||||
"plan",
|
||||
"create",
|
||||
"load"
|
||||
],
|
||||
"artifacts": [
|
||||
"execute",
|
||||
"analyze",
|
||||
"plan",
|
||||
"load",
|
||||
"docs"
|
||||
],
|
||||
"auto-parallel": [
|
||||
"create",
|
||||
"execute",
|
||||
"analyze",
|
||||
"plan",
|
||||
"artifacts",
|
||||
"load"
|
||||
],
|
||||
"data-architect": [
|
||||
"plan",
|
||||
"load"
|
||||
],
|
||||
"product-manager": [
|
||||
"plan",
|
||||
"load"
|
||||
],
|
||||
"product-owner": [
|
||||
"plan",
|
||||
"load"
|
||||
],
|
||||
"scrum-master": [
|
||||
"plan",
|
||||
"breakdown",
|
||||
"load"
|
||||
],
|
||||
"subject-matter-expert": [
|
||||
"plan",
|
||||
"load"
|
||||
],
|
||||
"synthesis": [
|
||||
"analyze",
|
||||
"plan",
|
||||
"product-manager",
|
||||
"load",
|
||||
"api-designer"
|
||||
],
|
||||
"system-architect": [
|
||||
"version",
|
||||
"plan",
|
||||
"create",
|
||||
"load"
|
||||
],
|
||||
"ui-designer": [
|
||||
"synthesis",
|
||||
"plan",
|
||||
"load"
|
||||
],
|
||||
"ux-expert": [
|
||||
"synthesis",
|
||||
"plan",
|
||||
"load"
|
||||
],
|
||||
"complete": [
|
||||
"analyze"
|
||||
],
|
||||
"list": [
|
||||
"complete",
|
||||
"create"
|
||||
],
|
||||
"start": [
|
||||
"plan",
|
||||
"create"
|
||||
],
|
||||
"conflict-resolution": [
|
||||
"chat",
|
||||
"list",
|
||||
"execute",
|
||||
"artifacts",
|
||||
"plan",
|
||||
"system-architect"
|
||||
],
|
||||
"gather": [
|
||||
"complete",
|
||||
"create",
|
||||
"synthesis",
|
||||
"execute",
|
||||
"artifacts",
|
||||
"plan",
|
||||
"load",
|
||||
"docs"
|
||||
],
|
||||
"task-generate-agent": [
|
||||
"list",
|
||||
"create",
|
||||
"synthesis",
|
||||
"gather",
|
||||
"execute",
|
||||
"artifacts",
|
||||
"plan",
|
||||
"load",
|
||||
"ui-designer",
|
||||
"system-architect",
|
||||
"data-architect"
|
||||
],
|
||||
"task-generate-tdd": [
|
||||
"complete",
|
||||
"create",
|
||||
"action-plan-verify",
|
||||
"system-architect",
|
||||
"list",
|
||||
"test-gen",
|
||||
"gather",
|
||||
"start",
|
||||
"tdd-plan",
|
||||
"execute",
|
||||
"analyze",
|
||||
"plan",
|
||||
"artifacts",
|
||||
"load",
|
||||
"product-owner",
|
||||
"breakdown",
|
||||
"tdd-verify"
|
||||
],
|
||||
"task-generate": [
|
||||
"resume",
|
||||
"test-gen",
|
||||
"synthesis",
|
||||
"analyze",
|
||||
"artifacts",
|
||||
"plan",
|
||||
"conflict-resolution",
|
||||
"system-architect",
|
||||
"ux-expert",
|
||||
"create",
|
||||
"action-plan-verify",
|
||||
"docs",
|
||||
"data-architect",
|
||||
"list",
|
||||
"gather",
|
||||
"subject-matter-expert",
|
||||
"execute",
|
||||
"load",
|
||||
"api-designer",
|
||||
"complete",
|
||||
"workflow:status",
|
||||
"start",
|
||||
"product-manager",
|
||||
"ui-designer"
|
||||
],
|
||||
"tdd-coverage-analysis": [
|
||||
"task-generate",
|
||||
"complete",
|
||||
"create",
|
||||
"task-generate-tdd",
|
||||
"execute",
|
||||
"analyze",
|
||||
"tdd-verify"
|
||||
],
|
||||
"test-concept-enhanced": [
|
||||
"version",
|
||||
"complete",
|
||||
"create",
|
||||
"list",
|
||||
"task-generate",
|
||||
"test-gen",
|
||||
"gather",
|
||||
"analyze",
|
||||
"plan",
|
||||
"review",
|
||||
"docs"
|
||||
],
|
||||
"test-context-gather": [
|
||||
"version",
|
||||
"complete",
|
||||
"create",
|
||||
"task-generate",
|
||||
"test-concept-enhanced",
|
||||
"test-gen",
|
||||
"gather",
|
||||
"execute",
|
||||
"plan",
|
||||
"load"
|
||||
],
|
||||
"test-task-generate": [
|
||||
"task-generate",
|
||||
"complete",
|
||||
"create",
|
||||
"resume",
|
||||
"list",
|
||||
"test-concept-enhanced",
|
||||
"test-gen",
|
||||
"gather",
|
||||
"execute",
|
||||
"analyze",
|
||||
"plan",
|
||||
"load"
|
||||
],
|
||||
"animation-extract": [
|
||||
"complete",
|
||||
"create",
|
||||
"list",
|
||||
"synthesis",
|
||||
"execute",
|
||||
"plan",
|
||||
"load"
|
||||
],
|
||||
"batch-generate": [
|
||||
"list",
|
||||
"complete",
|
||||
"create",
|
||||
"review"
|
||||
],
|
||||
"capture": [
|
||||
"list",
|
||||
"complete",
|
||||
"create",
|
||||
"start"
|
||||
],
|
||||
"explore-auto": [
|
||||
"complete",
|
||||
"create",
|
||||
"list",
|
||||
"animation-extract",
|
||||
"synthesis",
|
||||
"execute",
|
||||
"analyze",
|
||||
"plan",
|
||||
"artifacts",
|
||||
"review"
|
||||
],
|
||||
"explore-layers": [
|
||||
"complete",
|
||||
"list",
|
||||
"start",
|
||||
"execute",
|
||||
"review",
|
||||
"load",
|
||||
"capture"
|
||||
],
|
||||
"generate": [
|
||||
"list",
|
||||
"complete",
|
||||
"animation-extract",
|
||||
"explore-auto",
|
||||
"review"
|
||||
],
|
||||
"imitate-auto": [
|
||||
"complete",
|
||||
"list",
|
||||
"animation-extract",
|
||||
"test-gen",
|
||||
"start",
|
||||
"generate",
|
||||
"explore-layers",
|
||||
"execute",
|
||||
"artifacts",
|
||||
"plan",
|
||||
"review",
|
||||
"capture"
|
||||
],
|
||||
"layout-extract": [
|
||||
"version",
|
||||
"complete",
|
||||
"create",
|
||||
"list",
|
||||
"synthesis",
|
||||
"generate",
|
||||
"execute",
|
||||
"review",
|
||||
"load",
|
||||
"capture"
|
||||
],
|
||||
"style-extract": [
|
||||
"complete",
|
||||
"create",
|
||||
"list",
|
||||
"generate",
|
||||
"execute",
|
||||
"plan",
|
||||
"review",
|
||||
"load",
|
||||
"capture",
|
||||
"layout-extract"
|
||||
],
|
||||
"update": [
|
||||
"version",
|
||||
"complete",
|
||||
"create",
|
||||
"list",
|
||||
"task-generate",
|
||||
"animation-extract",
|
||||
"synthesis",
|
||||
"generate",
|
||||
"execute",
|
||||
"artifacts",
|
||||
"plan",
|
||||
"style-extract",
|
||||
"product-manager",
|
||||
"ui-designer",
|
||||
"system-architect",
|
||||
"ux-expert",
|
||||
"layout-extract"
|
||||
]
|
||||
}
|
||||
@@ -1,142 +0,0 @@
|
||||
[
|
||||
{
|
||||
"name": "enhance-prompt",
|
||||
"description": "Context-aware prompt enhancement using session memory and codebase analysis",
|
||||
"arguments": "\"user input to enhance\"",
|
||||
"category": "general",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "enhance-prompt.md"
|
||||
},
|
||||
{
|
||||
"name": "version",
|
||||
"description": "Display version information and check for updates",
|
||||
"arguments": "",
|
||||
"category": "general",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "version.md"
|
||||
},
|
||||
{
|
||||
"name": "analyze",
|
||||
"description": "Quick codebase analysis using CLI tools (codex/gemini/qwen)",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] analysis target\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\analyze.md"
|
||||
},
|
||||
{
|
||||
"name": "chat",
|
||||
"description": "Simple CLI interaction command for direct codebase analysis",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] inquiry\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\chat.md"
|
||||
},
|
||||
{
|
||||
"name": "execute",
|
||||
"description": "Auto-execution of implementation tasks with YOLO permissions and intelligent context inference",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] description or task-id\"",
|
||||
"category": "cli",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\execute.md"
|
||||
},
|
||||
{
|
||||
"name": "plan",
|
||||
"description": "Project planning and architecture analysis using CLI tools",
|
||||
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] topic\"",
|
||||
"category": "cli",
|
||||
"subcategory": "mode",
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "cli\\mode\\plan.md"
|
||||
},
|
||||
{
|
||||
"name": "breakdown",
|
||||
"description": "Intelligent task decomposition with context-aware subtask generation",
|
||||
"arguments": "\"task-id\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "general",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\breakdown.md"
|
||||
},
|
||||
{
|
||||
"name": "create",
|
||||
"description": "Create implementation tasks with automatic context awareness",
|
||||
"arguments": "\"\\\"task title\\\"\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\create.md"
|
||||
},
|
||||
{
|
||||
"name": "execute",
|
||||
"description": "Execute tasks with appropriate agents and context-aware orchestration",
|
||||
"arguments": "\"task-id\"",
|
||||
"category": "task",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "task\\execute.md"
|
||||
},
|
||||
{
|
||||
"name": "execute",
|
||||
"description": "Coordinate agents for existing workflow tasks with automatic discovery",
|
||||
"arguments": "\"[--resume-session=\\\"session-id\\\"]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\execute.md"
|
||||
},
|
||||
{
|
||||
"name": "plan",
|
||||
"description": "Orchestrate 5-phase planning workflow with quality gate, executing commands and passing context between phases",
|
||||
"arguments": "\"[--agent] [--cli-execute] \\\"text description\\\"|file.md\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\plan.md"
|
||||
},
|
||||
{
|
||||
"name": "review",
|
||||
"description": "Optional specialized review (security, architecture, docs) for completed implementation",
|
||||
"arguments": "\"[--type=security|architecture|action-items|quality] [optional: session-id]\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Intermediate",
|
||||
"file_path": "workflow\\review.md"
|
||||
},
|
||||
{
|
||||
"name": "tdd-plan",
|
||||
"description": "Orchestrate TDD workflow planning with Red-Green-Refactor task chains",
|
||||
"arguments": "\"[--agent] \\\"feature description\\\"|file.md\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "planning",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\tdd-plan.md"
|
||||
},
|
||||
{
|
||||
"name": "test-gen",
|
||||
"description": "Create independent test-fix workflow session by analyzing completed implementation",
|
||||
"arguments": "\"[--use-codex] [--cli-execute] source-session-id\"",
|
||||
"category": "workflow",
|
||||
"subcategory": null,
|
||||
"usage_scenario": "implementation",
|
||||
"difficulty": "Advanced",
|
||||
"file_path": "workflow\\test-gen.md"
|
||||
}
|
||||
]
|
||||
@@ -107,13 +107,17 @@ def analyze_command_file(file_path: Path) -> Dict[str, Any]:
|
||||
difficulty = determine_difficulty(name, description, category)
|
||||
|
||||
# Build relative path
|
||||
rel_path = str(file_path.relative_to(COMMANDS_DIR))
|
||||
rel_path = str(file_path.relative_to(COMMANDS_DIR)).replace('\\', '/')
|
||||
|
||||
# Build full command name
|
||||
if category == "general":
|
||||
# Build full command name from frontmatter name or construct it
|
||||
# If name already contains colons (e.g., "workflow:status"), use it directly
|
||||
if ':' in name:
|
||||
command_name = f"/{name}"
|
||||
elif category == "general":
|
||||
command_name = f"/{name}"
|
||||
else:
|
||||
if subcategory and subcategory not in name:
|
||||
# For subcategorized commands, build the full path
|
||||
if subcategory:
|
||||
command_name = f"/{category}:{subcategory}:{name}"
|
||||
else:
|
||||
command_name = f"/{category}:{name}"
|
||||
@@ -134,53 +138,59 @@ def build_command_relationships() -> Dict[str, Any]:
|
||||
"""Build command relationship mappings."""
|
||||
relationships = {
|
||||
# Workflow planning commands
|
||||
"plan": {
|
||||
"workflow:plan": {
|
||||
"calls_internally": [
|
||||
"session:start",
|
||||
"tools:context-gather",
|
||||
"tools:conflict-resolution",
|
||||
"tools:task-generate",
|
||||
"tools:task-generate-agent"
|
||||
"workflow:session:start",
|
||||
"workflow:tools:context-gather",
|
||||
"workflow:tools:conflict-resolution",
|
||||
"workflow:tools:task-generate",
|
||||
"workflow:tools:task-generate-agent"
|
||||
],
|
||||
"next_steps": ["action-plan-verify", "status", "execute"],
|
||||
"alternatives": ["tdd-plan"]
|
||||
"next_steps": ["workflow:action-plan-verify", "workflow:status", "workflow:execute"],
|
||||
"alternatives": ["workflow:tdd-plan"],
|
||||
"prerequisites": []
|
||||
},
|
||||
"tdd-plan": {
|
||||
"workflow:tdd-plan": {
|
||||
"calls_internally": [
|
||||
"session:start",
|
||||
"tools:context-gather",
|
||||
"tools:task-generate-tdd"
|
||||
"workflow:session:start",
|
||||
"workflow:tools:context-gather",
|
||||
"workflow:tools:task-generate-tdd"
|
||||
],
|
||||
"next_steps": ["tdd-verify", "status", "execute"],
|
||||
"alternatives": ["plan"]
|
||||
"next_steps": ["workflow:tdd-verify", "workflow:status", "workflow:execute"],
|
||||
"alternatives": ["workflow:plan"],
|
||||
"prerequisites": []
|
||||
},
|
||||
|
||||
# Execution commands
|
||||
"execute": {
|
||||
"prerequisites": ["plan", "tdd-plan"],
|
||||
"related": ["status", "resume"],
|
||||
"next_steps": ["review", "tdd-verify"]
|
||||
"workflow:execute": {
|
||||
"prerequisites": ["workflow:plan", "workflow:tdd-plan"],
|
||||
"related": ["workflow:status", "workflow:resume"],
|
||||
"next_steps": ["workflow:review", "workflow:tdd-verify"]
|
||||
},
|
||||
|
||||
# Verification commands
|
||||
"action-plan-verify": {
|
||||
"prerequisites": ["plan"],
|
||||
"next_steps": ["execute"],
|
||||
"related": ["status"]
|
||||
"workflow:action-plan-verify": {
|
||||
"prerequisites": ["workflow:plan"],
|
||||
"next_steps": ["workflow:execute"],
|
||||
"related": ["workflow:status"]
|
||||
},
|
||||
"tdd-verify": {
|
||||
"prerequisites": ["execute"],
|
||||
"related": ["tools:tdd-coverage-analysis"]
|
||||
"workflow:tdd-verify": {
|
||||
"prerequisites": ["workflow:execute"],
|
||||
"related": ["workflow:tools:tdd-coverage-analysis"]
|
||||
},
|
||||
|
||||
# Session management
|
||||
"session:start": {
|
||||
"next_steps": ["plan", "execute"],
|
||||
"related": ["session:list", "session:resume"]
|
||||
"workflow:session:start": {
|
||||
"next_steps": ["workflow:plan", "workflow:execute"],
|
||||
"related": ["workflow:session:list", "workflow:session:resume"]
|
||||
},
|
||||
"session:resume": {
|
||||
"alternatives": ["resume"],
|
||||
"related": ["session:list", "status"]
|
||||
"workflow:session:resume": {
|
||||
"alternatives": ["workflow:resume"],
|
||||
"related": ["workflow:session:list", "workflow:status"]
|
||||
},
|
||||
"workflow:resume": {
|
||||
"alternatives": ["workflow:session:resume"],
|
||||
"related": ["workflow:status"]
|
||||
},
|
||||
|
||||
# Task management
|
||||
@@ -193,17 +203,29 @@ def build_command_relationships() -> Dict[str, Any]:
|
||||
"related": ["task:create"]
|
||||
},
|
||||
"task:replan": {
|
||||
"prerequisites": ["plan"],
|
||||
"related": ["action-plan-verify"]
|
||||
"prerequisites": ["workflow:plan"],
|
||||
"related": ["workflow:action-plan-verify"]
|
||||
},
|
||||
"task:execute": {
|
||||
"prerequisites": ["task:create", "task:breakdown", "workflow:plan"],
|
||||
"related": ["workflow:status"]
|
||||
},
|
||||
|
||||
# Memory/Documentation
|
||||
"memory:docs": {
|
||||
"calls_internally": [
|
||||
"session:start",
|
||||
"tools:context-gather"
|
||||
"workflow:session:start",
|
||||
"workflow:tools:context-gather"
|
||||
],
|
||||
"next_steps": ["execute"]
|
||||
"next_steps": ["workflow:execute"]
|
||||
},
|
||||
"memory:skill-memory": {
|
||||
"next_steps": ["workflow:plan", "cli:analyze"],
|
||||
"related": ["memory:load-skill-memory"]
|
||||
},
|
||||
"memory:workflow-skill-memory": {
|
||||
"related": ["memory:skill-memory"],
|
||||
"next_steps": ["workflow:plan"]
|
||||
},
|
||||
|
||||
# CLI modes
|
||||
@@ -211,15 +233,47 @@ def build_command_relationships() -> Dict[str, Any]:
|
||||
"alternatives": ["cli:codex-execute"],
|
||||
"related": ["cli:analyze", "cli:chat"]
|
||||
},
|
||||
"cli:analyze": {
|
||||
"related": ["cli:chat", "cli:mode:code-analysis"],
|
||||
"next_steps": ["cli:execute"]
|
||||
},
|
||||
|
||||
# Brainstorming
|
||||
"brainstorm:artifacts": {
|
||||
"next_steps": ["brainstorm:synthesis", "plan"],
|
||||
"related": ["brainstorm:auto-parallel"]
|
||||
"workflow:brainstorm:artifacts": {
|
||||
"next_steps": ["workflow:brainstorm:synthesis", "workflow:plan"],
|
||||
"related": ["workflow:brainstorm:auto-parallel"]
|
||||
},
|
||||
"brainstorm:synthesis": {
|
||||
"prerequisites": ["brainstorm:artifacts"],
|
||||
"next_steps": ["plan"]
|
||||
"workflow:brainstorm:synthesis": {
|
||||
"prerequisites": ["workflow:brainstorm:artifacts"],
|
||||
"next_steps": ["workflow:plan"]
|
||||
},
|
||||
"workflow:brainstorm:auto-parallel": {
|
||||
"next_steps": ["workflow:brainstorm:synthesis", "workflow:plan"],
|
||||
"related": ["workflow:brainstorm:artifacts"]
|
||||
},
|
||||
|
||||
# Test workflows
|
||||
"workflow:test-gen": {
|
||||
"prerequisites": ["workflow:execute"],
|
||||
"next_steps": ["workflow:test-cycle-execute"]
|
||||
},
|
||||
"workflow:test-fix-gen": {
|
||||
"alternatives": ["workflow:test-gen"],
|
||||
"next_steps": ["workflow:test-cycle-execute"]
|
||||
},
|
||||
"workflow:test-cycle-execute": {
|
||||
"prerequisites": ["workflow:test-gen", "workflow:test-fix-gen"],
|
||||
"related": ["workflow:tdd-verify"]
|
||||
},
|
||||
|
||||
# UI Design workflows
|
||||
"workflow:ui-design:explore-auto": {
|
||||
"calls_internally": ["workflow:ui-design:capture", "workflow:ui-design:style-extract", "workflow:ui-design:layout-extract"],
|
||||
"next_steps": ["workflow:ui-design:generate"]
|
||||
},
|
||||
"workflow:ui-design:imitate-auto": {
|
||||
"calls_internally": ["workflow:ui-design:capture"],
|
||||
"next_steps": ["workflow:ui-design:generate"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -227,31 +281,34 @@ def build_command_relationships() -> Dict[str, Any]:
|
||||
|
||||
def identify_essential_commands(all_commands: List[Dict]) -> List[Dict]:
|
||||
"""Identify the most essential commands for beginners."""
|
||||
# Essential command names (14 most important)
|
||||
# Essential command names (14 most important) - use full command paths
|
||||
essential_names = [
|
||||
"plan",
|
||||
"execute",
|
||||
"status",
|
||||
"session:start",
|
||||
"workflow:plan",
|
||||
"workflow:execute",
|
||||
"workflow:status",
|
||||
"workflow:session:start",
|
||||
"task:execute",
|
||||
"cli:analyze",
|
||||
"cli:chat",
|
||||
"memory:docs",
|
||||
"brainstorm:artifacts",
|
||||
"action-plan-verify",
|
||||
"resume",
|
||||
"review",
|
||||
"workflow:brainstorm:artifacts",
|
||||
"workflow:action-plan-verify",
|
||||
"workflow:resume",
|
||||
"workflow:review",
|
||||
"version",
|
||||
"enhance-prompt"
|
||||
]
|
||||
|
||||
essential = []
|
||||
for cmd in all_commands:
|
||||
# Check both command name and simple name
|
||||
cmd_simple = cmd['command'].lstrip('/')
|
||||
if cmd_simple in essential_names or cmd['name'] in essential_names:
|
||||
# Check command name without leading slash
|
||||
cmd_name = cmd['command'].lstrip('/')
|
||||
if cmd_name in essential_names:
|
||||
essential.append(cmd)
|
||||
|
||||
# Sort by order in essential_names
|
||||
essential.sort(key=lambda x: essential_names.index(x['command'].lstrip('/')))
|
||||
|
||||
return essential[:14] # Limit to 14
|
||||
|
||||
def main():
|
||||
Reference in New Issue
Block a user