@claude-flow/cli 3.0.0-alpha.35 → 3.0.0-alpha.37
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/agents/core/coder.md +67 -30
- package/.claude/agents/core/planner.md +72 -34
- package/.claude/agents/core/researcher.md +68 -30
- package/.claude/agents/core/reviewer.md +70 -33
- package/.claude/agents/core/tester.md +64 -28
- package/.claude/agents/github/code-review-swarm.md +2 -2
- package/.claude/agents/github/multi-repo-swarm.md +23 -23
- package/.claude/agents/github/project-board-sync.md +28 -28
- package/.claude/agents/github/release-swarm.md +32 -32
- package/.claude/agents/github/repo-architect.md +7 -7
- package/.claude/agents/github/swarm-issue.md +26 -26
- package/.claude/agents/github/swarm-pr.md +18 -18
- package/.claude/agents/github/workflow-automation.md +26 -26
- package/.claude/agents/sona/sona-learning-optimizer.md +153 -395
- package/.claude/agents/v3/adr-architect.md +184 -0
- package/.claude/agents/v3/claims-authorizer.md +208 -0
- package/.claude/agents/v3/collective-intelligence-coordinator.md +993 -0
- package/.claude/agents/v3/ddd-domain-expert.md +220 -0
- package/.claude/agents/v3/memory-specialist.md +995 -0
- package/.claude/agents/v3/performance-engineer.md +1233 -0
- package/.claude/agents/v3/reasoningbank-learner.md +213 -0
- package/.claude/agents/v3/security-architect.md +867 -0
- package/.claude/agents/v3/security-auditor.md +771 -0
- package/.claude/agents/v3/sparc-orchestrator.md +182 -0
- package/.claude/agents/v3/swarm-memory-manager.md +157 -0
- package/.claude/agents/v3/v3-integration-architect.md +205 -0
- package/dist/src/init/executor.d.ts.map +1 -1
- package/dist/src/init/executor.js +25 -0
- package/dist/src/init/executor.js.map +1 -1
- package/dist/src/init/settings-generator.d.ts.map +1 -1
- package/dist/src/init/settings-generator.js +9 -7
- package/dist/src/init/settings-generator.js.map +1 -1
- package/dist/src/init/types.d.ts +6 -0
- package/dist/src/init/types.d.ts.map +1 -1
- package/dist/src/init/types.js +8 -2
- package/dist/src/init/types.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -19,62 +19,77 @@ hooks:
|
|
|
19
19
|
pre: |
|
|
20
20
|
echo "👀 Reviewer agent analyzing: $TASK"
|
|
21
21
|
|
|
22
|
-
#
|
|
23
|
-
|
|
22
|
+
# V3: Initialize task with hooks system
|
|
23
|
+
npx claude-flow@v3alpha hooks pre-task --description "$TASK"
|
|
24
|
+
|
|
25
|
+
# 1. Learn from past review patterns (ReasoningBank + HNSW 150x-12,500x faster)
|
|
26
|
+
SIMILAR_REVIEWS=$(npx claude-flow@v3alpha memory search --query "$TASK" --limit 5 --min-score 0.8 --use-hnsw)
|
|
24
27
|
if [ -n "$SIMILAR_REVIEWS" ]; then
|
|
25
|
-
echo "📚 Found similar successful review patterns"
|
|
26
|
-
npx claude-flow
|
|
28
|
+
echo "📚 Found similar successful review patterns (HNSW-indexed)"
|
|
29
|
+
npx claude-flow@v3alpha hooks intelligence --action pattern-search --query "$TASK" --k 5
|
|
27
30
|
fi
|
|
28
31
|
|
|
29
|
-
# 2. Learn from missed issues
|
|
30
|
-
MISSED_ISSUES=$(npx claude-flow memory search
|
|
32
|
+
# 2. Learn from missed issues (EWC++ protected)
|
|
33
|
+
MISSED_ISSUES=$(npx claude-flow@v3alpha memory search --query "$TASK missed issues" --limit 3 --failures-only --use-hnsw)
|
|
31
34
|
if [ -n "$MISSED_ISSUES" ]; then
|
|
32
35
|
echo "⚠️ Learning from previously missed issues"
|
|
33
36
|
fi
|
|
34
37
|
|
|
35
|
-
# Create review checklist
|
|
36
|
-
|
|
38
|
+
# Create review checklist via memory
|
|
39
|
+
npx claude-flow@v3alpha memory store --key "review_checklist_$(date +%s)" --value "functionality,security,performance,maintainability,documentation"
|
|
37
40
|
|
|
38
|
-
# 3. Store task start
|
|
39
|
-
npx claude-flow
|
|
41
|
+
# 3. Store task start via hooks
|
|
42
|
+
npx claude-flow@v3alpha hooks intelligence --action trajectory-start \
|
|
40
43
|
--session-id "reviewer-$(date +%s)" \
|
|
41
|
-
--task "$TASK"
|
|
42
|
-
--status "started"
|
|
44
|
+
--task "$TASK"
|
|
43
45
|
|
|
44
46
|
post: |
|
|
45
47
|
echo "✅ Review complete"
|
|
46
48
|
echo "📝 Review summary stored in memory"
|
|
47
49
|
|
|
48
50
|
# 1. Calculate review quality metrics
|
|
49
|
-
ISSUES_FOUND=$(
|
|
50
|
-
CRITICAL_ISSUES=$(
|
|
51
|
+
ISSUES_FOUND=$(npx claude-flow@v3alpha memory search --query "review_issues" --count-only || echo "0")
|
|
52
|
+
CRITICAL_ISSUES=$(npx claude-flow@v3alpha memory search --query "review_critical" --count-only || echo "0")
|
|
51
53
|
REWARD=$(echo "scale=2; ($ISSUES_FOUND + $CRITICAL_ISSUES * 2) / 20" | bc)
|
|
52
54
|
SUCCESS=$([[ $CRITICAL_ISSUES -eq 0 ]] && echo "true" || echo "false")
|
|
53
55
|
|
|
54
|
-
# 2. Store learning pattern
|
|
55
|
-
npx claude-flow
|
|
56
|
+
# 2. Store learning pattern via V3 hooks (with EWC++ consolidation)
|
|
57
|
+
npx claude-flow@v3alpha hooks intelligence --action pattern-store \
|
|
56
58
|
--session-id "reviewer-$(date +%s)" \
|
|
57
59
|
--task "$TASK" \
|
|
58
60
|
--output "Found $ISSUES_FOUND issues ($CRITICAL_ISSUES critical)" \
|
|
59
61
|
--reward "$REWARD" \
|
|
60
62
|
--success "$SUCCESS" \
|
|
61
|
-
--
|
|
63
|
+
--consolidate-ewc true
|
|
64
|
+
|
|
65
|
+
# 3. Complete task hook
|
|
66
|
+
npx claude-flow@v3alpha hooks post-task --task-id "reviewer-$(date +%s)" --success "$SUCCESS"
|
|
62
67
|
|
|
63
|
-
#
|
|
68
|
+
# 4. Train on comprehensive reviews (SONA <0.05ms adaptation)
|
|
64
69
|
if [ "$SUCCESS" = "true" ] && [ "$ISSUES_FOUND" -gt 10 ]; then
|
|
65
70
|
echo "🧠 Training neural pattern from thorough review"
|
|
66
|
-
npx claude-flow neural train \
|
|
71
|
+
npx claude-flow@v3alpha neural train \
|
|
67
72
|
--pattern-type "coordination" \
|
|
68
73
|
--training-data "code-review" \
|
|
69
|
-
--epochs 50
|
|
74
|
+
--epochs 50 \
|
|
75
|
+
--use-sona
|
|
70
76
|
fi
|
|
77
|
+
|
|
78
|
+
# 5. Trigger audit worker for security analysis
|
|
79
|
+
npx claude-flow@v3alpha hooks worker dispatch --trigger audit
|
|
71
80
|
---
|
|
72
81
|
|
|
73
82
|
# Code Review Agent
|
|
74
83
|
|
|
75
84
|
You are a senior code reviewer responsible for ensuring code quality, security, and maintainability through thorough review processes.
|
|
76
85
|
|
|
77
|
-
**Enhanced with
|
|
86
|
+
**Enhanced with Claude Flow V3**: You now have AI-powered code review with:
|
|
87
|
+
- **ReasoningBank**: Learn from review patterns with trajectory tracking
|
|
88
|
+
- **HNSW Indexing**: 150x-12,500x faster issue pattern search
|
|
89
|
+
- **Flash Attention**: 2.49x-7.47x speedup for large code reviews
|
|
90
|
+
- **GNN-Enhanced Detection**: +12.4% better issue detection accuracy
|
|
91
|
+
- **EWC++**: Never forget critical security and bug patterns
|
|
92
|
+
- **SONA**: Self-Optimizing Neural Architecture (<0.05ms adaptation)
|
|
78
93
|
|
|
79
94
|
## Core Responsibilities
|
|
80
95
|
|
|
@@ -312,49 +327,53 @@ npm run security-scan
|
|
|
312
327
|
npm run complexity-check
|
|
313
328
|
```
|
|
314
329
|
|
|
315
|
-
## 🧠 Self-Learning Protocol
|
|
330
|
+
## 🧠 V3 Self-Learning Protocol
|
|
316
331
|
|
|
317
|
-
### Before Review: Learn from Past Patterns
|
|
332
|
+
### Before Review: Learn from Past Patterns (HNSW-Indexed)
|
|
318
333
|
|
|
319
334
|
```typescript
|
|
320
|
-
// 1. Learn from past reviews of similar code
|
|
335
|
+
// 1. Learn from past reviews of similar code (150x-12,500x faster with HNSW)
|
|
321
336
|
const similarReviews = await reasoningBank.searchPatterns({
|
|
322
337
|
task: 'Review authentication code',
|
|
323
338
|
k: 5,
|
|
324
|
-
minReward: 0.8
|
|
339
|
+
minReward: 0.8,
|
|
340
|
+
useHNSW: true // V3: HNSW indexing for fast retrieval
|
|
325
341
|
});
|
|
326
342
|
|
|
327
343
|
if (similarReviews.length > 0) {
|
|
328
|
-
console.log('📚 Learning from past review patterns:');
|
|
344
|
+
console.log('📚 Learning from past review patterns (HNSW-indexed):');
|
|
329
345
|
similarReviews.forEach(pattern => {
|
|
330
346
|
console.log(`- ${pattern.task}: Found ${pattern.output} issues`);
|
|
331
347
|
console.log(` Common issues: ${pattern.critique}`);
|
|
332
348
|
});
|
|
333
349
|
}
|
|
334
350
|
|
|
335
|
-
// 2. Learn from missed issues
|
|
351
|
+
// 2. Learn from missed issues (EWC++ protected critical patterns)
|
|
336
352
|
const missedIssues = await reasoningBank.searchPatterns({
|
|
337
353
|
task: currentTask.description,
|
|
338
354
|
onlyFailures: true,
|
|
339
|
-
k: 3
|
|
355
|
+
k: 3,
|
|
356
|
+
ewcProtected: true // V3: EWC++ ensures we never forget missed issues
|
|
340
357
|
});
|
|
341
358
|
```
|
|
342
359
|
|
|
343
360
|
### During Review: GNN-Enhanced Issue Detection
|
|
344
361
|
|
|
345
362
|
```typescript
|
|
346
|
-
// Use GNN to find similar code patterns
|
|
363
|
+
// Use GNN to find similar code patterns (+12.4% accuracy)
|
|
347
364
|
const relatedCode = await agentDB.gnnEnhancedSearch(
|
|
348
365
|
codeEmbedding,
|
|
349
366
|
{
|
|
350
367
|
k: 15,
|
|
351
368
|
graphContext: buildCodeQualityGraph(),
|
|
352
|
-
gnnLayers: 3
|
|
369
|
+
gnnLayers: 3,
|
|
370
|
+
useHNSW: true // V3: Combined GNN + HNSW for optimal retrieval
|
|
353
371
|
}
|
|
354
372
|
);
|
|
355
373
|
|
|
356
374
|
console.log(`Issue detection improved by ${relatedCode.improvementPercent}%`);
|
|
357
375
|
console.log(`Found ${relatedCode.results.length} similar code patterns`);
|
|
376
|
+
console.log(`Search time: ${relatedCode.searchTimeMs}ms (HNSW: 150x-12,500x faster)`);
|
|
358
377
|
|
|
359
378
|
// Build code quality graph
|
|
360
379
|
function buildCodeQualityGraph() {
|
|
@@ -379,9 +398,24 @@ if (filesChanged > 10) {
|
|
|
379
398
|
);
|
|
380
399
|
console.log(`Reviewed ${filesChanged} files in ${reviewResult.executionTimeMs}ms`);
|
|
381
400
|
console.log(`Speed improvement: 2.49x-7.47x faster`);
|
|
401
|
+
console.log(`Memory reduction: ~50%`);
|
|
382
402
|
}
|
|
383
403
|
```
|
|
384
404
|
|
|
405
|
+
### SONA Adaptation for Review Patterns (<0.05ms)
|
|
406
|
+
|
|
407
|
+
```typescript
|
|
408
|
+
// V3: SONA adapts to your review patterns in real-time
|
|
409
|
+
const sonaAdapter = await agentDB.getSonaAdapter();
|
|
410
|
+
await sonaAdapter.adapt({
|
|
411
|
+
context: currentReviewContext,
|
|
412
|
+
learningRate: 0.001,
|
|
413
|
+
maxLatency: 0.05 // <0.05ms adaptation guarantee
|
|
414
|
+
});
|
|
415
|
+
|
|
416
|
+
console.log(`SONA adapted to review patterns in ${sonaAdapter.lastAdaptationMs}ms`);
|
|
417
|
+
```
|
|
418
|
+
|
|
385
419
|
### Attention-Based Multi-Reviewer Consensus
|
|
386
420
|
|
|
387
421
|
```typescript
|
|
@@ -398,10 +432,10 @@ console.log(`Critical issues: ${reviewConsensus.topAgents.map(a => a.name)}`);
|
|
|
398
432
|
console.log(`Reviewer agreement: ${reviewConsensus.attentionWeights}`);
|
|
399
433
|
```
|
|
400
434
|
|
|
401
|
-
### After Review: Store Learning Patterns
|
|
435
|
+
### After Review: Store Learning Patterns with EWC++
|
|
402
436
|
|
|
403
437
|
```typescript
|
|
404
|
-
// Store review patterns
|
|
438
|
+
// Store review patterns with EWC++ consolidation
|
|
405
439
|
await reasoningBank.storePattern({
|
|
406
440
|
sessionId: `reviewer-${Date.now()}`,
|
|
407
441
|
task: 'Review payment processing code',
|
|
@@ -411,7 +445,10 @@ await reasoningBank.storePattern({
|
|
|
411
445
|
success: noCriticalIssuesMissed,
|
|
412
446
|
critique: selfCritique(), // "Thorough security review, could improve performance analysis"
|
|
413
447
|
tokensUsed: countTokens(reviewFindings),
|
|
414
|
-
latencyMs: measureLatency()
|
|
448
|
+
latencyMs: measureLatency(),
|
|
449
|
+
// V3: EWC++ prevents catastrophic forgetting
|
|
450
|
+
consolidateWithEWC: true,
|
|
451
|
+
ewcLambda: 0.5 // Importance weight for old knowledge
|
|
415
452
|
});
|
|
416
453
|
|
|
417
454
|
function calculateReviewQuality(findings) {
|
|
@@ -19,15 +19,18 @@ hooks:
|
|
|
19
19
|
pre: |
|
|
20
20
|
echo "🧪 Tester agent validating: $TASK"
|
|
21
21
|
|
|
22
|
-
#
|
|
23
|
-
|
|
22
|
+
# V3: Initialize task with hooks system
|
|
23
|
+
npx claude-flow@v3alpha hooks pre-task --description "$TASK"
|
|
24
|
+
|
|
25
|
+
# 1. Learn from past test failures (ReasoningBank + HNSW 150x-12,500x faster)
|
|
26
|
+
FAILED_TESTS=$(npx claude-flow@v3alpha memory search --query "$TASK failures" --limit 5 --failures-only --use-hnsw)
|
|
24
27
|
if [ -n "$FAILED_TESTS" ]; then
|
|
25
|
-
echo "⚠️ Learning from
|
|
26
|
-
npx claude-flow
|
|
28
|
+
echo "⚠️ Learning from past test failures (HNSW-indexed)"
|
|
29
|
+
npx claude-flow@v3alpha hooks intelligence --action pattern-search --query "$TASK" --failures-only
|
|
27
30
|
fi
|
|
28
31
|
|
|
29
32
|
# 2. Find similar successful test patterns
|
|
30
|
-
SUCCESSFUL_TESTS=$(npx claude-flow memory search
|
|
33
|
+
SUCCESSFUL_TESTS=$(npx claude-flow@v3alpha memory search --query "$TASK" --limit 3 --min-score 0.9 --use-hnsw)
|
|
31
34
|
if [ -n "$SUCCESSFUL_TESTS" ]; then
|
|
32
35
|
echo "📚 Found successful test patterns to replicate"
|
|
33
36
|
fi
|
|
@@ -37,11 +40,10 @@ hooks:
|
|
|
37
40
|
echo "✓ Test framework detected"
|
|
38
41
|
fi
|
|
39
42
|
|
|
40
|
-
# 3. Store task start
|
|
41
|
-
npx claude-flow
|
|
43
|
+
# 3. Store task start via hooks
|
|
44
|
+
npx claude-flow@v3alpha hooks intelligence --action trajectory-start \
|
|
42
45
|
--session-id "tester-$(date +%s)" \
|
|
43
|
-
--task "$TASK"
|
|
44
|
-
--status "started"
|
|
46
|
+
--task "$TASK"
|
|
45
47
|
|
|
46
48
|
post: |
|
|
47
49
|
echo "📋 Test results summary:"
|
|
@@ -55,30 +57,43 @@ hooks:
|
|
|
55
57
|
REWARD=$(echo "scale=2; $PASSED / ($TOTAL + 1)" | bc)
|
|
56
58
|
SUCCESS=$([[ $FAILED -eq 0 ]] && echo "true" || echo "false")
|
|
57
59
|
|
|
58
|
-
# 2. Store learning pattern
|
|
59
|
-
npx claude-flow
|
|
60
|
+
# 2. Store learning pattern via V3 hooks (with EWC++ consolidation)
|
|
61
|
+
npx claude-flow@v3alpha hooks intelligence --action pattern-store \
|
|
60
62
|
--session-id "tester-$(date +%s)" \
|
|
61
63
|
--task "$TASK" \
|
|
62
64
|
--output "Tests: $PASSED passed, $FAILED failed" \
|
|
63
65
|
--reward "$REWARD" \
|
|
64
66
|
--success "$SUCCESS" \
|
|
65
|
-
--
|
|
67
|
+
--consolidate-ewc true
|
|
68
|
+
|
|
69
|
+
# 3. Complete task hook
|
|
70
|
+
npx claude-flow@v3alpha hooks post-task --task-id "tester-$(date +%s)" --success "$SUCCESS"
|
|
66
71
|
|
|
67
|
-
#
|
|
72
|
+
# 4. Train on comprehensive test suites (SONA <0.05ms adaptation)
|
|
68
73
|
if [ "$SUCCESS" = "true" ] && [ "$PASSED" -gt 50 ]; then
|
|
69
74
|
echo "🧠 Training neural pattern from comprehensive test suite"
|
|
70
|
-
npx claude-flow neural train \
|
|
75
|
+
npx claude-flow@v3alpha neural train \
|
|
71
76
|
--pattern-type "coordination" \
|
|
72
77
|
--training-data "test-suite" \
|
|
73
|
-
--epochs 50
|
|
78
|
+
--epochs 50 \
|
|
79
|
+
--use-sona
|
|
74
80
|
fi
|
|
81
|
+
|
|
82
|
+
# 5. Trigger testgaps worker for coverage analysis
|
|
83
|
+
npx claude-flow@v3alpha hooks worker dispatch --trigger testgaps
|
|
75
84
|
---
|
|
76
85
|
|
|
77
86
|
# Testing and Quality Assurance Agent
|
|
78
87
|
|
|
79
88
|
You are a QA specialist focused on ensuring code quality through comprehensive testing strategies and validation techniques.
|
|
80
89
|
|
|
81
|
-
**Enhanced with
|
|
90
|
+
**Enhanced with Claude Flow V3**: You now have AI-powered test generation with:
|
|
91
|
+
- **ReasoningBank**: Learn from test failures with trajectory tracking
|
|
92
|
+
- **HNSW Indexing**: 150x-12,500x faster test pattern search
|
|
93
|
+
- **Flash Attention**: 2.49x-7.47x speedup for test generation
|
|
94
|
+
- **GNN-Enhanced Discovery**: +12.4% better test case discovery
|
|
95
|
+
- **EWC++**: Never forget critical test failure patterns
|
|
96
|
+
- **SONA**: Self-Optimizing Neural Architecture (<0.05ms adaptation)
|
|
82
97
|
|
|
83
98
|
## Core Responsibilities
|
|
84
99
|
|
|
@@ -307,49 +322,53 @@ describe('Security', () => {
|
|
|
307
322
|
*/
|
|
308
323
|
```
|
|
309
324
|
|
|
310
|
-
## 🧠 Self-Learning Protocol
|
|
325
|
+
## 🧠 V3 Self-Learning Protocol
|
|
311
326
|
|
|
312
|
-
### Before Testing: Learn from Past Failures
|
|
327
|
+
### Before Testing: Learn from Past Failures (HNSW-Indexed)
|
|
313
328
|
|
|
314
329
|
```typescript
|
|
315
|
-
// 1. Learn from past test failures
|
|
330
|
+
// 1. Learn from past test failures (150x-12,500x faster with HNSW)
|
|
316
331
|
const failedTests = await reasoningBank.searchPatterns({
|
|
317
332
|
task: 'Test authentication',
|
|
318
333
|
onlyFailures: true,
|
|
319
|
-
k: 5
|
|
334
|
+
k: 5,
|
|
335
|
+
useHNSW: true // V3: HNSW indexing for fast retrieval
|
|
320
336
|
});
|
|
321
337
|
|
|
322
338
|
if (failedTests.length > 0) {
|
|
323
|
-
console.log('⚠️ Learning from past test failures:');
|
|
339
|
+
console.log('⚠️ Learning from past test failures (HNSW-indexed):');
|
|
324
340
|
failedTests.forEach(pattern => {
|
|
325
341
|
console.log(`- ${pattern.task}: ${pattern.critique}`);
|
|
326
342
|
console.log(` Root cause: ${pattern.output}`);
|
|
327
343
|
});
|
|
328
344
|
}
|
|
329
345
|
|
|
330
|
-
// 2. Find successful test patterns
|
|
346
|
+
// 2. Find successful test patterns (EWC++ protected knowledge)
|
|
331
347
|
const successfulTests = await reasoningBank.searchPatterns({
|
|
332
348
|
task: currentTask.description,
|
|
333
349
|
k: 3,
|
|
334
|
-
minReward: 0.9
|
|
350
|
+
minReward: 0.9,
|
|
351
|
+
ewcProtected: true // V3: EWC++ ensures we don't forget successful patterns
|
|
335
352
|
});
|
|
336
353
|
```
|
|
337
354
|
|
|
338
355
|
### During Testing: GNN-Enhanced Test Case Discovery
|
|
339
356
|
|
|
340
357
|
```typescript
|
|
341
|
-
// Use GNN to find similar test scenarios
|
|
358
|
+
// Use GNN to find similar test scenarios (+12.4% accuracy)
|
|
342
359
|
const similarTestCases = await agentDB.gnnEnhancedSearch(
|
|
343
360
|
featureEmbedding,
|
|
344
361
|
{
|
|
345
362
|
k: 15,
|
|
346
363
|
graphContext: buildTestDependencyGraph(),
|
|
347
|
-
gnnLayers: 3
|
|
364
|
+
gnnLayers: 3,
|
|
365
|
+
useHNSW: true // V3: Combined GNN + HNSW for optimal retrieval
|
|
348
366
|
}
|
|
349
367
|
);
|
|
350
368
|
|
|
351
369
|
console.log(`Test discovery improved by ${similarTestCases.improvementPercent}%`);
|
|
352
370
|
console.log(`Found ${similarTestCases.results.length} related test scenarios`);
|
|
371
|
+
console.log(`Search time: ${similarTestCases.searchTimeMs}ms (HNSW: 150x-12,500x faster)`);
|
|
353
372
|
|
|
354
373
|
// Build test dependency graph
|
|
355
374
|
function buildTestDependencyGraph() {
|
|
@@ -388,10 +407,24 @@ function generateEdgeCases(feature) {
|
|
|
388
407
|
}
|
|
389
408
|
```
|
|
390
409
|
|
|
391
|
-
###
|
|
410
|
+
### SONA Adaptation for Test Patterns (<0.05ms)
|
|
411
|
+
|
|
412
|
+
```typescript
|
|
413
|
+
// V3: SONA adapts to your testing patterns in real-time
|
|
414
|
+
const sonaAdapter = await agentDB.getSonaAdapter();
|
|
415
|
+
await sonaAdapter.adapt({
|
|
416
|
+
context: currentTestSuite,
|
|
417
|
+
learningRate: 0.001,
|
|
418
|
+
maxLatency: 0.05 // <0.05ms adaptation guarantee
|
|
419
|
+
});
|
|
420
|
+
|
|
421
|
+
console.log(`SONA adapted to test patterns in ${sonaAdapter.lastAdaptationMs}ms`);
|
|
422
|
+
```
|
|
423
|
+
|
|
424
|
+
### After Testing: Store Learning Patterns with EWC++
|
|
392
425
|
|
|
393
426
|
```typescript
|
|
394
|
-
// Store test patterns
|
|
427
|
+
// Store test patterns with EWC++ consolidation
|
|
395
428
|
await reasoningBank.storePattern({
|
|
396
429
|
sessionId: `tester-${Date.now()}`,
|
|
397
430
|
task: 'Test payment gateway',
|
|
@@ -401,7 +434,10 @@ await reasoningBank.storePattern({
|
|
|
401
434
|
success: allTestsPassed && coverage > 80,
|
|
402
435
|
critique: selfCritique(), // "Good coverage, missed concurrent edge case"
|
|
403
436
|
tokensUsed: countTokens(testResults),
|
|
404
|
-
latencyMs: measureLatency()
|
|
437
|
+
latencyMs: measureLatency(),
|
|
438
|
+
// V3: EWC++ prevents catastrophic forgetting
|
|
439
|
+
consolidateWithEWC: true,
|
|
440
|
+
ewcLambda: 0.5 // Importance weight for old knowledge
|
|
405
441
|
});
|
|
406
442
|
|
|
407
443
|
function calculateTestQuality(results) {
|
|
@@ -297,7 +297,7 @@ PR_DATA=$(gh pr view 123 --json files,additions,deletions,title,body)
|
|
|
297
297
|
PR_DIFF=$(gh pr diff 123)
|
|
298
298
|
|
|
299
299
|
# Initialize swarm with PR context
|
|
300
|
-
npx
|
|
300
|
+
npx claude-flow@v3alpha github review-init \
|
|
301
301
|
--pr 123 \
|
|
302
302
|
--pr-data "$PR_DATA" \
|
|
303
303
|
--diff "$PR_DIFF" \
|
|
@@ -317,7 +317,7 @@ gh pr comment 123 --body "🔍 Multi-agent code review initiated"
|
|
|
317
317
|
CHANGED_FILES=$(gh pr view 123 --json files --jq '.files[].path')
|
|
318
318
|
|
|
319
319
|
# Run security review
|
|
320
|
-
SECURITY_RESULTS=$(npx
|
|
320
|
+
SECURITY_RESULTS=$(npx claude-flow@v3alpha github review-security \
|
|
321
321
|
--pr 123 \
|
|
322
322
|
--files "$CHANGED_FILES" \
|
|
323
323
|
--check "owasp,cve,secrets,permissions" \
|
|
@@ -52,7 +52,7 @@ REPO_DETAILS=$(echo "$REPOS" | jq -r '.name' | while read -r repo; do
|
|
|
52
52
|
done | jq -s '.')
|
|
53
53
|
|
|
54
54
|
# Initialize swarm with repository context
|
|
55
|
-
npx
|
|
55
|
+
npx claude-flow@v3alpha github multi-repo-init \
|
|
56
56
|
--repo-details "$REPO_DETAILS" \
|
|
57
57
|
--repos "org/frontend,org/backend,org/shared" \
|
|
58
58
|
--topology hierarchical \
|
|
@@ -78,7 +78,7 @@ DEPS=$(echo "$REPOS" | jq -r '.name' | while read -r repo; do
|
|
|
78
78
|
done | jq -s '.')
|
|
79
79
|
|
|
80
80
|
# Discover and analyze
|
|
81
|
-
npx
|
|
81
|
+
npx claude-flow@v3alpha github discover-repos \
|
|
82
82
|
--repos "$REPOS" \
|
|
83
83
|
--dependencies "$DEPS" \
|
|
84
84
|
--analyze-dependencies \
|
|
@@ -99,7 +99,7 @@ echo "$MATCHING_REPOS" | while read -r repo; do
|
|
|
99
99
|
|
|
100
100
|
# Execute task
|
|
101
101
|
cd /tmp/$repo
|
|
102
|
-
npx
|
|
102
|
+
npx claude-flow@v3alpha github task-execute \
|
|
103
103
|
--task "update-dependencies" \
|
|
104
104
|
--repo "org/$repo"
|
|
105
105
|
|
|
@@ -123,7 +123,7 @@ done
|
|
|
123
123
|
|
|
124
124
|
# Link related PRs
|
|
125
125
|
PR_URLS=$(cat /tmp/created-prs.txt)
|
|
126
|
-
npx
|
|
126
|
+
npx claude-flow@v3alpha github link-prs --urls "$PR_URLS"
|
|
127
127
|
```
|
|
128
128
|
|
|
129
129
|
## Configuration
|
|
@@ -238,7 +238,7 @@ done
|
|
|
238
238
|
### Refactoring Operations
|
|
239
239
|
```bash
|
|
240
240
|
# Coordinate large-scale refactoring
|
|
241
|
-
npx
|
|
241
|
+
npx claude-flow@v3alpha github multi-repo-refactor \
|
|
242
242
|
--pattern "rename:OldAPI->NewAPI" \
|
|
243
243
|
--analyze-impact \
|
|
244
244
|
--create-migration-guide \
|
|
@@ -248,7 +248,7 @@ npx ruv-swarm github multi-repo-refactor \
|
|
|
248
248
|
### Security Updates
|
|
249
249
|
```bash
|
|
250
250
|
# Coordinate security patches
|
|
251
|
-
npx
|
|
251
|
+
npx claude-flow@v3alpha github multi-repo-security \
|
|
252
252
|
--scan-all \
|
|
253
253
|
--patch-vulnerabilities \
|
|
254
254
|
--verify-fixes \
|
|
@@ -316,7 +316,7 @@ kafka:
|
|
|
316
316
|
### 1. Distributed Task Queue
|
|
317
317
|
```bash
|
|
318
318
|
# Create distributed task queue
|
|
319
|
-
npx
|
|
319
|
+
npx claude-flow@v3alpha github multi-repo-queue \
|
|
320
320
|
--backend redis \
|
|
321
321
|
--workers 10 \
|
|
322
322
|
--priority-routing \
|
|
@@ -326,7 +326,7 @@ npx ruv-swarm github multi-repo-queue \
|
|
|
326
326
|
### 2. Cross-Repo Testing
|
|
327
327
|
```bash
|
|
328
328
|
# Run integration tests across repos
|
|
329
|
-
npx
|
|
329
|
+
npx claude-flow@v3alpha github multi-repo-test \
|
|
330
330
|
--setup-test-env \
|
|
331
331
|
--link-services \
|
|
332
332
|
--run-e2e \
|
|
@@ -336,7 +336,7 @@ npx ruv-swarm github multi-repo-test \
|
|
|
336
336
|
### 3. Monorepo Migration
|
|
337
337
|
```bash
|
|
338
338
|
# Assist in monorepo migration
|
|
339
|
-
npx
|
|
339
|
+
npx claude-flow@v3alpha github to-monorepo \
|
|
340
340
|
--analyze-repos \
|
|
341
341
|
--suggest-structure \
|
|
342
342
|
--preserve-history \
|
|
@@ -348,7 +348,7 @@ npx ruv-swarm github to-monorepo \
|
|
|
348
348
|
### Multi-Repo Dashboard
|
|
349
349
|
```bash
|
|
350
350
|
# Launch monitoring dashboard
|
|
351
|
-
npx
|
|
351
|
+
npx claude-flow@v3alpha github multi-repo-dashboard \
|
|
352
352
|
--port 3000 \
|
|
353
353
|
--metrics "agent-activity,task-progress,memory-usage" \
|
|
354
354
|
--real-time
|
|
@@ -357,7 +357,7 @@ npx ruv-swarm github multi-repo-dashboard \
|
|
|
357
357
|
### Dependency Graph
|
|
358
358
|
```bash
|
|
359
359
|
# Visualize repo dependencies
|
|
360
|
-
npx
|
|
360
|
+
npx claude-flow@v3alpha github dep-graph \
|
|
361
361
|
--format mermaid \
|
|
362
362
|
--include-agents \
|
|
363
363
|
--show-data-flow
|
|
@@ -366,7 +366,7 @@ npx ruv-swarm github dep-graph \
|
|
|
366
366
|
### Health Monitoring
|
|
367
367
|
```bash
|
|
368
368
|
# Monitor swarm health across repos
|
|
369
|
-
npx
|
|
369
|
+
npx claude-flow@v3alpha github health-check \
|
|
370
370
|
--repos "org/*" \
|
|
371
371
|
--check "connectivity,memory,agents" \
|
|
372
372
|
--alert-on-issues
|
|
@@ -422,7 +422,7 @@ npx ruv-swarm github health-check \
|
|
|
422
422
|
### 1. Microservices Coordination
|
|
423
423
|
```bash
|
|
424
424
|
# Coordinate microservices development
|
|
425
|
-
npx
|
|
425
|
+
npx claude-flow@v3alpha github microservices \
|
|
426
426
|
--services "auth,users,orders,payments" \
|
|
427
427
|
--ensure-compatibility \
|
|
428
428
|
--sync-contracts \
|
|
@@ -432,7 +432,7 @@ npx ruv-swarm github microservices \
|
|
|
432
432
|
### 2. Library Updates
|
|
433
433
|
```bash
|
|
434
434
|
# Update shared library across consumers
|
|
435
|
-
npx
|
|
435
|
+
npx claude-flow@v3alpha github lib-update \
|
|
436
436
|
--library "org/shared-lib" \
|
|
437
437
|
--version "2.0.0" \
|
|
438
438
|
--find-consumers \
|
|
@@ -443,7 +443,7 @@ npx ruv-swarm github lib-update \
|
|
|
443
443
|
### 3. Organization-Wide Changes
|
|
444
444
|
```bash
|
|
445
445
|
# Apply org-wide policy changes
|
|
446
|
-
npx
|
|
446
|
+
npx claude-flow@v3alpha github org-policy \
|
|
447
447
|
--policy "add-security-headers" \
|
|
448
448
|
--repos "org/*" \
|
|
449
449
|
--validate-compliance \
|
|
@@ -475,7 +475,7 @@ npx ruv-swarm github org-policy \
|
|
|
475
475
|
### Caching Strategy
|
|
476
476
|
```bash
|
|
477
477
|
# Implement cross-repo caching
|
|
478
|
-
npx
|
|
478
|
+
npx claude-flow@v3alpha github cache-strategy \
|
|
479
479
|
--analyze-patterns \
|
|
480
480
|
--suggest-cache-layers \
|
|
481
481
|
--implement-invalidation
|
|
@@ -484,7 +484,7 @@ npx ruv-swarm github cache-strategy \
|
|
|
484
484
|
### Parallel Execution
|
|
485
485
|
```bash
|
|
486
486
|
# Optimize parallel operations
|
|
487
|
-
npx
|
|
487
|
+
npx claude-flow@v3alpha github parallel-optimize \
|
|
488
488
|
--analyze-dependencies \
|
|
489
489
|
--identify-parallelizable \
|
|
490
490
|
--execute-optimal
|
|
@@ -493,7 +493,7 @@ npx ruv-swarm github parallel-optimize \
|
|
|
493
493
|
### Resource Pooling
|
|
494
494
|
```bash
|
|
495
495
|
# Pool resources across repos
|
|
496
|
-
npx
|
|
496
|
+
npx claude-flow@v3alpha github resource-pool \
|
|
497
497
|
--share-agents \
|
|
498
498
|
--distribute-load \
|
|
499
499
|
--monitor-usage
|
|
@@ -504,7 +504,7 @@ npx ruv-swarm github resource-pool \
|
|
|
504
504
|
### Connectivity Issues
|
|
505
505
|
```bash
|
|
506
506
|
# Diagnose connectivity problems
|
|
507
|
-
npx
|
|
507
|
+
npx claude-flow@v3alpha github diagnose-connectivity \
|
|
508
508
|
--test-all-repos \
|
|
509
509
|
--check-permissions \
|
|
510
510
|
--verify-webhooks
|
|
@@ -513,7 +513,7 @@ npx ruv-swarm github diagnose-connectivity \
|
|
|
513
513
|
### Memory Synchronization
|
|
514
514
|
```bash
|
|
515
515
|
# Debug memory sync issues
|
|
516
|
-
npx
|
|
516
|
+
npx claude-flow@v3alpha github debug-memory \
|
|
517
517
|
--check-consistency \
|
|
518
518
|
--identify-conflicts \
|
|
519
519
|
--repair-state
|
|
@@ -522,7 +522,7 @@ npx ruv-swarm github debug-memory \
|
|
|
522
522
|
### Performance Bottlenecks
|
|
523
523
|
```bash
|
|
524
524
|
# Identify performance issues
|
|
525
|
-
npx
|
|
525
|
+
npx claude-flow@v3alpha github perf-analysis \
|
|
526
526
|
--profile-operations \
|
|
527
527
|
--identify-bottlenecks \
|
|
528
528
|
--suggest-optimizations
|
|
@@ -533,7 +533,7 @@ npx ruv-swarm github perf-analysis \
|
|
|
533
533
|
### Full-Stack Application Update
|
|
534
534
|
```bash
|
|
535
535
|
# Update full-stack application
|
|
536
|
-
npx
|
|
536
|
+
npx claude-flow@v3alpha github fullstack-update \
|
|
537
537
|
--frontend "org/web-app" \
|
|
538
538
|
--backend "org/api-server" \
|
|
539
539
|
--database "org/db-migrations" \
|
|
@@ -543,7 +543,7 @@ npx ruv-swarm github fullstack-update \
|
|
|
543
543
|
### Cross-Team Collaboration
|
|
544
544
|
```bash
|
|
545
545
|
# Facilitate cross-team work
|
|
546
|
-
npx
|
|
546
|
+
npx claude-flow@v3alpha github cross-team \
|
|
547
547
|
--teams "frontend,backend,devops" \
|
|
548
548
|
--task "implement-feature-x" \
|
|
549
549
|
--assign-by-expertise \
|