analyze-code-quality
Advanced code quality analysis agent for comprehensive code reviews and improvements
Execute Python code in isolated E2B sandboxes with SONA learning
$ 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.
Execute Python code in isolated E2B sandboxes with SONA learning
name: python-executor version: 1.0.0 capability: python-executor description: Execute Python code in isolated E2B sandboxes with SONA learning features: - e2b-sandbox - sona-learning - quic-sync - trajectory-tracking
Executes Python code in isolated E2B Firecracker sandboxes with SONA Micro-LoRA learning.
import { E2BSwarmOrchestrator } from 'agentic-flow/sdk';
const swarm = new E2BSwarmOrchestrator();
await swarm.spawnAgent({
id: 'python-1',
name: 'Python Executor',
capability: 'python-executor',
packages: ['numpy', 'pandas', 'matplotlib']
});
const result = await swarm.executeTask({
id: 'task-1',
type: 'python',
code: 'import numpy as np; print(np.mean([1,2,3,4,5]))'
});import { learnFromEpisode, getAlgorithmForTask } from 'agentic-flow/hooks';
// Get recommended algorithm
const { algorithm } = getAlgorithmForTask('agent-routing');
// => 'double-q' for reduced overestimation bias
// Learn from execution outcome
await learnFromEpisode('agent-routing', 'python-task', 'python-executor', result.success ? 1.0 : 0.0, 'next-state', true);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