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:
catlog22
2025-11-06 15:11:31 +08:00
parent 6993677ed9
commit 920b179440
80 changed files with 2503 additions and 4992 deletions

View File

@@ -1,6 +1,6 @@
--- ---
name: analyze name: analyze
description: Quick codebase analysis using CLI tools (codex/gemini/qwen) description: Read-only codebase analysis using Gemini (default), Qwen, or Codex with auto-pattern detection and template selection
argument-hint: "[--agent] [--tool codex|gemini|qwen] [--enhance] analysis target" argument-hint: "[--agent] [--tool codex|gemini|qwen] [--enhance] analysis target"
allowed-tools: SlashCommand(*), Bash(*), TodoWrite(*), Read(*), Glob(*), Task(*) allowed-tools: SlashCommand(*), Bash(*), TodoWrite(*), Read(*), Glob(*), Task(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: chat name: chat
description: Simple CLI interaction command for direct codebase analysis description: Read-only Q&A interaction with Gemini/Qwen/Codex for codebase questions with automatic context inference
argument-hint: "[--agent] [--tool codex|gemini|qwen] [--enhance] inquiry" argument-hint: "[--agent] [--tool codex|gemini|qwen] [--enhance] inquiry"
allowed-tools: SlashCommand(*), Bash(*), Task(*) allowed-tools: SlashCommand(*), Bash(*), Task(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: cli-init name: cli-init
description: Initialize CLI tool configurations (Gemini and Qwen) based on workspace analysis description: Generate .gemini/ and .qwen/ config directories with settings.json and ignore files based on workspace technology detection
argument-hint: "[--tool gemini|qwen|all] [--output path] [--preview]" argument-hint: "[--tool gemini|qwen|all] [--output path] [--preview]"
allowed-tools: Bash(*), Read(*), Write(*), Glob(*) allowed-tools: Bash(*), Read(*), Write(*), Glob(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: codex-execute name: codex-execute
description: Automated task decomposition and execution with Codex using resume mechanism description: Multi-stage Codex execution with automatic task decomposition into grouped subtasks using resume mechanism for context continuity
argument-hint: "[--verify-git] task description or task-id" argument-hint: "[--verify-git] task description or task-id"
allowed-tools: SlashCommand(*), Bash(*), TodoWrite(*), Read(*), Glob(*) allowed-tools: SlashCommand(*), Bash(*), TodoWrite(*), Read(*), Glob(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: discuss-plan name: discuss-plan
description: Orchestrates an iterative, multi-model discussion for planning and analysis without implementation. description: Multi-round collaborative planning using Gemini, Codex, and Claude synthesis with iterative discussion cycles (read-only, no code changes)
argument-hint: "[--topic '...'] [--task-id '...'] [--rounds N]" argument-hint: "[--topic '...'] [--task-id '...'] [--rounds N]"
allowed-tools: SlashCommand(*), Bash(*), TodoWrite(*), Read(*), Glob(*) allowed-tools: SlashCommand(*), Bash(*), TodoWrite(*), Read(*), Glob(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: execute name: execute
description: Auto-execution of implementation tasks with YOLO permissions and intelligent context inference description: Autonomous code implementation with YOLO auto-approval using Gemini/Qwen/Codex, supports task ID or description input with automatic file pattern detection
argument-hint: "[--agent] [--tool codex|gemini|qwen] [--enhance] description or task-id" argument-hint: "[--agent] [--tool codex|gemini|qwen] [--enhance] description or task-id"
allowed-tools: SlashCommand(*), Bash(*), Task(*) allowed-tools: SlashCommand(*), Bash(*), Task(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: bug-diagnosis name: bug-diagnosis
description: Bug diagnosis and fix suggestions using CLI tools with specialized template description: Read-only bug root cause analysis using Gemini/Qwen/Codex with systematic diagnosis template for fix suggestions
argument-hint: "[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] bug description" argument-hint: "[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] bug description"
allowed-tools: SlashCommand(*), Bash(*), Task(*) allowed-tools: SlashCommand(*), Bash(*), Task(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: code-analysis name: code-analysis
description: Deep code analysis and debugging using CLI tools with specialized template description: Read-only execution path tracing using Gemini/Qwen/Codex with specialized analysis template for call flow and optimization
argument-hint: "[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] analysis target" argument-hint: "[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] analysis target"
allowed-tools: SlashCommand(*), Bash(*), Task(*) allowed-tools: SlashCommand(*), Bash(*), Task(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: plan name: plan
description: Project planning and architecture analysis using CLI tools description: Read-only architecture planning using Gemini/Qwen/Codex with strategic planning template for modification plans and impact analysis
argument-hint: "[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] topic" argument-hint: "[--agent] [--tool codex|gemini|qwen] [--enhance] [--cd path] topic"
allowed-tools: SlashCommand(*), Bash(*), Task(*) allowed-tools: SlashCommand(*), Bash(*), Task(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: enhance-prompt name: enhance-prompt
description: Context-aware prompt enhancement using session memory and codebase analysis description: Enhanced prompt transformation using session memory and codebase analysis with --enhance flag detection
argument-hint: "user input to enhance" argument-hint: "user input to enhance"
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: docs name: docs
description: Documentation planning and orchestration - creates structured documentation tasks for execution description: Plan documentation workflow with dynamic grouping (≤10 docs/task), generates IMPL tasks for parallel module trees, README, ARCHITECTURE, and HTTP API docs
argument-hint: "[path] [--tool <gemini|qwen|codex>] [--mode <full|partial>] [--cli-execute]" argument-hint: "[path] [--tool <gemini|qwen|codex>] [--mode <full|partial>] [--cli-execute]"
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: load-skill-memory name: load-skill-memory
description: Activate SKILL package (auto-detect or manual) and load documentation based on task intent description: Activate SKILL package (auto-detect from paths/keywords or manual) and intelligently load documentation based on task intent keywords
argument-hint: "[skill_name] \"task intent description\"" argument-hint: "[skill_name] \"task intent description\""
allowed-tools: Bash(*), Read(*), Skill(*) allowed-tools: Bash(*), Read(*), Skill(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: load name: load
description: Load project memory by delegating to agent, returns structured core content package for subsequent operations description: Delegate to universal-executor agent to analyze project via Gemini/Qwen CLI and return JSON core content package for task context
argument-hint: "[--tool gemini|qwen] \"task context description\"" argument-hint: "[--tool gemini|qwen] \"task context description\""
allowed-tools: Task(*), Bash(*) allowed-tools: Task(*), Bash(*)
examples: examples:

View File

@@ -1,6 +1,6 @@
--- ---
name: skill-memory name: skill-memory
description: Generate SKILL package index from project documentation 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)
argument-hint: "[path] [--tool <gemini|qwen|codex>] [--regenerate] [--mode <full|partial>] [--cli-execute]" argument-hint: "[path] [--tool <gemini|qwen|codex>] [--regenerate] [--mode <full|partial>] [--cli-execute]"
allowed-tools: SlashCommand(*), TodoWrite(*), Bash(*), Read(*), Write(*) allowed-tools: SlashCommand(*), TodoWrite(*), Bash(*), Read(*), Write(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: tech-research name: tech-research
description: Generate tech stack SKILL packages using Exa research via agent delegation description: 3-phase orchestrator: extract tech stack from session/name → delegate to agent for Exa research and module generation → generate SKILL.md index (skips phase 2 if exists)
argument-hint: "[session-id | tech-stack-name] [--regenerate] [--tool <gemini|qwen>]" argument-hint: "[session-id | tech-stack-name] [--regenerate] [--tool <gemini|qwen>]"
allowed-tools: SlashCommand(*), TodoWrite(*), Bash(*), Read(*), Write(*), Task(*) allowed-tools: SlashCommand(*), TodoWrite(*), Bash(*), Read(*), Write(*), Task(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: update-full name: update-full
description: Complete project-wide CLAUDE.md documentation update with agent-based parallel execution and tool fallback description: Update all CLAUDE.md files using layer-based execution (Layer 3→1) with batched agents (4 modules/agent) and gemini→qwen→codex fallback, <20 modules uses direct parallel
argument-hint: "[--tool gemini|qwen|codex] [--path <directory>]" argument-hint: "[--tool gemini|qwen|codex] [--path <directory>]"
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: update-related name: update-related
description: Context-aware CLAUDE.md documentation updates based on recent changes with agent-based execution and tool fallback description: Update CLAUDE.md for git-changed modules using batched agent execution (4 modules/agent) with gemini→qwen→codex fallback, <15 modules uses direct execution
argument-hint: "[--tool gemini|qwen|codex]" argument-hint: "[--tool gemini|qwen|codex]"
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: workflow-skill-memory name: workflow-skill-memory
description: Generate SKILL package from archived workflow sessions for progressive context loading description: Process WFS-* archived sessions using universal-executor agents with Gemini analysis to generate workflow-progress SKILL package (sessions-timeline, lessons, conflicts)
argument-hint: "session <session-id> | all" argument-hint: "session <session-id> | all"
allowed-tools: Task(*), TodoWrite(*), Bash(*), Read(*), Write(*) allowed-tools: Task(*), TodoWrite(*), Bash(*), Read(*), Write(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: breakdown name: breakdown
description: Intelligent task decomposition with context-aware subtask generation description: Decompose complex task into subtasks with dependency mapping, creates child task JSONs with parent references and execution order
argument-hint: "task-id" argument-hint: "task-id"
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: create name: create
description: Create implementation tasks with automatic context awareness description: Generate task JSON from natural language description with automatic file pattern detection, scope inference, and dependency analysis
argument-hint: "\"task title\"" argument-hint: "\"task title\""
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: execute name: execute
description: Execute tasks with appropriate agents and context-aware orchestration description: Execute task JSON using appropriate agent (@doc-generator/@implementation-agent/@test-agent) with pre-analysis context loading and status tracking
argument-hint: "task-id" argument-hint: "task-id"
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: replan name: replan
description: Replan individual tasks with detailed user input and change tracking description: Update task JSON with new requirements or batch-update multiple tasks from verification report, tracks changes in task-changes.json
argument-hint: "task-id [\"text\"|file.md] | --batch [verification-report.md]" argument-hint: "task-id [\"text\"|file.md] | --batch [verification-report.md]"
allowed-tools: Read(*), Write(*), Edit(*), TodoWrite(*), Glob(*), Bash(*) allowed-tools: Read(*), Write(*), Edit(*), TodoWrite(*), Glob(*), Bash(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: version name: version
description: Display version information and check for updates description: Display Claude Code version information and check for updates
allowed-tools: Bash(*) allowed-tools: Bash(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: action-plan-verify name: action-plan-verify
description: Perform non-destructive cross-artifact consistency and quality analysis of IMPL_PLAN.md and task.json before execution description: Perform non-destructive cross-artifact consistency analysis between IMPL_PLAN.md and task JSONs with quality gate validation
argument-hint: "[optional: --session session-id]" argument-hint: "[optional: --session session-id]"
allowed-tools: Read(*), TodoWrite(*), Glob(*), Bash(*) allowed-tools: Read(*), TodoWrite(*), Glob(*), Bash(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: api-designer name: api-designer
description: Generate or update api-designer/analysis.md addressing guidance-specification discussion points description: Generate or update api-designer/analysis.md addressing guidance-specification discussion points for API design perspective
argument-hint: "optional topic - uses existing framework if available" argument-hint: "optional topic - uses existing framework if available"
allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*) allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: artifacts name: artifacts
description: Interactive clarification generating confirmed guidance specification description: Interactive clarification generating confirmed guidance specification through role-based analysis and synthesis
argument-hint: "topic or challenge description [--count N]" argument-hint: "topic or challenge description [--count N]"
allowed-tools: TodoWrite(*), Read(*), Write(*), Glob(*) allowed-tools: TodoWrite(*), Read(*), Write(*), Glob(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: auto-parallel name: auto-parallel
description: Parallel brainstorming automation with dynamic role selection and concurrent execution description: Parallel brainstorming automation with dynamic role selection and concurrent execution across multiple perspectives
argument-hint: "topic or challenge description" [--count N] argument-hint: "topic or challenge description" [--count N]
allowed-tools: SlashCommand(*), Task(*), TodoWrite(*), Read(*), Write(*), Bash(*), Glob(*) allowed-tools: SlashCommand(*), Task(*), TodoWrite(*), Read(*), Write(*), Bash(*), Glob(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: data-architect name: data-architect
description: Generate or update data-architect/analysis.md addressing guidance-specification discussion points description: Generate or update data-architect/analysis.md addressing guidance-specification discussion points for data architecture perspective
argument-hint: "optional topic - uses existing framework if available" argument-hint: "optional topic - uses existing framework if available"
allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*) allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: product-manager name: product-manager
description: Generate or update product-manager/analysis.md addressing guidance-specification discussion points description: Generate or update product-manager/analysis.md addressing guidance-specification discussion points for product management perspective
argument-hint: "optional topic - uses existing framework if available" argument-hint: "optional topic - uses existing framework if available"
allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*) allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: product-owner name: product-owner
description: Generate or update product-owner/analysis.md addressing guidance-specification discussion points description: Generate or update product-owner/analysis.md addressing guidance-specification discussion points for product ownership perspective
argument-hint: "optional topic - uses existing framework if available" argument-hint: "optional topic - uses existing framework if available"
allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*) allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: scrum-master name: scrum-master
description: Generate or update scrum-master/analysis.md addressing guidance-specification discussion points description: Generate or update scrum-master/analysis.md addressing guidance-specification discussion points for Agile process perspective
argument-hint: "optional topic - uses existing framework if available" argument-hint: "optional topic - uses existing framework if available"
allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*) allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: subject-matter-expert name: subject-matter-expert
description: Generate or update subject-matter-expert/analysis.md addressing guidance-specification discussion points description: Generate or update subject-matter-expert/analysis.md addressing guidance-specification discussion points for domain expertise perspective
argument-hint: "optional topic - uses existing framework if available" argument-hint: "optional topic - uses existing framework if available"
allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*) allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: synthesis name: synthesis
description: Clarify and refine role analyses through intelligent Q&A and targeted updates description: Clarify and refine role analyses through intelligent Q&A and targeted updates with synthesis agent
argument-hint: "[optional: --session session-id]" argument-hint: "[optional: --session session-id]"
allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*), Edit(*), Glob(*) allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*), Edit(*), Glob(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: system-architect name: system-architect
description: Generate or update system-architect/analysis.md addressing guidance-specification discussion points description: Generate or update system-architect/analysis.md addressing guidance-specification discussion points for system architecture perspective
argument-hint: "optional topic - uses existing framework if available" argument-hint: "optional topic - uses existing framework if available"
allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*) allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: ui-designer name: ui-designer
description: Generate or update ui-designer/analysis.md addressing guidance-specification discussion points description: Generate or update ui-designer/analysis.md addressing guidance-specification discussion points for UI design perspective
argument-hint: "optional topic - uses existing framework if available" argument-hint: "optional topic - uses existing framework if available"
allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*) allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: ux-expert name: ux-expert
description: Generate or update ux-expert/analysis.md addressing guidance-specification discussion points description: Generate or update ux-expert/analysis.md addressing guidance-specification discussion points for UX perspective
argument-hint: "optional topic - uses existing framework if available" argument-hint: "optional topic - uses existing framework if available"
allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*) allowed-tools: Task(conceptual-planning-agent), TodoWrite(*), Read(*), Write(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: execute name: execute
description: Coordinate agents for existing workflow tasks with automatic discovery description: Coordinate agent execution for workflow tasks with automatic session discovery, parallel task processing, and status tracking
argument-hint: "[--resume-session=\"session-id\"]" argument-hint: "[--resume-session=\"session-id\"]"
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: plan name: plan
description: Orchestrate 5-phase planning workflow with quality gate, executing commands and passing context between phases 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
argument-hint: "[--agent] [--cli-execute] \"text description\"|file.md" argument-hint: "[--agent] [--cli-execute] \"text description\"|file.md"
allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*) allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: resume name: resume
description: Intelligent workflow session resumption with automatic progress analysis description: Resume paused workflow session with automatic progress analysis, pending task identification, and conflict detection
argument-hint: "session-id for workflow session to resume" argument-hint: "session-id for workflow session to resume"
allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*) allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: review name: review
description: Optional specialized review (security, architecture, docs) for completed implementation description: Post-implementation review with specialized types (security/architecture/action-items/quality) using analysis agents and Gemini
argument-hint: "[--type=security|architecture|action-items|quality] [optional: session-id]" argument-hint: "[--type=security|architecture|action-items|quality] [optional: session-id]"
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: complete name: complete
description: Mark the active workflow session as complete, archive it with lessons learned, and remove active flag description: Mark active workflow session as complete, archive with lessons learned, update manifest, remove active flag
examples: examples:
- /workflow:session:complete - /workflow:session:complete
- /workflow:session:complete --detailed - /workflow:session:complete --detailed

View File

@@ -1,6 +1,6 @@
--- ---
name: list name: list
description: List all workflow sessions with status description: List all workflow sessions with status filtering, shows session metadata and progress information
examples: examples:
- /workflow:session:list - /workflow:session:list
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: resume name: resume
description: Resume the most recently paused workflow session description: Resume the most recently paused workflow session with automatic session discovery and status update
--- ---
# Resume Workflow Session (/workflow:session:resume) # Resume Workflow Session (/workflow:session:resume)

View File

@@ -1,6 +1,6 @@
--- ---
name: start name: start
description: Discover existing sessions or start a new workflow session with intelligent session management description: Discover existing sessions or start new workflow session with intelligent session management and conflict detection
argument-hint: [--auto|--new] [optional: task description for new session] argument-hint: [--auto|--new] [optional: task description for new session]
examples: examples:
- /workflow:session:start - /workflow:session:start

View File

@@ -1,6 +1,6 @@
--- ---
name: workflow:status name: workflow:status
description: Generate on-demand views from JSON task data description: Generate on-demand task status views from JSON task data with optional task-id filtering for detailed view
argument-hint: "[optional: task-id]" argument-hint: "[optional: task-id]"
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: tdd-plan name: tdd-plan
description: Orchestrate TDD workflow planning with Red-Green-Refactor task chains description: TDD workflow planning with Red-Green-Refactor task chain generation, test-first development structure, and cycle tracking
argument-hint: "[--agent] \"feature description\"|file.md" argument-hint: "[--agent] \"feature description\"|file.md"
allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*) allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: tdd-verify name: tdd-verify
description: Verify TDD workflow compliance and generate quality report description: Verify TDD workflow compliance against Red-Green-Refactor cycles, generate quality report with coverage analysis
argument-hint: "[optional: WFS-session-id]" argument-hint: "[optional: WFS-session-id]"
allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(gemini:*) allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(gemini:*)

View File

@@ -1,6 +1,6 @@
--- ---
name: test-cycle-execute name: test-cycle-execute
description: Execute test-fix workflow with dynamic task generation and iterative fix cycles description: Execute test-fix workflow with dynamic task generation and iterative fix cycles until all tests pass or max iterations reached
argument-hint: "[--resume-session=\"session-id\"] [--max-iterations=N]" argument-hint: "[--resume-session=\"session-id\"] [--max-iterations=N]"
allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*), Task(*) allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*), Task(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: test-fix-gen name: test-fix-gen
description: Create independent test-fix workflow session from existing implementation (session or prompt-based) description: Create test-fix workflow session from session ID, description, or file path with test strategy generation and task planning
argument-hint: "[--use-codex] [--cli-execute] (source-session-id | \"feature description\" | /path/to/file.md)" argument-hint: "[--use-codex] [--cli-execute] (source-session-id | \"feature description\" | /path/to/file.md)"
allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*) allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: test-gen name: test-gen
description: Create independent test-fix workflow session by analyzing completed implementation description: Create independent test-fix workflow session from completed implementation session, analyzes code to generate test tasks
argument-hint: "[--use-codex] [--cli-execute] source-session-id" argument-hint: "[--use-codex] [--cli-execute] source-session-id"
allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*) allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: conflict-resolution name: conflict-resolution
description: Detect and resolve conflicts between plan and existing codebase using CLI-powered analysis description: Detect and resolve conflicts between plan and existing codebase using CLI-powered analysis with Gemini/Qwen
argument-hint: "--session WFS-session-id --context path/to/context-package.json" argument-hint: "--session WFS-session-id --context path/to/context-package.json"
examples: examples:
- /workflow:tools:conflict-resolution --session WFS-auth --context .workflow/WFS-auth/.process/context-package.json - /workflow:tools:conflict-resolution --session WFS-auth --context .workflow/WFS-auth/.process/context-package.json

View File

@@ -1,6 +1,6 @@
--- ---
name: gather name: gather
description: Intelligently collect project context using context-search-agent based on task description and package into standardized JSON description: Intelligently collect project context using context-search-agent based on task description, packages into standardized JSON
argument-hint: "--session WFS-session-id \"task description\"" argument-hint: "--session WFS-session-id \"task description\""
examples: examples:
- /workflow:tools:context-gather --session WFS-user-auth "Implement user authentication system" - /workflow:tools:context-gather --session WFS-user-auth "Implement user authentication system"

View File

@@ -1,6 +1,6 @@
--- ---
name: task-generate-agent name: task-generate-agent
description: Autonomous task generation using action-planning-agent with discovery and output phases description: Autonomous task generation using action-planning-agent with discovery and output phases for workflow planning
argument-hint: "--session WFS-session-id [--cli-execute]" argument-hint: "--session WFS-session-id [--cli-execute]"
examples: examples:
- /workflow:tools:task-generate-agent --session WFS-auth - /workflow:tools:task-generate-agent --session WFS-auth

View File

@@ -1,6 +1,6 @@
--- ---
name: task-generate-tdd name: task-generate-tdd
description: Generate TDD task chains with Red-Green-Refactor dependencies description: Generate TDD task chains with Red-Green-Refactor dependencies, test-first structure, and cycle validation
argument-hint: "--session WFS-session-id [--agent]" argument-hint: "--session WFS-session-id [--agent]"
allowed-tools: Read(*), Write(*), Bash(gemini:*), TodoWrite(*) allowed-tools: Read(*), Write(*), Bash(gemini:*), TodoWrite(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: task-generate name: task-generate
description: Generate task JSON files and IMPL_PLAN.md from analysis results with artifacts integration description: Generate task JSON files and IMPL_PLAN.md from analysis results using action-planning-agent with artifact integration
argument-hint: "--session WFS-session-id [--cli-execute]" argument-hint: "--session WFS-session-id [--cli-execute]"
examples: examples:
- /workflow:tools:task-generate --session WFS-auth - /workflow:tools:task-generate --session WFS-auth

View File

@@ -1,6 +1,6 @@
--- ---
name: tdd-coverage-analysis name: tdd-coverage-analysis
description: Analyze test coverage and TDD cycle execution description: Analyze test coverage and TDD cycle execution with Red-Green-Refactor compliance verification
argument-hint: "--session WFS-session-id" argument-hint: "--session WFS-session-id"
allowed-tools: Read(*), Write(*), Bash(*) allowed-tools: Read(*), Write(*), Bash(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: test-concept-enhanced name: test-concept-enhanced
description: Analyze test requirements and generate test generation strategy using Gemini description: Analyze test requirements and generate test generation strategy using Gemini with test-context package
argument-hint: "--session WFS-test-session-id --context path/to/test-context-package.json" argument-hint: "--session WFS-test-session-id --context path/to/test-context-package.json"
examples: examples:
- /workflow:tools:test-concept-enhanced --session WFS-test-auth --context .workflow/WFS-test-auth/.process/test-context-package.json - /workflow:tools:test-concept-enhanced --session WFS-test-auth --context .workflow/WFS-test-auth/.process/test-context-package.json

View File

@@ -1,6 +1,6 @@
--- ---
name: test-context-gather name: test-context-gather
description: Intelligently collect test coverage context using test-context-search-agent and package into standardized test-context JSON description: Collect test coverage context using test-context-search-agent and package into standardized test-context JSON
argument-hint: "--session WFS-test-session-id" argument-hint: "--session WFS-test-session-id"
examples: examples:
- /workflow:tools:test-context-gather --session WFS-test-auth - /workflow:tools:test-context-gather --session WFS-test-auth

View File

@@ -1,6 +1,6 @@
--- ---
name: test-task-generate name: test-task-generate
description: Generate test-fix task JSON with iterative test-fix-retest cycle specification description: Generate test-fix task JSON with iterative test-fix-retest cycle specification using Gemini/Qwen/Codex
argument-hint: "[--use-codex] [--cli-execute] --session WFS-test-session-id" argument-hint: "[--use-codex] [--cli-execute] --session WFS-test-session-id"
examples: examples:
- /workflow:tools:test-task-generate --session WFS-test-auth - /workflow:tools:test-task-generate --session WFS-test-auth

View File

@@ -1,6 +1,6 @@
--- ---
name: animation-extract name: animation-extract
description: Extract animation and transition patterns from URLs, CSS, or interactive questioning description: Extract animation and transition patterns from URLs, CSS, or interactive questioning for design system documentation
argument-hint: "[--base-path <path>] [--session <id>] [--urls "<list>"] [--mode <auto|interactive>] [--focus "<types>"]" argument-hint: "[--base-path <path>] [--session <id>] [--urls "<list>"] [--mode <auto|interactive>] [--focus "<types>"]"
allowed-tools: TodoWrite(*), Read(*), Write(*), Glob(*), Bash(*), Task(ui-design-agent), mcp__chrome-devtools__navigate_page(*), mcp__chrome-devtools__evaluate_script(*) allowed-tools: TodoWrite(*), Read(*), Write(*), Glob(*), Bash(*), Task(ui-design-agent), mcp__chrome-devtools__navigate_page(*), mcp__chrome-devtools__evaluate_script(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: batch-generate name: batch-generate
description: Prompt-driven batch UI generation using target-style-centric parallel execution description: Prompt-driven batch UI generation using target-style-centric parallel execution with design token application
argument-hint: [--targets "<list>"] [--target-type "page|component"] [--device-type "desktop|mobile|tablet|responsive"] [--base-path <path>] [--session <id>] [--style-variants <count>] [--layout-variants <count>] argument-hint: [--targets "<list>"] [--target-type "page|component"] [--device-type "desktop|mobile|tablet|responsive"] [--base-path <path>] [--session <id>] [--style-variants <count>] [--layout-variants <count>]
allowed-tools: TodoWrite(*), Read(*), Write(*), Task(ui-design-agent), Bash(*), mcp__exa__web_search_exa(*) allowed-tools: TodoWrite(*), Read(*), Write(*), Task(ui-design-agent), Bash(*), mcp__exa__web_search_exa(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: capture name: capture
description: Batch screenshot capture for UI design workflows using MCP or local fallback description: Batch screenshot capture for UI design workflows using MCP puppeteer or local fallback with URL mapping
argument-hint: --url-map "target:url,..." [--base-path path] [--session id] argument-hint: --url-map "target:url,..." [--base-path path] [--session id]
allowed-tools: TodoWrite(*), Read(*), Write(*), Bash(*), Glob(*), ListMcpResourcesTool(*), mcp__chrome-devtools__*, mcp__playwright__* allowed-tools: TodoWrite(*), Read(*), Write(*), Bash(*), Glob(*), ListMcpResourcesTool(*), mcp__chrome-devtools__*, mcp__playwright__*
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: explore-auto name: explore-auto
description: Exploratory UI design workflow with style-centric batch generation description: Exploratory UI design workflow with style-centric batch generation, creates design variants from prompts/images with parallel execution
argument-hint: "[--prompt "<desc>"] [--images "<glob>"] [--targets "<list>"] [--target-type "page|component"] [--session <id>] [--style-variants <count>] [--layout-variants <count>] [--batch-plan]"" argument-hint: "[--prompt "<desc>"] [--images "<glob>"] [--targets "<list>"] [--target-type "page|component"] [--session <id>] [--style-variants <count>] [--layout-variants <count>] [--batch-plan]""
allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*), Glob(*), Write(*), Task(conceptual-planning-agent) allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Bash(*), Glob(*), Write(*), Task(conceptual-planning-agent)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: explore-layers name: explore-layers
description: Interactive deep UI capture with depth-controlled layer exploration description: Interactive deep UI capture with depth-controlled layer exploration using MCP puppeteer
argument-hint: --url <url> --depth <1-5> [--session id] [--base-path path] argument-hint: --url <url> --depth <1-5> [--session id] [--base-path path]
allowed-tools: TodoWrite(*), Read(*), Write(*), Bash(*), Glob(*), mcp__chrome-devtools__* allowed-tools: TodoWrite(*), Read(*), Write(*), Bash(*), Glob(*), mcp__chrome-devtools__*
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: generate name: generate
description: Assemble UI prototypes by combining layout templates with design tokens (pure assembler) description: Assemble UI prototypes by combining layout templates with design tokens, pure assembler without new content generation
argument-hint: [--base-path <path>] [--session <id>] [--style-variants <count>] [--layout-variants <count>] argument-hint: [--base-path <path>] [--session <id>] [--style-variants <count>] [--layout-variants <count>]
allowed-tools: TodoWrite(*), Read(*), Write(*), Task(ui-design-agent), Bash(*) allowed-tools: TodoWrite(*), Read(*), Write(*), Task(ui-design-agent), Bash(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: imitate-auto name: imitate-auto
description: High-speed multi-page UI replication with batch screenshot capture description: High-speed multi-page UI replication with batch screenshot capture and design token extraction
argument-hint: --url-map "<map>" [--capture-mode <batch|deep>] [--depth <1-5>] [--session <id>] [--prompt "<desc>"] argument-hint: --url-map "<map>" [--capture-mode <batch|deep>] [--depth <1-5>] [--session <id>] [--prompt "<desc>"]
allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Write(*), Bash(*) allowed-tools: SlashCommand(*), TodoWrite(*), Read(*), Write(*), Bash(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: layout-extract name: layout-extract
description: Extract structural layout information from reference images, URLs, or text prompts description: Extract structural layout information from reference images, URLs, or text prompts using Claude analysis
argument-hint: [--base-path <path>] [--session <id>] [--images "<glob>"] [--urls "<list>"] [--prompt "<desc>"] [--targets "<list>"] [--mode <imitate|explore>] [--variants <count>] [--device-type <desktop|mobile|tablet|responsive>] argument-hint: [--base-path <path>] [--session <id>] [--images "<glob>"] [--urls "<list>"] [--prompt "<desc>"] [--targets "<list>"] [--mode <imitate|explore>] [--variants <count>] [--device-type <desktop|mobile|tablet|responsive>]
allowed-tools: TodoWrite(*), Read(*), Write(*), Glob(*), Bash(*), Task(ui-design-agent), mcp__exa__web_search_exa(*) allowed-tools: TodoWrite(*), Read(*), Write(*), Glob(*), Bash(*), Task(ui-design-agent), mcp__exa__web_search_exa(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: style-extract name: style-extract
description: Extract design style from reference images or text prompts using Claude's analysis description: Extract design style from reference images or text prompts using Claude analysis with variant generation
argument-hint: "[--base-path <path>] [--session <id>] [--images "<glob>"] [--urls "<list>"] [--prompt "<desc>"] [--mode <imitate|explore>] [--variants <count>]" argument-hint: "[--base-path <path>] [--session <id>] [--images "<glob>"] [--urls "<list>"] [--prompt "<desc>"] [--mode <imitate|explore>] [--variants <count>]"
allowed-tools: TodoWrite(*), Read(*), Write(*), Glob(*), mcp__chrome-devtools__navigate_page(*), mcp__chrome-devtools__evaluate_script(*) allowed-tools: TodoWrite(*), Read(*), Write(*), Glob(*), mcp__chrome-devtools__navigate_page(*), mcp__chrome-devtools__evaluate_script(*)
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
name: update name: update
description: Update brainstorming artifacts with finalized design system references description: Update brainstorming artifacts with finalized design system references from selected prototypes
argument-hint: --session <session_id> [--selected-prototypes "<list>"] argument-hint: --session <session_id> [--selected-prototypes "<list>"]
allowed-tools: Read(*), Write(*), Edit(*), TodoWrite(*), Glob(*), Bash(*) allowed-tools: Read(*), Write(*), Edit(*), TodoWrite(*), Glob(*), Bash(*)
--- ---

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

View File

@@ -1,142 +1,142 @@
[ [
{ {
"name": "enhance-prompt", "name": "cli:codex-execute",
"description": "Context-aware prompt enhancement using session memory and codebase analysis", "description": "Multi-stage Codex execution with automatic task decomposition into grouped subtasks using resume mechanism for context continuity",
"arguments": "\"user input to enhance\"", "arguments": "[--verify-git] task description or task-id",
"category": "general", "category": "cli",
"subcategory": null, "subcategory": "core",
"usage_scenario": "general", "usage_scenario": "session-management",
"difficulty": "Intermediate", "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", "name": "version",
"description": "Display version information and check for updates", "description": "Display Claude Code version information and check for updates",
"arguments": "", "arguments": "",
"category": "general", "category": "general",
"subcategory": null, "subcategory": "core",
"usage_scenario": "general", "usage_scenario": "utilities",
"difficulty": "Intermediate", "difficulty": "Basic",
"file_path": "version.md" "file_path": "version.md"
}, },
{ {
"name": "analyze", "name": "workflow:action-plan-verify",
"description": "Quick codebase analysis using CLI tools (codex/gemini/qwen)", "description": "Perform non-destructive cross-artifact consistency analysis between IMPL_PLAN.md and task JSONs with quality gate validation",
"arguments": "\"[--agent] [--tool codex|gemini|qwen] [--enhance] analysis target\"", "arguments": "[optional: --session session-id]",
"category": "cli", "category": "workflow",
"subcategory": null, "subcategory": "core",
"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", "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", "difficulty": "Intermediate",
"file_path": "task\\breakdown.md" "file_path": "workflow/action-plan-verify.md"
}, },
{ {
"name": "create", "name": "workflow:execute",
"description": "Create implementation tasks with automatic context awareness", "description": "Coordinate agent execution for workflow tasks with automatic session discovery, parallel task processing, and status tracking",
"arguments": "\"\\\"task title\\\"\"", "arguments": "[--resume-session=\\\"session-id\\\"]",
"category": "task", "category": "workflow",
"subcategory": null, "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", "usage_scenario": "implementation",
"difficulty": "Intermediate", "difficulty": "Intermediate",
"file_path": "task\\create.md" "file_path": "workflow/resume.md"
}, },
{ {
"name": "execute", "name": "workflow:session:start",
"description": "Execute tasks with appropriate agents and context-aware orchestration", "description": "Discover existing sessions or start new workflow session with intelligent session management and conflict detection",
"arguments": "\"task-id\"", "arguments": "[--auto|--new] [optional: task description for new session]",
"category": "task", "category": "workflow",
"subcategory": null, "subcategory": "session",
"usage_scenario": "implementation", "usage_scenario": "session-management",
"difficulty": "Intermediate", "difficulty": "Intermediate",
"file_path": "task\\execute.md" "file_path": "workflow/session/start.md"
}, },
{ {
"name": "execute", "name": "workflow:status",
"description": "Coordinate agents for existing workflow tasks with automatic discovery", "description": "Generate on-demand task status views from JSON task data with optional task-id filtering for detailed view",
"arguments": "\"[--resume-session=\\\"session-id\\\"]\"", "arguments": "[optional: task-id]",
"category": "workflow", "category": "workflow",
"subcategory": null, "subcategory": "core",
"usage_scenario": "implementation", "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", "difficulty": "Intermediate",
"file_path": "workflow\\execute.md" "file_path": "workflow/test-cycle-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"
} }
] ]

View File

@@ -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"
}
]

View File

@@ -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"
}
]
}
}

View File

@@ -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"
}
]
}

