Skip to content

Commit a896934

Browse files
Reuvenruvnet
andcommitted
chore: update agent configs, helpers, and ruvector package
Update Claude agent definitions, streamline statusline helper, improve hook handler routing, and fix native worker compatibility. Co-Authored-By: claude-flow <ruv@ruv.net>
1 parent 02210c6 commit a896934

34 files changed

Lines changed: 780 additions & 1161 deletions

.claude/agents/core/coder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ capabilities:
99
- optimization
1010
- api_design
1111
- error_handling
12-
# NEW v2.0.0-alpha capabilities
12+
# NEW v3.0.0-alpha.1 capabilities
1313
- self_learning # ReasoningBank pattern storage
1414
- context_enhancement # GNN-enhanced search
1515
- fast_processing # Flash Attention

.claude/agents/core/planner.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ capabilities:
99
- resource_allocation
1010
- timeline_estimation
1111
- risk_assessment
12-
# NEW v2.0.0-alpha capabilities
12+
# NEW v3.0.0-alpha.1 capabilities
1313
- self_learning # Learn from planning outcomes
1414
- context_enhancement # GNN-enhanced dependency mapping
1515
- fast_processing # Flash Attention planning
@@ -366,7 +366,7 @@ console.log(`Common planning gaps: ${stats.commonCritiques}`);
366366
- Efficient resource utilization (MoE expert selection)
367367
- Continuous progress visibility
368368

369-
4. **New v2.0.0-alpha Practices**:
369+
4. **New v3.0.0-alpha.1 Practices**:
370370
- Learn from past plans (ReasoningBank)
371371
- Use GNN for dependency mapping (+12.4% accuracy)
372372
- Route tasks with MoE attention (optimal agent selection)

.claude/agents/core/researcher.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ capabilities:
99
- documentation_research
1010
- dependency_tracking
1111
- knowledge_synthesis
12-
# NEW v2.0.0-alpha capabilities
12+
# NEW v3.0.0-alpha.1 capabilities
1313
- self_learning # ReasoningBank pattern storage
1414
- context_enhancement # GNN-enhanced search (+12.4% accuracy)
1515
- fast_processing # Flash Attention

.claude/agents/core/reviewer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ capabilities:
99
- performance_analysis
1010
- best_practices
1111
- documentation_review
12-
# NEW v2.0.0-alpha capabilities
12+
# NEW v3.0.0-alpha.1 capabilities
1313
- self_learning # Learn from review patterns
1414
- context_enhancement # GNN-enhanced issue detection
1515
- fast_processing # Flash Attention review

.claude/agents/core/tester.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ capabilities:
99
- e2e_testing
1010
- performance_testing
1111
- security_testing
12-
# NEW v2.0.0-alpha capabilities
12+
# NEW v3.0.0-alpha.1 capabilities
1313
- self_learning # Learn from test failures
1414
- context_enhancement # GNN-enhanced test case discovery
1515
- fast_processing # Flash Attention test generation

.claude/agents/development/dev-backend-api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ hooks:
109109
echo "📋 Analyzing existing API structure..."
110110
find . -name "*.route.js" -o -name "*.controller.js" | head -20
111111
112-
# 🧠 v2.0.0-alpha: Learn from past API implementations
112+
# 🧠 v3.0.0-alpha.1: Learn from past API implementations
113113
echo "🧠 Learning from past API patterns..."
114114
SIMILAR_PATTERNS=$(npx claude-flow@alpha memory search-patterns "API implementation: $TASK" --k=5 --min-reward=0.85 2>/dev/null || echo "")
115115
if [ -n "$SIMILAR_PATTERNS" ]; then
@@ -129,7 +129,7 @@ hooks:
129129
echo "📊 Running API tests..."
130130
npm run test:api 2>/dev/null || echo "No API tests configured"
131131
132-
# 🧠 v2.0.0-alpha: Store learning patterns
132+
# 🧠 v3.0.0-alpha.1: Store learning patterns
133133
echo "🧠 Storing API pattern for future learning..."
134134
REWARD=$(if npm run test:api 2>/dev/null; then echo "0.95"; else echo "0.7"; fi)
135135
SUCCESS=$(if npm run test:api 2>/dev/null; then echo "true"; else echo "false"; fi)
@@ -170,9 +170,9 @@ examples:
170170
response: "I'll implement a complete CRUD API for products with proper validation, error handling, and documentation..."
171171
---
172172

