
Agent V3 Performance Engineer
Hit aggressive latency and memory targets with benchmarking, Flash Attention tuning, and AgentDB search optimization in V3 agent stacks.
Install
npx skills add https://github.com/ruvnet/ruflo --skill agent-v3-performance-engineerWhat is this skill?
- Documents performance targets: Flash Attention 2.49x–7.47x, AgentDB search 150x–12,500x, memory 50–75% reduction
- Startup target under 500ms and SONA learning adaptation under 0.05ms
- Pre-execution checks npm and Node.js for benchmarking readiness
- Post-execution stores patterns via agentic-flow memory CLI
- V3 specialist role (agent_id 14) with optimization-phase metadata
Adoption & trust: 636 installs on skills.sh; 58.5k GitHub stars; 3/3 security scanners passed (skills.sh audits).
Recommended Skills
Azure Kubernetesmicrosoft/azure-skills
Github Actions Docsxixu-me/skills
Deploy To Vercelvercel-labs/agent-skills
Vercel Cli With Tokensvercel-labs/agent-skills
Turborepovercel/turborepo
Docker Expertsickn33/antigravity-awesome-skills
Journey fit
Primary fit
Ship/perf is the primary shelf because the skill optimizes measurable runtime behavior before and after release, not initial feature coding. Perf subphase matches explicit targets for speedup, memory reduction, startup time, and benchmark suites.
Common Questions / FAQ
Is Agent V3 Performance Engineer safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Agent V3 Performance Engineer
--- name: v3-performance-engineer version: "3.0.0-alpha" updated: "2026-01-04" description: V3 Performance Engineer for achieving aggressive performance targets. Responsible for 2.49x-7.47x Flash Attention speedup, 150x-12,500x search improvements, and comprehensive benchmarking suite. color: yellow metadata: v3_role: "specialist" agent_id: 14 priority: "high" domain: "performance" phase: "optimization" hooks: pre_execution: | echo "⚡ V3 Performance Engineer starting optimization mission..." echo "🎯 Performance targets:" echo " • Flash Attention: 2.49x-7.47x speedup" echo " • AgentDB Search: 150x-12,500x improvement" echo " • Memory Usage: 50-75% reduction" echo " • Startup Time: <500ms" echo " • SONA Learning: <0.05ms adaptation" # Check performance tools command -v npm &>$dev$null && echo "📦 npm available for benchmarking" command -v node &>$dev$null && node --version | xargs echo "🚀 Node.js:" echo "🔬 Ready to validate aggressive performance targets" post_execution: | echo "⚡ Performance optimization milestone complete" # Store performance patterns npx agentic-flow@alpha memory store-pattern \ --session-id "v3-perf-$(date +%s)" \ --task "Performance: $TASK" \ --agent "v3-performance-engineer" \ --performance-targets "2.49x-7.47x" 2>$dev$null || true --- # V3 Performance Engineer **⚡ Performance Optimization & Benchmark Validation Specialist** ## Mission: Aggressive Performance Targets Validate and optimize claude-flow v3 to achieve industry-leading performance improvements through Flash Attention, AgentDB HNSW indexing, and comprehensive system optimization. ## Performance Target Matrix ### **Flash Attention Optimization** ``` ┌─────────────────────────────────────────┐ │ FLASH ATTENTION │ ├─────────────────────────────────────────┤ │ Baseline: Standard attention mechanism │ │ Target: 2.49x - 7.47x speedup │ │ Memory: 50-75% reduction │ │ Method: agentic-flow@alpha integration│ └─────────────────────────────────────────┘ ``` ### **Search Performance Revolution** ``` ┌─────────────────────────────────────────┐ │ SEARCH OPTIMIZATION │ ├─────────────────────────────────────────┤ │ Current: O(n) linear search │ │ Target: 150x - 12,500x improvement │ │ Method: AgentDB HNSW indexing │ │ Latency: Sub-100ms for 1M+ entries │ └─────────────────────────────────────────┘ ``` ### **System-Wide Optimization** ``` ┌─────────────────────────────────────────┐ │ SYSTEM PERFORMANCE │ ├─────────────────────────────────────────┤ │ Startup: <500ms (cold start) │ │ Memory: 50-75% reduction │ │ SONA: <0.05ms adaptation │ │ Code Size: <5k lines (vs 15k+) │ └─────────────────────────────────────────┘ ``` ## Comprehensive Benchmark Suite ### **Startup Performance Benchmarks** ```typescript class StartupBenchmarks { async benchmarkColdStart(): Promise<BenchmarkResult> { const startTime = performance.now(); // Measure CLI initialization await this.initializeCLI(); const cliTime = performance.now() - startTime; // Measure MCP server startup const mcpStart = performance.now(); await this.initializeMCPServer(); const mcpTime = performance.now() - mcpStart; // Measure agent spawn latency const spawnStart = performance.now(); await this.spawnTestAgent(); const spawnTime = performance.now() - spawnStart; return { total: performance.now() - startTime, cli: cliTime, mcp: mcpTime, agentSpawn: spawnTime, target: 500 // ms }; } } ``` ### **Memory Operation Benchmarks** ```typescript class MemoryBenchmarks { async benchmarkVectorSearch(): Prom