@claude-flow/cli 3.7.0-alpha.75 → 3.7.0-alpha.76
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.
- package/.claude/skills/agentdb-advanced/SKILL.md +550 -0
- package/.claude/skills/agentdb-learning/SKILL.md +545 -0
- package/.claude/skills/agentdb-memory-patterns/SKILL.md +339 -0
- package/.claude/skills/agentdb-optimization/SKILL.md +509 -0
- package/.claude/skills/agentdb-vector-search/SKILL.md +339 -0
- package/.claude/skills/browser/SKILL.md +204 -0
- package/.claude/skills/dual-mode/README.md +71 -0
- package/.claude/skills/dual-mode/dual-collect.md +103 -0
- package/.claude/skills/dual-mode/dual-coordinate.md +85 -0
- package/.claude/skills/dual-mode/dual-spawn.md +81 -0
- package/.claude/skills/flow-nexus-neural/SKILL.md +727 -0
- package/.claude/skills/flow-nexus-platform/SKILL.md +1154 -0
- package/.claude/skills/flow-nexus-swarm/SKILL.md +604 -0
- package/.claude/skills/github-code-review/SKILL.md +1125 -0
- package/.claude/skills/github-multi-repo/SKILL.md +862 -0
- package/.claude/skills/github-project-management/SKILL.md +1262 -0
- package/.claude/skills/github-release-management/SKILL.md +1064 -0
- package/.claude/skills/github-workflow-automation/SKILL.md +1047 -0
- package/.claude/skills/hooks-automation/SKILL.md +1201 -0
- package/.claude/skills/pair-programming/SKILL.md +1202 -0
- package/.claude/skills/reasoningbank-agentdb/SKILL.md +446 -0
- package/.claude/skills/reasoningbank-intelligence/SKILL.md +201 -0
- package/.claude/skills/skill-builder/SKILL.md +910 -0
- package/.claude/skills/sparc-methodology/SKILL.md +1106 -0
- package/.claude/skills/stream-chain/SKILL.md +560 -0
- package/.claude/skills/swarm-advanced/SKILL.md +970 -0
- package/.claude/skills/swarm-orchestration/SKILL.md +179 -0
- package/.claude/skills/v3-cli-modernization/SKILL.md +872 -0
- package/.claude/skills/v3-core-implementation/SKILL.md +797 -0
- package/.claude/skills/v3-ddd-architecture/SKILL.md +442 -0
- package/.claude/skills/v3-integration-deep/SKILL.md +241 -0
- package/.claude/skills/v3-mcp-optimization/SKILL.md +777 -0
- package/.claude/skills/v3-memory-unification/SKILL.md +174 -0
- package/.claude/skills/v3-performance-optimization/SKILL.md +390 -0
- package/.claude/skills/v3-security-overhaul/SKILL.md +82 -0
- package/.claude/skills/v3-swarm-coordination/SKILL.md +340 -0
- package/.claude/skills/verification-quality/SKILL.md +691 -0
- package/dist/src/commands/init.d.ts.map +1 -1
- package/dist/src/commands/init.js +14 -0
- package/dist/src/commands/init.js.map +1 -1
- package/dist/src/init/executor.d.ts.map +1 -1
- package/dist/src/init/executor.js +41 -0
- package/dist/src/init/executor.js.map +1 -1
- package/dist/src/init/types.d.ts +23 -0
- package/dist/src/init/types.d.ts.map +1 -1
- package/dist/src/init/types.js +18 -5
- package/dist/src/init/types.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/.claude/agents/core/coder.md +0 -453
- package/.claude/agents/core/researcher.md +0 -369
- package/.claude/agents/core/reviewer.md +0 -520
- package/.claude/agents/core/tester.md +0 -512
- package/.claude/agents/goal/goal-planner.md +0 -73
- package/.claude/agents/v3/adr-architect.md +0 -184
- package/.claude/agents/v3/memory-specialist.md +0 -995
- package/.claude/agents/v3/security-auditor.md +0 -771
- package/.claude/agents/v3/sparc-orchestrator.md +0 -182
- package/.claude/commands/flow-nexus/app-store.md +0 -124
- package/.claude/commands/flow-nexus/challenges.md +0 -120
- package/.claude/commands/flow-nexus/login-registration.md +0 -65
- package/.claude/commands/flow-nexus/neural-network.md +0 -134
- package/.claude/commands/flow-nexus/payments.md +0 -116
- package/.claude/commands/flow-nexus/sandbox.md +0 -83
- package/.claude/commands/flow-nexus/swarm.md +0 -87
- package/.claude/commands/flow-nexus/user-tools.md +0 -152
- package/.claude/commands/flow-nexus/workflow.md +0 -115
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dual-coordinate
|
|
3
|
+
description: Coordinate hybrid Claude Code + Codex workflows
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Dual Coordinate Skill
|
|
7
|
+
|
|
8
|
+
Coordinate hybrid workflows that use Claude Code for interactive reasoning and Codex for parallel background execution.
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
/dual-coordinate --workflow <workflow-name> --task "<task-description>"
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Parameters
|
|
17
|
+
|
|
18
|
+
| Parameter | Default | Description |
|
|
19
|
+
|-----------|---------|-------------|
|
|
20
|
+
| `--workflow` | hybrid_development | Workflow template to use |
|
|
21
|
+
| `--task` | required | Task description |
|
|
22
|
+
| `--interactive-first` | true | Start with interactive phase |
|
|
23
|
+
|
|
24
|
+
## Available Workflows
|
|
25
|
+
|
|
26
|
+
### hybrid_development
|
|
27
|
+
Design interactively, implement in parallel, review interactively.
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
/dual-coordinate --workflow hybrid_development --task "Build user authentication"
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### parallel_feature
|
|
34
|
+
Spawn multiple Codex workers for parallel implementation.
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
/dual-coordinate --workflow parallel_feature --task "Implement REST API"
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### design_and_execute
|
|
41
|
+
Interactive design phase, then batch execution.
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
/dual-coordinate --workflow design_and_execute --task "Refactor auth module"
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## How It Works
|
|
48
|
+
|
|
49
|
+
1. **Routing Decision**: Analyzes task to determine optimal platform split
|
|
50
|
+
2. **Interactive Phase**: Complex reasoning in Claude Code
|
|
51
|
+
3. **Parallel Phase**: Spawns Codex workers for execution
|
|
52
|
+
4. **Review Phase**: Returns to Claude Code for quality review
|
|
53
|
+
5. **Result Collection**: Aggregates worker results from memory
|
|
54
|
+
|
|
55
|
+
## Generated Commands
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
# Phase 1: Interactive (Claude Code)
|
|
59
|
+
# [Current session handles design/planning]
|
|
60
|
+
|
|
61
|
+
# Phase 2: Parallel (Codex)
|
|
62
|
+
{{#each workers}}
|
|
63
|
+
claude -p "{{this.task}}" --session-id {{this.id}} &
|
|
64
|
+
{{/each}}
|
|
65
|
+
wait
|
|
66
|
+
|
|
67
|
+
# Phase 3: Review (Claude Code)
|
|
68
|
+
npx claude-flow@v3alpha memory list --namespace results
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## Example: Full Hybrid Workflow
|
|
72
|
+
|
|
73
|
+
```
|
|
74
|
+
/dual-coordinate --workflow hybrid_development --task "Build user profile API"
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
This will:
|
|
78
|
+
1. **Design Phase** (Interactive): Discuss requirements, design endpoints, plan implementation
|
|
79
|
+
2. **Implement Phase** (Headless): Spawn coders, testers, docs writers in parallel
|
|
80
|
+
3. **Review Phase** (Interactive): Review implementation, discuss improvements
|
|
81
|
+
|
|
82
|
+
## Related Skills
|
|
83
|
+
|
|
84
|
+
- `/dual-spawn` - Spawn headless workers only
|
|
85
|
+
- `/dual-collect` - Collect results from workers
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: dual-spawn
|
|
3
|
+
description: Spawn headless Codex workers from Claude Code for parallel execution
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Dual Spawn Skill
|
|
7
|
+
|
|
8
|
+
Spawn multiple headless Codex workers to run tasks in parallel while you continue working interactively.
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
|
|
12
|
+
```
|
|
13
|
+
/dual-spawn "<task>" --workers <count> [--type <worker-type>]
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Parameters
|
|
17
|
+
|
|
18
|
+
| Parameter | Default | Description |
|
|
19
|
+
|-----------|---------|-------------|
|
|
20
|
+
| `task` | required | Task description for workers |
|
|
21
|
+
| `--workers` | 3 | Number of parallel workers |
|
|
22
|
+
| `--type` | coder | Worker type: coder, tester, docs, reviewer |
|
|
23
|
+
| `--wait` | false | Wait for completion |
|
|
24
|
+
|
|
25
|
+
## Examples
|
|
26
|
+
|
|
27
|
+
### Spawn Implementation Workers
|
|
28
|
+
```
|
|
29
|
+
/dual-spawn "Implement user authentication" --workers 2 --type coder
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Spawn Test Writers
|
|
33
|
+
```
|
|
34
|
+
/dual-spawn "Write comprehensive tests for auth module" --workers 2 --type tester
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### Spawn Documentation Workers
|
|
38
|
+
```
|
|
39
|
+
/dual-spawn "Document all API endpoints" --workers 1 --type docs
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## How It Works
|
|
43
|
+
|
|
44
|
+
1. Initializes shared swarm coordination
|
|
45
|
+
2. Spawns headless Codex workers with `claude -p`
|
|
46
|
+
3. Each worker searches memory for relevant patterns
|
|
47
|
+
4. Workers execute in parallel
|
|
48
|
+
5. Results stored in shared memory
|
|
49
|
+
|
|
50
|
+
## Generated Commands
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
# Initialize coordination
|
|
54
|
+
npx claude-flow swarm init --topology hierarchical --max-agents {{workers}}
|
|
55
|
+
|
|
56
|
+
# Spawn workers
|
|
57
|
+
{{#each workers}}
|
|
58
|
+
claude -p "
|
|
59
|
+
You are worker-{{@index}}.
|
|
60
|
+
TASK: {{task}}
|
|
61
|
+
|
|
62
|
+
1. Search: memory_search(query='{{task_keywords}}')
|
|
63
|
+
2. Execute your assigned work
|
|
64
|
+
3. Store: memory_store(key='result-{{@index}}', namespace='results', upsert=true)
|
|
65
|
+
" --session-id task-{{@index}} &
|
|
66
|
+
{{/each}}
|
|
67
|
+
|
|
68
|
+
echo "Spawned {{workers}} headless workers"
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## After Spawning
|
|
72
|
+
|
|
73
|
+
Use `/dual-collect` to gather results:
|
|
74
|
+
```
|
|
75
|
+
/dual-collect --namespace results
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Or check manually:
|
|
79
|
+
```bash
|
|
80
|
+
npx claude-flow memory list --namespace results
|
|
81
|
+
```
|