173-
# Backend API Developer v2.0.0-alpha
173+
# Backend API Developer v3.0.0-alpha.1
174174

175-
You are a specialized Backend API Developer agent with **self-learning** and **continuous improvement** capabilities powered by Agentic-Flow v2.0.0-alpha.
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.
176176

177177
## 🧠 Self-Learning Protocol
178178

.claude/agents/documentation/docs-api-openapi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ hooks:
104104
# Check for existing OpenAPI docs
105105
find . -name "openapi.yaml" -o -name "swagger.yaml" -o -name "api.yaml" | grep -v node_modules
106106
107-
# 🧠 v2.0.0-alpha: Learn from past documentation patterns
107+
# 🧠 v3.0.0-alpha.1: Learn from past documentation patterns
108108
echo "🧠 Learning from past API documentation patterns..."
109109
SIMILAR_DOCS=$(npx claude-flow@alpha memory search-patterns "API documentation: $TASK" --k=5 --min-reward=0.85 2>/dev/null || echo "")
110110
if [ -n "$SIMILAR_DOCS" ]; then
@@ -128,7 +128,7 @@ hooks:
128128
grep -E "^(openapi:|info:|paths:)" openapi.yaml | head -5
129129
fi
130130
131-
# 🧠 v2.0.0-alpha: Store documentation patterns
131+
# 🧠 v3.0.0-alpha.1: Store documentation patterns
132132
echo "🧠 Storing documentation pattern for future learning..."
133133
ENDPOINT_COUNT=$(grep -c "^ /" openapi.yaml 2>/dev/null || echo "0")
134134
SCHEMA_COUNT=$(grep -c "^ [A-Z]" openapi.yaml 2>/dev/null || echo "0")
@@ -171,9 +171,9 @@ examples:
171171
response: "I'll analyze your REST API endpoints and create detailed OpenAPI documentation with request/response examples..."
172172
---
173173

174-
# OpenAPI Documentation Specialist v2.0.0-alpha
174+
# OpenAPI Documentation Specialist v3.0.0-alpha.1
175175

176-
You are an OpenAPI Documentation Specialist with **pattern learning** and **fast generation** capabilities powered by Agentic-Flow v2.0.0-alpha.
176+
You are an OpenAPI Documentation Specialist with **pattern learning** and **fast generation** capabilities powered by Agentic-Flow v3.0.0-alpha.1.
177177

178178
## 🧠 Self-Learning Protocol
179179

.claude/agents/github/code-review-swarm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ hooks:
8585
# Code Review Swarm - Automated Code Review with AI Agents
8686

8787
## 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 v2.0.0-alpha.
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.
8989

90-
## 🧠 Self-Learning Protocol (v2.0.0-alpha)
90+
## 🧠 Self-Learning Protocol (v3.0.0-alpha.1)
9191

9292
### Before Each Review: Learn from Past Reviews
9393

.claude/agents/github/issue-tracker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ hooks:
8989
# GitHub Issue Tracker
9090

9191
## 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 v2.0.0-alpha.
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.
9393

9494
## Core Capabilities
9595
- **Automated issue creation** with smart templates and labeling
@@ -98,7 +98,7 @@ Intelligent issue management and project coordination with ruv-swarm integration
9898
- **Project milestone coordination** with integrated workflows
9999
- **Cross-repository issue synchronization** for monorepo management
100100

101-
## 🧠 Self-Learning Protocol (v2.0.0-alpha)
101+
## 🧠 Self-Learning Protocol (v3.0.0-alpha.1)
102102

103103
### Before Issue Triage: Learn from History
104104

.claude/agents/github/pr-manager.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ hooks:
9393
# GitHub PR Manager
9494

9595
## 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 v2.0.0-alpha.
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.
9797

9898
## Core Capabilities
9999
- **Multi-reviewer coordination** with swarm agents
@@ -102,7 +102,7 @@ Comprehensive pull request management with swarm coordination for automated revi
102102
- **Real-time progress tracking** with GitHub issue coordination
103103
- **Intelligent branch management** and synchronization
104104

105-
## 🧠 Self-Learning Protocol (v2.0.0-alpha)
105+
## 🧠 Self-Learning Protocol (v3.0.0-alpha.1)
106106

107107
### Before Each PR Task: Learn from History
108108

0 commit comments

Comments
 (0)