mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-13 02:41:50 +08:00
CCW Skill (new): - Stateless workflow orchestrator with intent classification - 6 workflow combinations: rapid, full, coupled, bugfix, issue, ui - External configuration: intent-rules.json, workflow-chains.json - Implicit CLI tool injection (Gemini/Qwen/Codex) - TODO tracking integration for workflow progress CCW-Help Skill (refactored from command-guide): - Renamed command-guide → ccw-help - Removed reference folder duplication - Source paths now relative from index/ (../../../commands/...) - Added all-agents.json index - Simplified SKILL.md following CCW pattern
112 lines
4.7 KiB
JSON
112 lines
4.7 KiB
JSON
[
|
|
{
|
|
"name": "lite-plan",
|
|
"command": "/workflow:lite-plan",
|
|
"description": "Lightweight interactive planning workflow with in-memory planning, code exploration, and execution dispatch to lite-execute after user confirmation",
|
|
"arguments": "[-e|--explore] \\\"task description\\\"|file.md",
|
|
"category": "workflow",
|
|
"subcategory": null,
|
|
"usage_scenario": "planning",
|
|
"difficulty": "Intermediate",
|
|
"source": "../../../commands/workflow/lite-plan.md"
|
|
},
|
|
{
|
|
"name": "lite-fix",
|
|
"command": "/workflow:lite-fix",
|
|
"description": "Lightweight bug diagnosis and fix workflow with intelligent severity assessment and optional hotfix mode for production incidents",
|
|
"arguments": "[--hotfix] \\\"bug description or issue reference\\",
|
|
"category": "workflow",
|
|
"subcategory": null,
|
|
"usage_scenario": "general",
|
|
"difficulty": "Intermediate",
|
|
"source": "../../../commands/workflow/lite-fix.md"
|
|
},
|
|
{
|
|
"name": "plan",
|
|
"command": "/workflow:plan",
|
|
"description": "5-phase planning workflow with action-planning-agent task generation, outputs IMPL_PLAN.md and task JSONs",
|
|
"arguments": "\\\"text description\\\"|file.md",
|
|
"category": "workflow",
|
|
"subcategory": null,
|
|
"usage_scenario": "planning",
|
|
"difficulty": "Intermediate",
|
|
"source": "../../../commands/workflow/plan.md"
|
|
},
|
|
{
|
|
"name": "execute",
|
|
"command": "/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": null,
|
|
"usage_scenario": "implementation",
|
|
"difficulty": "Intermediate",
|
|
"source": "../../../commands/workflow/execute.md"
|
|
},
|
|
{
|
|
"name": "start",
|
|
"command": "/workflow:session:start",
|
|
"description": "Discover existing sessions or start new workflow session with intelligent session management and conflict detection",
|
|
"arguments": "[--type <workflow|review|tdd|test|docs>] [--auto|--new] [optional: task description for new session]",
|
|
"category": "workflow",
|
|
"subcategory": "session",
|
|
"usage_scenario": "general",
|
|
"difficulty": "Intermediate",
|
|
"source": "../../../commands/workflow/session/start.md"
|
|
},
|
|
{
|
|
"name": "review-session-cycle",
|
|
"command": "/workflow:review-session-cycle",
|
|
"description": "Session-based comprehensive multi-dimensional code review. Analyzes git changes from workflow session across 7 dimensions with hybrid parallel-iterative execution, aggregates findings, and performs focused deep-dives on critical issues until quality gates met.",
|
|
"arguments": "[session-id] [--dimensions=security,architecture,...] [--max-iterations=N]",
|
|
"category": "workflow",
|
|
"subcategory": null,
|
|
"usage_scenario": "session-management",
|
|
"difficulty": "Intermediate",
|
|
"source": "../../../commands/workflow/review-session-cycle.md"
|
|
},
|
|
{
|
|
"name": "docs",
|
|
"command": "/memory:docs",
|
|
"description": "Plan documentation workflow with dynamic grouping (≤10 docs/task), generates IMPL tasks for parallel module trees, README, ARCHITECTURE, and HTTP API docs",
|
|
"arguments": "[path] [--tool <gemini|qwen|codex>] [--mode <full|partial>] [--cli-execute]",
|
|
"category": "memory",
|
|
"subcategory": null,
|
|
"usage_scenario": "documentation",
|
|
"difficulty": "Intermediate",
|
|
"source": "../../../commands/memory/docs.md"
|
|
},
|
|
{
|
|
"name": "artifacts",
|
|
"command": "/workflow:brainstorm:artifacts",
|
|
"description": "Interactive clarification generating confirmed guidance specification through role-based analysis and synthesis",
|
|
"arguments": "topic or challenge description [--count N]",
|
|
"category": "workflow",
|
|
"subcategory": "brainstorm",
|
|
"usage_scenario": "general",
|
|
"difficulty": "Intermediate",
|
|
"source": "../../../commands/workflow/brainstorm/artifacts.md"
|
|
},
|
|
{
|
|
"name": "action-plan-verify",
|
|
"command": "/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": null,
|
|
"usage_scenario": "planning",
|
|
"difficulty": "Intermediate",
|
|
"source": "../../../commands/workflow/action-plan-verify.md"
|
|
},
|
|
{
|
|
"name": "version",
|
|
"command": "/version",
|
|
"description": "Display Claude Code version information and check for updates",
|
|
"arguments": "",
|
|
"category": "general",
|
|
"subcategory": null,
|
|
"usage_scenario": "general",
|
|
"difficulty": "Beginner",
|
|
"source": "../../../commands/version.md"
|
|
}
|
|
] |