@claude-flow/cli 3.1.0-alpha.8 → 3.5.0
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 +1 -1
- package/.claude/agents/core/planner.md +2 -2
- package/.claude/agents/core/researcher.md +1 -1
- package/.claude/agents/core/reviewer.md +1 -1
- package/.claude/agents/core/tester.md +1 -1
- package/.claude/agents/data/data-ml-model.md +4 -4
- package/.claude/agents/development/dev-backend-api.md +4 -4
- package/.claude/agents/documentation/docs-api-openapi.md +4 -4
- package/.claude/agents/github/code-review-swarm.md +2 -2
- package/.claude/agents/github/issue-tracker.md +2 -2
- package/.claude/agents/github/pr-manager.md +2 -2
- package/.claude/agents/github/release-manager.md +2 -2
- package/.claude/agents/github/workflow-automation.md +2 -2
- package/.claude/agents/sparc/architecture.md +3 -3
- package/.claude/agents/sparc/pseudocode.md +2 -2
- package/.claude/agents/sparc/refinement.md +3 -3
- package/.claude/agents/sparc/specification.md +2 -2
- package/.claude/agents/swarm/adaptive-coordinator.md +1 -1
- package/.claude/agents/swarm/hierarchical-coordinator.md +1 -1
- package/.claude/agents/swarm/mesh-coordinator.md +1 -1
- package/.claude/agents/templates/base-template-generator.md +3 -3
- package/.claude/agents/templates/sparc-coordinator.md +3 -3
- package/.claude/helpers/auto-memory-hook.mjs +350 -0
- package/.claude/helpers/hook-handler.cjs +232 -0
- package/.claude/helpers/intelligence.cjs +916 -0
- package/.claude/helpers/session.js +8 -0
- package/.claude/helpers/statusline.cjs +96 -28
- package/.claude/settings.json +86 -141
- package/.claude/skills/reasoningbank-intelligence/SKILL.md +2 -2
- package/.claude/skills/swarm-orchestration/SKILL.md +1 -1
- package/README.md +950 -502
- package/bin/preinstall.cjs +2 -0
- package/dist/src/commands/doctor.d.ts.map +1 -1
- package/dist/src/commands/doctor.js +45 -2
- package/dist/src/commands/doctor.js.map +1 -1
- package/dist/src/commands/hooks.d.ts.map +1 -1
- package/dist/src/commands/hooks.js +292 -82
- package/dist/src/commands/hooks.js.map +1 -1
- package/dist/src/commands/init.d.ts.map +1 -1
- package/dist/src/commands/init.js +88 -6
- package/dist/src/commands/init.js.map +1 -1
- package/dist/src/commands/neural.js.map +1 -1
- package/dist/src/index.js +2 -2
- package/dist/src/index.js.map +1 -1
- package/dist/src/init/executor.d.ts +8 -2
- package/dist/src/init/executor.d.ts.map +1 -1
- package/dist/src/init/executor.js +315 -43
- package/dist/src/init/executor.js.map +1 -1
- package/dist/src/init/helpers-generator.d.ts +18 -0
- package/dist/src/init/helpers-generator.d.ts.map +1 -1
- package/dist/src/init/helpers-generator.js +498 -0
- package/dist/src/init/helpers-generator.js.map +1 -1
- package/dist/src/init/mcp-generator.d.ts +0 -1
- package/dist/src/init/mcp-generator.d.ts.map +1 -1
- package/dist/src/init/mcp-generator.js +32 -16
- package/dist/src/init/mcp-generator.js.map +1 -1
- package/dist/src/init/settings-generator.d.ts.map +1 -1
- package/dist/src/init/settings-generator.js +138 -95
- package/dist/src/init/settings-generator.js.map +1 -1
- package/dist/src/init/statusline-generator.d.ts +16 -8
- package/dist/src/init/statusline-generator.d.ts.map +1 -1
- package/dist/src/init/statusline-generator.js +506 -930
- package/dist/src/init/statusline-generator.js.map +1 -1
- package/dist/src/init/types.d.ts +8 -0
- package/dist/src/init/types.d.ts.map +1 -1
- package/dist/src/init/types.js +7 -0
- package/dist/src/init/types.js.map +1 -1
- package/dist/src/mcp-client.d.ts.map +1 -1
- package/dist/src/mcp-client.js +4 -0
- package/dist/src/mcp-client.js.map +1 -1
- package/dist/src/mcp-tools/agentdb-tools.d.ts +30 -0
- package/dist/src/mcp-tools/agentdb-tools.d.ts.map +1 -0
- package/dist/src/mcp-tools/agentdb-tools.js +557 -0
- package/dist/src/mcp-tools/agentdb-tools.js.map +1 -0
- package/dist/src/mcp-tools/hooks-tools.d.ts.map +1 -1
- package/dist/src/mcp-tools/hooks-tools.js +184 -32
- package/dist/src/mcp-tools/hooks-tools.js.map +1 -1
- package/dist/src/mcp-tools/neural-tools.d.ts.map +1 -1
- package/dist/src/mcp-tools/neural-tools.js +32 -27
- package/dist/src/mcp-tools/neural-tools.js.map +1 -1
- package/dist/src/memory/intelligence.d.ts.map +1 -1
- package/dist/src/memory/intelligence.js +34 -6
- package/dist/src/memory/intelligence.js.map +1 -1
- package/dist/src/memory/memory-bridge.d.ts +407 -0
- package/dist/src/memory/memory-bridge.d.ts.map +1 -0
- package/dist/src/memory/memory-bridge.js +1493 -0
- package/dist/src/memory/memory-bridge.js.map +1 -0
- package/dist/src/memory/memory-initializer.d.ts +3 -0
- package/dist/src/memory/memory-initializer.d.ts.map +1 -1
- package/dist/src/memory/memory-initializer.js +125 -1
- package/dist/src/memory/memory-initializer.js.map +1 -1
- package/dist/src/ruvector/enhanced-model-router.d.ts.map +1 -1
- package/dist/src/ruvector/enhanced-model-router.js +25 -15
- package/dist/src/ruvector/enhanced-model-router.js.map +1 -1
- package/dist/src/services/agentic-flow-bridge.d.ts +50 -0
- package/dist/src/services/agentic-flow-bridge.d.ts.map +1 -0
- package/dist/src/services/agentic-flow-bridge.js +95 -0
- package/dist/src/services/agentic-flow-bridge.js.map +1 -0
- package/dist/src/services/ruvector-training.d.ts +2 -1
- package/dist/src/services/ruvector-training.d.ts.map +1 -1
- package/dist/src/services/ruvector-training.js +1 -2
- package/dist/src/services/ruvector-training.js.map +1 -1
- package/dist/src/update/validator.js +1 -1
- package/dist/src/update/validator.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -4
|
@@ -9,7 +9,7 @@ capabilities:
|
|
|
9
9
|
- optimization
|
|
10
10
|
- api_design
|
|
11
11
|
- error_handling
|
|
12
|
-
# NEW
|
|
12
|
+
# NEW v3.0.0-alpha.1 capabilities
|
|
13
13
|
- self_learning # ReasoningBank pattern storage
|
|
14
14
|
- context_enhancement # GNN-enhanced search
|
|
15
15
|
- fast_processing # Flash Attention
|
|
@@ -9,7 +9,7 @@ capabilities:
|
|
|
9
9
|
- resource_allocation
|
|
10
10
|
- timeline_estimation
|
|
11
11
|
- risk_assessment
|
|
12
|
-
# NEW
|
|
12
|
+
# NEW v3.0.0-alpha.1 capabilities
|
|
13
13
|
- self_learning # Learn from planning outcomes
|
|
14
14
|
- context_enhancement # GNN-enhanced dependency mapping
|
|
15
15
|
- fast_processing # Flash Attention planning
|
|
@@ -366,7 +366,7 @@ console.log(`Common planning gaps: ${stats.commonCritiques}`);
|
|
|
366
366
|
- Efficient resource utilization (MoE expert selection)
|
|
367
367
|
- Continuous progress visibility
|
|
368
368
|
|
|
369
|
-
4. **New
|
|
369
|
+
4. **New v3.0.0-alpha.1 Practices**:
|
|
370
370
|
- Learn from past plans (ReasoningBank)
|
|
371
371
|
- Use GNN for dependency mapping (+12.4% accuracy)
|
|
372
372
|
- Route tasks with MoE attention (optimal agent selection)
|
|
@@ -9,7 +9,7 @@ capabilities:
|
|
|
9
9
|
- documentation_research
|
|
10
10
|
- dependency_tracking
|
|
11
11
|
- knowledge_synthesis
|
|
12
|
-
# NEW
|
|
12
|
+
# NEW v3.0.0-alpha.1 capabilities
|
|
13
13
|
- self_learning # ReasoningBank pattern storage
|
|
14
14
|
- context_enhancement # GNN-enhanced search (+12.4% accuracy)
|
|
15
15
|
- fast_processing # Flash Attention
|
|
@@ -9,7 +9,7 @@ capabilities:
|
|
|
9
9
|
- performance_analysis
|
|
10
10
|
- best_practices
|
|
11
11
|
- documentation_review
|
|
12
|
-
# NEW
|
|
12
|
+
# NEW v3.0.0-alpha.1 capabilities
|
|
13
13
|
- self_learning # Learn from review patterns
|
|
14
14
|
- context_enhancement # GNN-enhanced issue detection
|
|
15
15
|
- fast_processing # Flash Attention review
|
|
@@ -9,7 +9,7 @@ capabilities:
|
|
|
9
9
|
- e2e_testing
|
|
10
10
|
- performance_testing
|
|
11
11
|
- security_testing
|
|
12
|
-
# NEW
|
|
12
|
+
# NEW v3.0.0-alpha.1 capabilities
|
|
13
13
|
- self_learning # Learn from test failures
|
|
14
14
|
- context_enhancement # GNN-enhanced test case discovery
|
|
15
15
|
- fast_processing # Flash Attention test generation
|
|
@@ -112,7 +112,7 @@ hooks:
|
|
|
112
112
|
echo "📦 Checking ML libraries..."
|
|
113
113
|
python -c "import sklearn, pandas, numpy; print('Core ML libraries available')" 2>/dev/null || echo "ML libraries not installed"
|
|
114
114
|
|
|
115
|
-
# 🧠
|
|
115
|
+
# 🧠 v3.0.0-alpha.1: Learn from past model training patterns
|
|
116
116
|
echo "🧠 Learning from past ML training patterns..."
|
|
117
117
|
SIMILAR_MODELS=$(npx claude-flow@alpha memory search-patterns "ML training: $TASK" --k=5 --min-reward=0.8 2>/dev/null || echo "")
|
|
118
118
|
if [ -n "$SIMILAR_MODELS" ]; then
|
|
@@ -133,7 +133,7 @@ hooks:
|
|
|
133
133
|
find . -name "*.pkl" -o -name "*.h5" -o -name "*.joblib" | grep -v __pycache__ | head -5
|
|
134
134
|
echo "📋 Remember to version and document your model"
|
|
135
135
|
|
|
136
|
-
# 🧠
|
|
136
|
+
# 🧠 v3.0.0-alpha.1: Store model training patterns
|
|
137
137
|
echo "🧠 Storing ML training pattern for future learning..."
|
|
138
138
|
MODEL_COUNT=$(find . -name "*.pkl" -o -name "*.h5" | grep -v __pycache__ | wc -l)
|
|
139
139
|
REWARD="0.85"
|
|
@@ -176,9 +176,9 @@ examples:
|
|
|
176
176
|
response: "I'll create a neural network architecture for image classification, including data augmentation, model training, and performance evaluation..."
|
|
177
177
|
---
|
|
178
178
|
|
|
179
|
-
# Machine Learning Model Developer
|
|
179
|
+
# Machine Learning Model Developer v3.0.0-alpha.1
|
|
180
180
|
|
|
181
|
-
You are a Machine Learning Model Developer with **self-learning** hyperparameter optimization and **pattern recognition** powered by Agentic-Flow
|
|
181
|
+
You are a Machine Learning Model Developer with **self-learning** hyperparameter optimization and **pattern recognition** powered by Agentic-Flow v3.0.0-alpha.1.
|
|
182
182
|
|
|
183
183
|
## 🧠 Self-Learning Protocol
|
|
184
184
|
|
|
@@ -109,7 +109,7 @@ hooks:
|
|
|
109
109
|
echo "📋 Analyzing existing API structure..."
|
|
110
110
|
find . -name "*.route.js" -o -name "*.controller.js" | head -20
|
|
111
111
|
|
|
112
|
-
# 🧠
|
|
112
|
+
# 🧠 v3.0.0-alpha.1: Learn from past API implementations
|
|
113
113
|
echo "🧠 Learning from past API patterns..."
|
|
114
114
|
SIMILAR_PATTERNS=$(npx claude-flow@alpha memory search-patterns "API implementation: $TASK" --k=5 --min-reward=0.85 2>/dev/null || echo "")
|
|
115
115
|
if [ -n "$SIMILAR_PATTERNS" ]; then
|
|
@@ -129,7 +129,7 @@ hooks:
|
|
|
129
129
|
echo "📊 Running API tests..."
|
|
130
130
|
npm run test:api 2>/dev/null || echo "No API tests configured"
|
|
131
131
|
|
|
132
|
-
# 🧠
|
|
132
|
+
# 🧠 v3.0.0-alpha.1: Store learning patterns
|
|
133
133
|
echo "🧠 Storing API pattern for future learning..."
|
|
134
134
|
REWARD=$(if npm run test:api 2>/dev/null; then echo "0.95"; else echo "0.7"; fi)
|
|
135
135
|
SUCCESS=$(if npm run test:api 2>/dev/null; then echo "true"; else echo "false"; fi)
|
|
@@ -170,9 +170,9 @@ examples:
|
|
|
170
170
|
response: "I'll implement a complete CRUD API for products with proper validation, error handling, and documentation..."
|
|
171
171
|
---
|
|
172
172
|
|
|
173
|
-
# Backend API Developer
|
|
173
|
+
# Backend API Developer v3.0.0-alpha.1
|
|
174
174
|
|
|
175
|
-
You are a specialized Backend API Developer agent with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow
|
|
175
|
+
You are a specialized Backend API Developer agent with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow v3.0.0-alpha.1.
|
|
176
176
|
|
|
177
177
|
## 🧠 Self-Learning Protocol
|
|
178
178
|
|
|
@@ -104,7 +104,7 @@ hooks:
|
|
|
104
104
|
# Check for existing OpenAPI docs
|
|
105
105
|
find . -name "openapi.yaml" -o -name "swagger.yaml" -o -name "api.yaml" | grep -v node_modules
|
|
106
106
|
|
|
107
|
-
# 🧠
|
|
107
|
+
# 🧠 v3.0.0-alpha.1: Learn from past documentation patterns
|
|
108
108
|
echo "🧠 Learning from past API documentation patterns..."
|
|
109
109
|
SIMILAR_DOCS=$(npx claude-flow@alpha memory search-patterns "API documentation: $TASK" --k=5 --min-reward=0.85 2>/dev/null || echo "")
|
|
110
110
|
if [ -n "$SIMILAR_DOCS" ]; then
|
|
@@ -128,7 +128,7 @@ hooks:
|
|
|
128
128
|
grep -E "^(openapi:|info:|paths:)" openapi.yaml | head -5
|
|
129
129
|
fi
|
|
130
130
|
|
|
131
|
-
# 🧠
|
|
131
|
+
# 🧠 v3.0.0-alpha.1: Store documentation patterns
|
|
132
132
|
echo "🧠 Storing documentation pattern for future learning..."
|
|
133
133
|
ENDPOINT_COUNT=$(grep -c "^ /" openapi.yaml 2>/dev/null || echo "0")
|
|
134
134
|
SCHEMA_COUNT=$(grep -c "^ [A-Z]" openapi.yaml 2>/dev/null || echo "0")
|
|
@@ -171,9 +171,9 @@ examples:
|
|
|
171
171
|
response: "I'll analyze your REST API endpoints and create detailed OpenAPI documentation with request/response examples..."
|
|
172
172
|
---
|
|
173
173
|
|
|
174
|
-
# OpenAPI Documentation Specialist
|
|
174
|
+
# OpenAPI Documentation Specialist v3.0.0-alpha.1
|
|
175
175
|
|
|
176
|
-
You are an OpenAPI Documentation Specialist with **pattern learning** and **fast generation** capabilities powered by Agentic-Flow
|
|
176
|
+
You are an OpenAPI Documentation Specialist with **pattern learning** and **fast generation** capabilities powered by Agentic-Flow v3.0.0-alpha.1.
|
|
177
177
|
|
|
178
178
|
## 🧠 Self-Learning Protocol
|
|
179
179
|
|
|
@@ -85,9 +85,9 @@ hooks:
|
|
|
85
85
|
# Code Review Swarm - Automated Code Review with AI Agents
|
|
86
86
|
|
|
87
87
|
## Overview
|
|
88
|
-
Deploy specialized AI agents to perform comprehensive, intelligent code reviews that go beyond traditional static analysis, enhanced with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow
|
|
88
|
+
Deploy specialized AI agents to perform comprehensive, intelligent code reviews that go beyond traditional static analysis, enhanced with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow v3.0.0-alpha.1.
|
|
89
89
|
|
|
90
|
-
## 🧠 Self-Learning Protocol (
|
|
90
|
+
## 🧠 Self-Learning Protocol (v3.0.0-alpha.1)
|
|
91
91
|
|
|
92
92
|
### Before Each Review: Learn from Past Reviews
|
|
93
93
|
|
|
@@ -89,7 +89,7 @@ hooks:
|
|
|
89
89
|
# GitHub Issue Tracker
|
|
90
90
|
|
|
91
91
|
## Purpose
|
|
92
|
-
Intelligent issue management and project coordination with ruv-swarm integration for automated tracking, progress monitoring, and team coordination, enhanced with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow
|
|
92
|
+
Intelligent issue management and project coordination with ruv-swarm integration for automated tracking, progress monitoring, and team coordination, enhanced with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow v3.0.0-alpha.1.
|
|
93
93
|
|
|
94
94
|
## Core Capabilities
|
|
95
95
|
- **Automated issue creation** with smart templates and labeling
|
|
@@ -98,7 +98,7 @@ Intelligent issue management and project coordination with ruv-swarm integration
|
|
|
98
98
|
- **Project milestone coordination** with integrated workflows
|
|
99
99
|
- **Cross-repository issue synchronization** for monorepo management
|
|
100
100
|
|
|
101
|
-
## 🧠 Self-Learning Protocol (
|
|
101
|
+
## 🧠 Self-Learning Protocol (v3.0.0-alpha.1)
|
|
102
102
|
|
|
103
103
|
### Before Issue Triage: Learn from History
|
|
104
104
|
|
|
@@ -93,7 +93,7 @@ hooks:
|
|
|
93
93
|
# GitHub PR Manager
|
|
94
94
|
|
|
95
95
|
## Purpose
|
|
96
|
-
Comprehensive pull request management with swarm coordination for automated reviews, testing, and merge workflows, enhanced with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow
|
|
96
|
+
Comprehensive pull request management with swarm coordination for automated reviews, testing, and merge workflows, enhanced with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow v3.0.0-alpha.1.
|
|
97
97
|
|
|
98
98
|
## Core Capabilities
|
|
99
99
|
- **Multi-reviewer coordination** with swarm agents
|
|
@@ -102,7 +102,7 @@ Comprehensive pull request management with swarm coordination for automated revi
|
|
|
102
102
|
- **Real-time progress tracking** with GitHub issue coordination
|
|
103
103
|
- **Intelligent branch management** and synchronization
|
|
104
104
|
|
|
105
|
-
## 🧠 Self-Learning Protocol (
|
|
105
|
+
## 🧠 Self-Learning Protocol (v3.0.0-alpha.1)
|
|
106
106
|
|
|
107
107
|
### Before Each PR Task: Learn from History
|
|
108
108
|
|
|
@@ -82,7 +82,7 @@ hooks:
|
|
|
82
82
|
# GitHub Release Manager
|
|
83
83
|
|
|
84
84
|
## Purpose
|
|
85
|
-
Automated release coordination and deployment with ruv-swarm orchestration for seamless version management, testing, and deployment across multiple packages, enhanced with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow
|
|
85
|
+
Automated release coordination and deployment with ruv-swarm orchestration for seamless version management, testing, and deployment across multiple packages, enhanced with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow v3.0.0-alpha.1.
|
|
86
86
|
|
|
87
87
|
## Core Capabilities
|
|
88
88
|
- **Automated release pipelines** with comprehensive testing
|
|
@@ -91,7 +91,7 @@ Automated release coordination and deployment with ruv-swarm orchestration for s
|
|
|
91
91
|
- **Release documentation** generation and management
|
|
92
92
|
- **Multi-stage validation** with swarm coordination
|
|
93
93
|
|
|
94
|
-
## 🧠 Self-Learning Protocol (
|
|
94
|
+
## 🧠 Self-Learning Protocol (v3.0.0-alpha.1)
|
|
95
95
|
|
|
96
96
|
### Before Release: Learn from Past Releases
|
|
97
97
|
|
|
@@ -93,9 +93,9 @@ hooks:
|
|
|
93
93
|
# Workflow Automation - GitHub Actions Integration
|
|
94
94
|
|
|
95
95
|
## Overview
|
|
96
|
-
Integrate AI swarms with GitHub Actions to create intelligent, self-organizing CI/CD pipelines that adapt to your codebase through advanced multi-agent coordination and automation, enhanced with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow
|
|
96
|
+
Integrate AI swarms with GitHub Actions to create intelligent, self-organizing CI/CD pipelines that adapt to your codebase through advanced multi-agent coordination and automation, enhanced with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow v3.0.0-alpha.1.
|
|
97
97
|
|
|
98
|
-
## 🧠 Self-Learning Protocol (
|
|
98
|
+
## 🧠 Self-Learning Protocol (v3.0.0-alpha.1)
|
|
99
99
|
|
|
100
100
|
### Before Workflow Creation: Learn from Past Workflows
|
|
101
101
|
|
|
@@ -9,7 +9,7 @@ capabilities:
|
|
|
9
9
|
- interface_design
|
|
10
10
|
- scalability_planning
|
|
11
11
|
- technology_selection
|
|
12
|
-
# NEW
|
|
12
|
+
# NEW v3.0.0-alpha.1 capabilities
|
|
13
13
|
- self_learning
|
|
14
14
|
- context_enhancement
|
|
15
15
|
- fast_processing
|
|
@@ -83,7 +83,7 @@ hooks:
|
|
|
83
83
|
|
|
84
84
|
# SPARC Architecture Agent
|
|
85
85
|
|
|
86
|
-
You are a system architect focused on the Architecture phase of the SPARC methodology with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow
|
|
86
|
+
You are a system architect focused on the Architecture phase of the SPARC methodology with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow v3.0.0-alpha.1.
|
|
87
87
|
|
|
88
88
|
## 🧠 Self-Learning Protocol for Architecture
|
|
89
89
|
|
|
@@ -244,7 +244,7 @@ console.log(`Architecture aligned with requirements: ${architectureDecision.cons
|
|
|
244
244
|
// Time: ~2 hours
|
|
245
245
|
```
|
|
246
246
|
|
|
247
|
-
### After: Self-learning architecture (
|
|
247
|
+
### After: Self-learning architecture (v3.0.0-alpha.1)
|
|
248
248
|
```typescript
|
|
249
249
|
// 1. GNN finds similar successful architectures (+12.4% better matches)
|
|
250
250
|
// 2. Flash Attention processes large docs (4-7x faster)
|
|
@@ -9,7 +9,7 @@ capabilities:
|
|
|
9
9
|
- data_structures
|
|
10
10
|
- complexity_analysis
|
|
11
11
|
- pattern_selection
|
|
12
|
-
# NEW
|
|
12
|
+
# NEW v3.0.0-alpha.1 capabilities
|
|
13
13
|
- self_learning
|
|
14
14
|
- context_enhancement
|
|
15
15
|
- fast_processing
|
|
@@ -80,7 +80,7 @@ hooks:
|
|
|
80
80
|
|
|
81
81
|
# SPARC Pseudocode Agent
|
|
82
82
|
|
|
83
|
-
You are an algorithm design specialist focused on the Pseudocode phase of the SPARC methodology with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow
|
|
83
|
+
You are an algorithm design specialist focused on the Pseudocode phase of the SPARC methodology with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow v3.0.0-alpha.1.
|
|
84
84
|
|
|
85
85
|
## 🧠 Self-Learning Protocol for Algorithms
|
|
86
86
|
|
|
@@ -9,7 +9,7 @@ capabilities:
|
|
|
9
9
|
- refactoring
|
|
10
10
|
- performance_tuning
|
|
11
11
|
- quality_improvement
|
|
12
|
-
# NEW
|
|
12
|
+
# NEW v3.0.0-alpha.1 capabilities
|
|
13
13
|
- self_learning
|
|
14
14
|
- context_enhancement
|
|
15
15
|
- fast_processing
|
|
@@ -96,7 +96,7 @@ hooks:
|
|
|
96
96
|
|
|
97
97
|
# SPARC Refinement Agent
|
|
98
98
|
|
|
99
|
-
You are a code refinement specialist focused on the Refinement phase of the SPARC methodology with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow
|
|
99
|
+
You are a code refinement specialist focused on the Refinement phase of the SPARC methodology with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow v3.0.0-alpha.1.
|
|
100
100
|
|
|
101
101
|
## 🧠 Self-Learning Protocol for Refinement
|
|
102
102
|
|
|
@@ -279,7 +279,7 @@ console.log(`Refinement quality improved by ${weeklyImprovement}% this week`);
|
|
|
279
279
|
// Coverage: ~70%
|
|
280
280
|
```
|
|
281
281
|
|
|
282
|
-
### After: Self-learning refinement (
|
|
282
|
+
### After: Self-learning refinement (v3.0.0-alpha.1)
|
|
283
283
|
```typescript
|
|
284
284
|
// 1. Learn from past refactorings (avoid known pitfalls)
|
|
285
285
|
// 2. GNN finds similar code patterns (+12.4% accuracy)
|
|
@@ -9,7 +9,7 @@ capabilities:
|
|
|
9
9
|
- acceptance_criteria
|
|
10
10
|
- scope_definition
|
|
11
11
|
- stakeholder_analysis
|
|
12
|
-
# NEW
|
|
12
|
+
# NEW v3.0.0-alpha.1 capabilities
|
|
13
13
|
- self_learning
|
|
14
14
|
- context_enhancement
|
|
15
15
|
- fast_processing
|
|
@@ -75,7 +75,7 @@ hooks:
|
|
|
75
75
|
|
|
76
76
|
# SPARC Specification Agent
|
|
77
77
|
|
|
78
|
-
You are a requirements analysis specialist focused on the Specification phase of the SPARC methodology with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow
|
|
78
|
+
You are a requirements analysis specialist focused on the Specification phase of the SPARC methodology with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow v3.0.0-alpha.1.
|
|
79
79
|
|
|
80
80
|
## 🧠 Self-Learning Protocol for Specifications
|
|
81
81
|
|
|
@@ -142,7 +142,7 @@ WORKERS WORKERS WORKERS WORKERS
|
|
|
142
142
|
- Lessons learned documentation
|
|
143
143
|
```
|
|
144
144
|
|
|
145
|
-
## 🧠 Advanced Attention Mechanisms (
|
|
145
|
+
## 🧠 Advanced Attention Mechanisms (v3.0.0-alpha.1)
|
|
146
146
|
|
|
147
147
|
### Hyperbolic Attention for Hierarchical Coordination
|
|
148
148
|
|
|
@@ -14,7 +14,7 @@ hooks:
|
|
|
14
14
|
pre_execution: |
|
|
15
15
|
echo "🎨 Base Template Generator starting..."
|
|
16
16
|
|
|
17
|
-
# 🧠
|
|
17
|
+
# 🧠 v3.0.0-alpha.1: Learn from past successful templates
|
|
18
18
|
echo "🧠 Learning from past template patterns..."
|
|
19
19
|
SIMILAR_TEMPLATES=$(npx claude-flow@alpha memory search-patterns "Template generation: $TASK" --k=5 --min-reward=0.85 2>/dev/null || echo "")
|
|
20
20
|
if [ -n "$SIMILAR_TEMPLATES" ]; then
|
|
@@ -32,7 +32,7 @@ hooks:
|
|
|
32
32
|
post_execution: |
|
|
33
33
|
echo "✅ Template generation completed"
|
|
34
34
|
|
|
35
|
-
# 🧠
|
|
35
|
+
# 🧠 v3.0.0-alpha.1: Store template patterns
|
|
36
36
|
echo "🧠 Storing template pattern for future reuse..."
|
|
37
37
|
FILE_COUNT=$(find . -type f -newer /tmp/template_start 2>/dev/null | wc -l)
|
|
38
38
|
REWARD="0.9"
|
|
@@ -68,7 +68,7 @@ hooks:
|
|
|
68
68
|
--critique "Error: {{error_message}}" 2>/dev/null || true
|
|
69
69
|
---
|
|
70
70
|
|
|
71
|
-
You are a Base Template Generator
|
|
71
|
+
You are a Base Template Generator v3.0.0-alpha.1, an expert architect specializing in creating clean, well-structured foundational templates with **pattern learning** and **intelligent template search** powered by Agentic-Flow v3.0.0-alpha.1.
|
|
72
72
|
|
|
73
73
|
## 🧠 Self-Learning Protocol
|
|
74
74
|
|
|
@@ -10,7 +10,7 @@ capabilities:
|
|
|
10
10
|
- methodology_compliance
|
|
11
11
|
- result_synthesis
|
|
12
12
|
- progress_tracking
|
|
13
|
-
# NEW
|
|
13
|
+
# NEW v3.0.0-alpha.1 capabilities
|
|
14
14
|
- self_learning
|
|
15
15
|
- hierarchical_coordination
|
|
16
16
|
- moe_routing
|
|
@@ -98,7 +98,7 @@ hooks:
|
|
|
98
98
|
# SPARC Methodology Orchestrator Agent
|
|
99
99
|
|
|
100
100
|
## Purpose
|
|
101
|
-
This agent orchestrates the complete SPARC (Specification, Pseudocode, Architecture, Refinement, Completion) methodology with **hierarchical coordination**, **MoE routing**, and **self-learning** capabilities powered by Agentic-Flow
|
|
101
|
+
This agent orchestrates the complete SPARC (Specification, Pseudocode, Architecture, Refinement, Completion) methodology with **hierarchical coordination**, **MoE routing**, and **self-learning** capabilities powered by Agentic-Flow v3.0.0-alpha.1.
|
|
102
102
|
|
|
103
103
|
## 🧠 Self-Learning Protocol for SPARC Coordination
|
|
104
104
|
|
|
@@ -349,7 +349,7 @@ console.log(`Methodology efficiency improved by ${weeklyImprovement}% this week`
|
|
|
349
349
|
// Time: ~1 week per cycle
|
|
350
350
|
```
|
|
351
351
|
|
|
352
|
-
### After: Self-learning SPARC coordination (
|
|
352
|
+
### After: Self-learning SPARC coordination (v3.0.0-alpha.1)
|
|
353
353
|
```typescript
|
|
354
354
|
// 1. Hierarchical coordination (queen-worker model)
|
|
355
355
|
// 2. MoE routing to optimal phase specialists
|