claude-code-workflow 6.3.53 → 6.3.54

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. package/.claude/agents/action-planning-agent.md +26 -1
  2. package/.claude/commands/flow-create.md +675 -0
  3. package/.claude/commands/workflow/plan.md +14 -1
  4. package/.claude/commands/workflow/tools/task-generate-agent.md +35 -24
  5. package/.claude/commands/workflow/unified-execute-with-file.md +0 -15
  6. package/.claude/skills/flow-coordinator/SKILL.md +394 -0
  7. package/.claude/skills/flow-coordinator/templates/analyze.json +16 -0
  8. package/.claude/skills/flow-coordinator/templates/brainstorm-to-issue.json +36 -0
  9. package/.claude/skills/flow-coordinator/templates/brainstorm.json +16 -0
  10. package/.claude/skills/flow-coordinator/templates/bugfix-hotfix.json +16 -0
  11. package/.claude/skills/flow-coordinator/templates/bugfix.json +47 -0
  12. package/.claude/skills/flow-coordinator/templates/coupled.json +71 -0
  13. package/.claude/skills/flow-coordinator/templates/debug.json +16 -0
  14. package/.claude/skills/flow-coordinator/templates/docs.json +27 -0
  15. package/.claude/skills/flow-coordinator/templates/full.json +61 -0
  16. package/.claude/skills/flow-coordinator/templates/issue.json +43 -0
  17. package/.claude/skills/flow-coordinator/templates/lite-lite-lite.json +16 -0
  18. package/.claude/skills/flow-coordinator/templates/multi-cli-plan.json +47 -0
  19. package/.claude/skills/flow-coordinator/templates/rapid-to-issue.json +46 -0
  20. package/.claude/skills/flow-coordinator/templates/rapid.json +47 -0
  21. package/.claude/skills/flow-coordinator/templates/review.json +43 -0
  22. package/.claude/skills/flow-coordinator/templates/tdd.json +34 -0
  23. package/.claude/skills/flow-coordinator/templates/test-fix.json +26 -0
  24. package/package.json +92 -92
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "coupled",
3
+ "description": "Full workflow for complex features - detailed planning with verification, execution, review, and testing",
4
+ "level": 3,
5
+ "steps": [
6
+ {
7
+ "cmd": "/workflow:plan",
8
+ "args": "\"{{goal}}\"",
9
+ "unit": "verified-planning-execution",
10
+ "execution": {
11
+ "type": "slash-command",
12
+ "mode": "mainprocess"
13
+ },
14
+ "contextHint": "Create detailed implementation plan with architecture design, file structure, dependencies, and milestones"
15
+ },
16
+ {
17
+ "cmd": "/workflow:plan-verify",
18
+ "unit": "verified-planning-execution",
19
+ "execution": {
20
+ "type": "slash-command",
21
+ "mode": "mainprocess"
22
+ },
23
+ "contextHint": "Verify IMPL_PLAN.md against requirements, check for missing details, conflicts, and quality gates"
24
+ },
25
+ {
26
+ "cmd": "/workflow:execute",
27
+ "unit": "verified-planning-execution",
28
+ "execution": {
29
+ "type": "slash-command",
30
+ "mode": "async"
31
+ },
32
+ "contextHint": "Execute implementation based on verified plan. Resume from planning session with all context preserved."
33
+ },
34
+ {
35
+ "cmd": "/workflow:review-session-cycle",
36
+ "unit": "code-review",
37
+ "execution": {
38
+ "type": "slash-command",
39
+ "mode": "mainprocess"
40
+ },
41
+ "contextHint": "Perform multi-dimensional code review across correctness, security, performance, maintainability. Reference execution session for full code context."
42
+ },
43
+ {
44
+ "cmd": "/workflow:review-cycle-fix",
45
+ "unit": "code-review",
46
+ "execution": {
47
+ "type": "slash-command",
48
+ "mode": "mainprocess"
49
+ },
50
+ "contextHint": "Fix issues identified in review findings with prioritization by severity levels"
51
+ },
52
+ {
53
+ "cmd": "/workflow:test-fix-gen",
54
+ "unit": "test-validation",
55
+ "execution": {
56
+ "type": "slash-command",
57
+ "mode": "mainprocess"
58
+ },
59
+ "contextHint": "Generate comprehensive test tasks for the implementation with coverage analysis"
60
+ },
61
+ {
62
+ "cmd": "/workflow:test-cycle-execute",
63
+ "unit": "test-validation",
64
+ "execution": {
65
+ "type": "slash-command",
66
+ "mode": "async"
67
+ },
68
+ "contextHint": "Execute iterative test-fix cycle until pass rate >= 95%"
69
+ }
70
+ ]
71
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "debug",
3
+ "description": "Hypothesis-driven debugging with documentation - systematic troubleshooting and logging",
4
+ "level": 3,
5
+ "steps": [
6
+ {
7
+ "cmd": "/workflow:debug-with-file",
8
+ "args": "\"{{goal}}\"",
9
+ "execution": {
10
+ "type": "slash-command",
11
+ "mode": "mainprocess"
12
+ },
13
+ "contextHint": "Systematic debugging with hypothesis formation and verification. Generate understanding.md with root cause analysis and fix recommendations"
14
+ }
15
+ ]
16
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "docs",
3
+ "description": "Documentation generation workflow",
4
+ "level": 2,
5
+ "steps": [
6
+ {
7
+ "cmd": "/workflow:lite-plan",
8
+ "args": "\"{{goal}}\"",
9
+ "unit": "quick-documentation",
10
+ "execution": {
11
+ "type": "slash-command",
12
+ "mode": "mainprocess"
13
+ },
14
+ "contextHint": "Plan documentation structure and content organization"
15
+ },
16
+ {
17
+ "cmd": "/workflow:lite-execute",
18
+ "args": "--in-memory",
19
+ "unit": "quick-documentation",
20
+ "execution": {
21
+ "type": "slash-command",
22
+ "mode": "async"
23
+ },
24
+ "contextHint": "Execute documentation generation from plan"
25
+ }
26
+ ]
27
+ }
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "full",
3
+ "description": "Comprehensive workflow - brainstorm exploration, planning verification, execution, and testing",
4
+ "level": 4,
5
+ "steps": [
6
+ {
7
+ "cmd": "/workflow:brainstorm:auto-parallel",
8
+ "args": "\"{{goal}}\"",
9
+ "execution": {
10
+ "type": "slash-command",
11
+ "mode": "mainprocess"
12
+ },
13
+ "contextHint": "Multi-perspective exploration of requirements and possible approaches"
14
+ },
15
+ {
16
+ "cmd": "/workflow:plan",
17
+ "unit": "verified-planning-execution",
18
+ "execution": {
19
+ "type": "slash-command",
20
+ "mode": "mainprocess"
21
+ },
22
+ "contextHint": "Create detailed implementation plan based on brainstorm insights"
23
+ },
24
+ {
25
+ "cmd": "/workflow:plan-verify",
26
+ "unit": "verified-planning-execution",
27
+ "execution": {
28
+ "type": "slash-command",
29
+ "mode": "mainprocess"
30
+ },
31
+ "contextHint": "Verify plan quality and completeness"
32
+ },
33
+ {
34
+ "cmd": "/workflow:execute",
35
+ "unit": "verified-planning-execution",
36
+ "execution": {
37
+ "type": "slash-command",
38
+ "mode": "async"
39
+ },
40
+ "contextHint": "Execute implementation from verified plan"
41
+ },
42
+ {
43
+ "cmd": "/workflow:test-fix-gen",
44
+ "unit": "test-validation",
45
+ "execution": {
46
+ "type": "slash-command",
47
+ "mode": "mainprocess"
48
+ },
49
+ "contextHint": "Generate comprehensive test tasks"
50
+ },
51
+ {
52
+ "cmd": "/workflow:test-cycle-execute",
53
+ "unit": "test-validation",
54
+ "execution": {
55
+ "type": "slash-command",
56
+ "mode": "async"
57
+ },
58
+ "contextHint": "Execute test-fix cycle until pass rate >= 95%"
59
+ }
60
+ ]
61
+ }
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "issue",
3
+ "description": "Issue workflow - discover issues, create plans, queue execution, and resolve",
4
+ "level": "issue",
5
+ "steps": [
6
+ {
7
+ "cmd": "/workflow:issue:discover",
8
+ "execution": {
9
+ "type": "slash-command",
10
+ "mode": "mainprocess"
11
+ },
12
+ "contextHint": "Discover pending issues from codebase for potential fixes"
13
+ },
14
+ {
15
+ "cmd": "/workflow:issue:plan",
16
+ "args": "--all-pending",
17
+ "unit": "issue-workflow",
18
+ "execution": {
19
+ "type": "slash-command",
20
+ "mode": "mainprocess"
21
+ },
22
+ "contextHint": "Create execution plans for all discovered pending issues"
23
+ },
24
+ {
25
+ "cmd": "/workflow:issue:queue",
26
+ "unit": "issue-workflow",
27
+ "execution": {
28
+ "type": "slash-command",
29
+ "mode": "mainprocess"
30
+ },
31
+ "contextHint": "Build execution queue with issue prioritization and dependencies"
32
+ },
33
+ {
34
+ "cmd": "/workflow:issue:execute",
35
+ "unit": "issue-workflow",
36
+ "execution": {
37
+ "type": "slash-command",
38
+ "mode": "async"
39
+ },
40
+ "contextHint": "Execute issues from queue with state tracking and completion reporting"
41
+ }
42
+ ]
43
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "lite-lite-lite",
3
+ "description": "Ultra-lightweight for immediate simple tasks - minimal overhead, direct execution",
4
+ "level": 1,
5
+ "steps": [
6
+ {
7
+ "cmd": "/workflow:lite-lite-lite",
8
+ "args": "\"{{goal}}\"",
9
+ "execution": {
10
+ "type": "slash-command",
11
+ "mode": "async"
12
+ },
13
+ "contextHint": "Direct task execution with minimal analysis and zero documentation overhead"
14
+ }
15
+ ]
16
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "multi-cli-plan",
3
+ "description": "Multi-perspective planning with cross-tool verification and execution",
4
+ "level": 3,
5
+ "steps": [
6
+ {
7
+ "cmd": "/workflow:multi-cli-plan",
8
+ "args": "\"{{goal}}\"",
9
+ "unit": "multi-cli-planning",
10
+ "execution": {
11
+ "type": "slash-command",
12
+ "mode": "mainprocess"
13
+ },
14
+ "contextHint": "Multi-perspective analysis comparing different implementation approaches with trade-off analysis"
15
+ },
16
+ {
17
+ "cmd": "/workflow:lite-execute",
18
+ "args": "--in-memory",
19
+ "unit": "multi-cli-planning",
20
+ "execution": {
21
+ "type": "slash-command",
22
+ "mode": "async"
23
+ },
24
+ "contextHint": "Execute best approach selected from multi-perspective analysis"
25
+ },
26
+ {
27
+ "cmd": "/workflow:test-fix-gen",
28
+ "unit": "test-validation",
29
+ "optional": true,
30
+ "execution": {
31
+ "type": "slash-command",
32
+ "mode": "mainprocess"
33
+ },
34
+ "contextHint": "Generate test tasks for the implementation"
35
+ },
36
+ {
37
+ "cmd": "/workflow:test-cycle-execute",
38
+ "unit": "test-validation",
39
+ "optional": true,
40
+ "execution": {
41
+ "type": "slash-command",
42
+ "mode": "async"
43
+ },
44
+ "contextHint": "Execute test-fix cycle until pass rate >= 95%"
45
+ }
46
+ ]
47
+ }
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "rapid-to-issue",
3
+ "description": "Bridge lite workflow to issue workflow - convert simple plan to structured issue execution",
4
+ "level": 2.5,
5
+ "steps": [
6
+ {
7
+ "cmd": "/workflow:lite-plan",
8
+ "args": "\"{{goal}}\"",
9
+ "unit": "rapid-to-issue",
10
+ "execution": {
11
+ "type": "slash-command",
12
+ "mode": "mainprocess"
13
+ },
14
+ "contextHint": "Create lightweight plan for the task"
15
+ },
16
+ {
17
+ "cmd": "/workflow:issue:convert-to-plan",
18
+ "args": "--latest-lite-plan -y",
19
+ "unit": "rapid-to-issue",
20
+ "execution": {
21
+ "type": "slash-command",
22
+ "mode": "mainprocess"
23
+ },
24
+ "contextHint": "Convert lite plan to structured issue plan"
25
+ },
26
+ {
27
+ "cmd": "/workflow:issue:queue",
28
+ "unit": "rapid-to-issue",
29
+ "execution": {
30
+ "type": "slash-command",
31
+ "mode": "mainprocess"
32
+ },
33
+ "contextHint": "Build execution queue from converted plan"
34
+ },
35
+ {
36
+ "cmd": "/workflow:issue:execute",
37
+ "args": "--queue auto",
38
+ "unit": "rapid-to-issue",
39
+ "execution": {
40
+ "type": "slash-command",
41
+ "mode": "async"
42
+ },
43
+ "contextHint": "Execute issues from queue with state tracking"
44
+ }
45
+ ]
46
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "rapid",
3
+ "description": "Quick implementation - lightweight plan and immediate execution for simple features",
4
+ "level": 2,
5
+ "steps": [
6
+ {
7
+ "cmd": "/workflow:lite-plan",
8
+ "args": "\"{{goal}}\"",
9
+ "unit": "quick-implementation",
10
+ "execution": {
11
+ "type": "slash-command",
12
+ "mode": "mainprocess"
13
+ },
14
+ "contextHint": "Analyze requirements and create a lightweight implementation plan with key decisions and file structure"
15
+ },
16
+ {
17
+ "cmd": "/workflow:lite-execute",
18
+ "args": "--in-memory",
19
+ "unit": "quick-implementation",
20
+ "execution": {
21
+ "type": "slash-command",
22
+ "mode": "async"
23
+ },
24
+ "contextHint": "Use the plan from previous step to implement code. Execute against in-memory state."
25
+ },
26
+ {
27
+ "cmd": "/workflow:test-fix-gen",
28
+ "unit": "test-validation",
29
+ "optional": true,
30
+ "execution": {
31
+ "type": "slash-command",
32
+ "mode": "mainprocess"
33
+ },
34
+ "contextHint": "Generate test tasks from the implementation session"
35
+ },
36
+ {
37
+ "cmd": "/workflow:test-cycle-execute",
38
+ "unit": "test-validation",
39
+ "optional": true,
40
+ "execution": {
41
+ "type": "slash-command",
42
+ "mode": "async"
43
+ },
44
+ "contextHint": "Execute test-fix cycle until all tests pass"
45
+ }
46
+ ]
47
+ }
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "review",
3
+ "description": "Code review workflow - multi-dimensional review, fix issues, and test validation",
4
+ "level": 3,
5
+ "steps": [
6
+ {
7
+ "cmd": "/workflow:review-session-cycle",
8
+ "unit": "code-review",
9
+ "execution": {
10
+ "type": "slash-command",
11
+ "mode": "mainprocess"
12
+ },
13
+ "contextHint": "Perform comprehensive multi-dimensional code review across correctness, security, performance, maintainability dimensions"
14
+ },
15
+ {
16
+ "cmd": "/workflow:review-cycle-fix",
17
+ "unit": "code-review",
18
+ "execution": {
19
+ "type": "slash-command",
20
+ "mode": "mainprocess"
21
+ },
22
+ "contextHint": "Fix all review findings prioritized by severity level (critical → high → medium → low)"
23
+ },
24
+ {
25
+ "cmd": "/workflow:test-fix-gen",
26
+ "unit": "test-validation",
27
+ "execution": {
28
+ "type": "slash-command",
29
+ "mode": "mainprocess"
30
+ },
31
+ "contextHint": "Generate test tasks for fixed code with coverage analysis"
32
+ },
33
+ {
34
+ "cmd": "/workflow:test-cycle-execute",
35
+ "unit": "test-validation",
36
+ "execution": {
37
+ "type": "slash-command",
38
+ "mode": "async"
39
+ },
40
+ "contextHint": "Execute iterative test-fix cycle until pass rate >= 95%"
41
+ }
42
+ ]
43
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "tdd",
3
+ "description": "Test-driven development - write tests first, implement to pass tests, verify Red-Green-Refactor cycles",
4
+ "level": 3,
5
+ "steps": [
6
+ {
7
+ "cmd": "/workflow:tdd-plan",
8
+ "args": "\"{{goal}}\"",
9
+ "unit": "tdd-planning-execution",
10
+ "execution": {
11
+ "type": "slash-command",
12
+ "mode": "mainprocess"
13
+ },
14
+ "contextHint": "Create TDD task plan with Red-Green-Refactor cycles, test specifications, and implementation strategy"
15
+ },
16
+ {
17
+ "cmd": "/workflow:execute",
18
+ "unit": "tdd-planning-execution",
19
+ "execution": {
20
+ "type": "slash-command",
21
+ "mode": "async"
22
+ },
23
+ "contextHint": "Execute TDD tasks following Red-Green-Refactor workflow with test-first development"
24
+ },
25
+ {
26
+ "cmd": "/workflow:tdd-verify",
27
+ "execution": {
28
+ "type": "slash-command",
29
+ "mode": "mainprocess"
30
+ },
31
+ "contextHint": "Verify TDD cycle compliance, test coverage, and code quality against Red-Green-Refactor principles"
32
+ }
33
+ ]
34
+ }
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "test-fix",
3
+ "description": "Fix failing tests - generate test tasks and execute iterative test-fix cycle",
4
+ "level": 2,
5
+ "steps": [
6
+ {
7
+ "cmd": "/workflow:test-fix-gen",
8
+ "args": "\"{{goal}}\"",
9
+ "unit": "test-validation",
10
+ "execution": {
11
+ "type": "slash-command",
12
+ "mode": "mainprocess"
13
+ },
14
+ "contextHint": "Analyze failing tests, generate targeted test tasks with root cause and fix strategy"
15
+ },
16
+ {
17
+ "cmd": "/workflow:test-cycle-execute",
18
+ "unit": "test-validation",
19
+ "execution": {
20
+ "type": "slash-command",
21
+ "mode": "async"
22
+ },
23
+ "contextHint": "Execute iterative test-fix cycle with pass rate tracking until >= 95% pass rate achieved"
24
+ }
25
+ ]
26
+ }