View File

@@ -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"
]
}

View File

@@ -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"
}
]

View File

@@ -107,13 +107,17 @@ def analyze_command_file(file_path: Path) -> Dict[str, Any]:
difficulty = determine_difficulty(name, description, category) difficulty = determine_difficulty(name, description, category)
# Build relative path # 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 # Build full command name from frontmatter name or construct it
if category == "general": # 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}" command_name = f"/{name}"
else: else:
if subcategory and subcategory not in name: # For subcategorized commands, build the full path
if subcategory:
command_name = f"/{category}:{subcategory}:{name}" command_name = f"/{category}:{subcategory}:{name}"
else: else:
command_name = f"/{category}:{name}" command_name = f"/{category}:{name}"
@@ -134,53 +138,59 @@ def build_command_relationships() -> Dict[str, Any]:
"""Build command relationship mappings.""" """Build command relationship mappings."""
relationships = { relationships = {
# Workflow planning commands # Workflow planning commands
"plan": { "workflow:plan": {
"calls_internally": [ "calls_internally": [
"session:start", "workflow:session:start",
"tools:context-gather", "workflow:tools:context-gather",
"tools:conflict-resolution", "workflow:tools:conflict-resolution",
"tools:task-generate", "workflow:tools:task-generate",
"tools:task-generate-agent" "workflow:tools:task-generate-agent"
], ],
"next_steps": ["action-plan-verify", "status", "execute"], "next_steps": ["workflow:action-plan-verify", "workflow:status", "workflow:execute"],
"alternatives": ["tdd-plan"] "alternatives": ["workflow:tdd-plan"],
"prerequisites": []
}, },
"tdd-plan": { "workflow:tdd-plan": {
"calls_internally": [ "calls_internally": [
"session:start", "workflow:session:start",
"tools:context-gather", "workflow:tools:context-gather",
"tools:task-generate-tdd" "workflow:tools:task-generate-tdd"
], ],
"next_steps": ["tdd-verify", "status", "execute"], "next_steps": ["workflow:tdd-verify", "workflow:status", "workflow:execute"],
"alternatives": ["plan"] "alternatives": ["workflow:plan"],
"prerequisites": []
}, },
# Execution commands # Execution commands
"execute": { "workflow:execute": {
"prerequisites": ["plan", "tdd-plan"], "prerequisites": ["workflow:plan", "workflow:tdd-plan"],
"related": ["status", "resume"], "related": ["workflow:status", "workflow:resume"],
"next_steps": ["review", "tdd-verify"] "next_steps": ["workflow:review", "workflow:tdd-verify"]
}, },
# Verification commands # Verification commands
"action-plan-verify": { "workflow:action-plan-verify": {
"prerequisites": ["plan"], "prerequisites": ["workflow:plan"],
"next_steps": ["execute"], "next_steps": ["workflow:execute"],
"related": ["status"] "related": ["workflow:status"]
}, },
"tdd-verify": { "workflow:tdd-verify": {
"prerequisites": ["execute"], "prerequisites": ["workflow:execute"],
"related": ["tools:tdd-coverage-analysis"] "related": ["workflow:tools:tdd-coverage-analysis"]
}, },
# Session management # Session management
"session:start": { "workflow:session:start": {
"next_steps": ["plan", "execute"], "next_steps": ["workflow:plan", "workflow:execute"],
"related": ["session:list", "session:resume"] "related": ["workflow:session:list", "workflow:session:resume"]
}, },
"session:resume": { "workflow:session:resume": {
"alternatives": ["resume"], "alternatives": ["workflow:resume"],
"related": ["session:list", "status"] "related": ["workflow:session:list", "workflow:status"]
},
"workflow:resume": {
"alternatives": ["workflow:session:resume"],
"related": ["workflow:status"]
}, },
# Task management # Task management
@@ -193,17 +203,29 @@ def build_command_relationships() -> Dict[str, Any]:
"related": ["task:create"] "related": ["task:create"]
}, },
"task:replan": { "task:replan": {
"prerequisites": ["plan"], "prerequisites": ["workflow:plan"],
"related": ["action-plan-verify"] "related": ["workflow:action-plan-verify"]
},
"task:execute": {
"prerequisites": ["task:create", "task:breakdown", "workflow:plan"],
"related": ["workflow:status"]
}, },
# Memory/Documentation # Memory/Documentation
"memory:docs": { "memory:docs": {
"calls_internally": [ "calls_internally": [
"session:start", "workflow:session:start",
"tools:context-gather" "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 # CLI modes
@@ -211,15 +233,47 @@ def build_command_relationships() -> Dict[str, Any]:
"alternatives": ["cli:codex-execute"], "alternatives": ["cli:codex-execute"],
"related": ["cli:analyze", "cli:chat"] "related": ["cli:analyze", "cli:chat"]
}, },
"cli:analyze": {
"related": ["cli:chat", "cli:mode:code-analysis"],
"next_steps": ["cli:execute"]
},
# Brainstorming # Brainstorming
"brainstorm:artifacts": { "workflow:brainstorm:artifacts": {
"next_steps": ["brainstorm:synthesis", "plan"], "next_steps": ["workflow:brainstorm:synthesis", "workflow:plan"],
"related": ["brainstorm:auto-parallel"] "related": ["workflow:brainstorm:auto-parallel"]
}, },
"brainstorm:synthesis": { "workflow:brainstorm:synthesis": {
"prerequisites": ["brainstorm:artifacts"], "prerequisites": ["workflow:brainstorm:artifacts"],
"next_steps": ["plan"] "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]: def identify_essential_commands(all_commands: List[Dict]) -> List[Dict]:
"""Identify the most essential commands for beginners.""" """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 = [ essential_names = [
"plan", "workflow:plan",
"execute", "workflow:execute",
"status", "workflow:status",
"session:start", "workflow:session:start",
"task:execute", "task:execute",
"cli:analyze", "cli:analyze",
"cli:chat", "cli:chat",
"memory:docs", "memory:docs",
"brainstorm:artifacts", "workflow:brainstorm:artifacts",
"action-plan-verify", "workflow:action-plan-verify",
"resume", "workflow:resume",
"review", "workflow:review",
"version", "version",
"enhance-prompt" "enhance-prompt"
] ]
essential = [] essential = []
for cmd in all_commands: for cmd in all_commands:
# Check both command name and simple name # Check command name without leading slash
cmd_simple = cmd['command'].lstrip('/') cmd_name = cmd['command'].lstrip('/')
if cmd_simple in essential_names or cmd['name'] in essential_names: if cmd_name in essential_names:
essential.append(cmd) 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 return essential[:14] # Limit to 14
def main(): def main():