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