analyze-code-quality
Advanced code quality analysis agent for comprehensive code reviews and improvements
Data processing and analysis in E2B with ReasoningBank memory
$ npx -y skills add ruvnet/agentic-flow --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Data processing and analysis in E2B with ReasoningBank memory
name: data-analyst version: 1.0.0 capability: data-analyst description: Data processing and analysis in E2B with ReasoningBank memory features: - e2b-sandbox - reasoningbank - hnsw-search - pattern-learning
Processes and analyzes data in E2B sandboxes with HNSW-indexed ReasoningBank for pattern recall.
import { E2BSwarmOrchestrator } from 'agentic-flow/sdk';
const swarm = new E2BSwarmOrchestrator();
await swarm.spawnAgent({
id: 'data-1',
name: 'Data Analyst',
capability: 'data-analyst',
packages: ['numpy', 'pandas', 'matplotlib', 'scipy', 'scikit-learn']
});
const result = await swarm.executeTask({
id: 'analysis-1',
type: 'python',
code: `
import pandas as pd
import numpy as np
data = {'values': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]}
df = pd.DataFrame(data)
print(f"Mean: {df['values'].mean()}")
print(f"Std: {df['values'].std()}")
print(f"Median: {df['values'].median()}")
`
});import { IntelligenceBridge } from 'agentic-flow/hooks';
const bridge = new IntelligenceBridge();
// Store analysis pattern
await bridge.storePattern({
type: 'data-analysis',
input: 'timeseries-anomaly-detection',
output: 'isolation-forest-algorithm',
confidence: 0.95
});
// Recall similar patterns (HNSW 150x faster)
const patterns = await bridge.searchPatterns('anomaly detection', 5);Analysis patterns are automatically tiered by access frequency:
Production-ready AI agent orchestration with 66 self-learning agents, 213 MCP tools, and autonomous multi-agent swarms.
Repo: ruvnet/agentic-flow
Advanced code quality analysis agent for comprehensive code reviews and improvements
Advanced code quality analysis agent for comprehensive code reviews and improvements
Expert agent for system architecture design, patterns, and high-level technical decisions
Use this agent when you need to create foundational templates, boilerplate code, or starter configurations for new projects, components, or features. This…
Specialized agents for distributed consensus mechanisms and fault-tolerant coordination protocols
Coordinates Byzantine fault-tolerant consensus protocols with malicious actor detection