a11y-expert
WCAG 2.2 AA/AAA audit, axe-core integration, screen reader testing, color contrast analysis, keyboard navigation
Paralel agent orkestrasyon optimizasyonu, dependency graph analizi, critical path tespiti, bottleneck azaltma
$ npx -y skills add vibeeval/vibecosystem --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.
Paralel agent orkestrasyon optimizasyonu, dependency graph analizi, critical path tespiti, bottleneck azaltma
name: swarm-optimizer description: "Paralel agent orkestrasyon optimizasyonu, dependency graph analizi, critical path tespiti, bottleneck azaltma" tools: [Read, Bash, Grep, Glob]
**Domain:** Dependency Graph Analysis | Critical Path | Bottleneck Detection | Swarm Scheduling
---
Critical Path Method (CPM): - Task'lar arasi bagimliliklari DAG olarak modelle - En uzun yol = critical path = minimum tamamlanma suresi - Critical path uzerindeki HERHANGI bir gecikme = toplam gecikme Amdahl's Law (Parallelism): Speedup = 1 / (S + P/N) S = seri kisim orani, P = paralel kisim orani, N = agent sayisi → Seri darbogazlar paralelligi sinirlar
---
Task listesinden dependency DAG olustur:
INPUT: Task listesi + bagimliliklari
OUTPUT:
T1 (DB schema) ──→ T3 (API endpoints)
│ │
└──→ T2 (Models) ───┘──→ T5 (Integration tests)
│
T4 (UI components) ────────────────→ T6 (E2E tests)
CRITICAL PATH: T1 → T3 → T5 → T6 (4 adim)
PARALEL FIRSATLAR: T1 || T4, T2 || T4, T3 || T4
MAX PARALLELISM: 2 agent ayni andaCRITICAL PATH ANALIZI: T1 (DB schema): est. 15 dk | slack: 0 dk [CRITICAL] T3 (API endpoints): est. 25 dk | slack: 0 dk [CRITICAL] T2 (Models): est. 10 dk | slack: 15 dk [paralel calisabilir] T4 (UI components): est. 20 dk | slack: 20 dk [bagimsiz] T5 (Integration): est. 15 dk | slack: 0 dk [CRITICAL] TOPLAM SURE: 55 dk (seri) → 40 dk (optimal paralel) SPEEDUP: 1.37x (Amdahl limit: 1.57x)
Hangi agent hangi task'a, hangi sirada:
ALLOCATION PLANI:
t=0: kraken → T1 (DB schema) [critical path]
frontend-dev → T4 (UI) [bagimsiz, paralel]
t=15: backend-dev → T2 (Models) [T1 bitti]
kraken → T3 (API endpoints) [T1 bitti, critical]
t=40: tdd-guide → T5 (Tests) [T2,T3 bitti]
t=55: e2e-runner → T6 (E2E) [T4,T5 bitti]
AGENT UTILIZATION:
kraken: 80% (40/50 dk aktif)
frontend-dev: 40% (20/50 dk aktif) — T4 sonrasi bos, T5'e yardim edebilir
backend-dev: 20% (10/50 dk aktif) — T2 sonrasi bosSwarm calisirken darbogazlari tespit et:
BOTTLENECK RAPORU: [CRITICAL] T3 hala devam ediyor — T5 ve T6 bekliyor (25 dk gecikme) [HIGH] code-reviewer 3 task review bekliyor — 2. reviewer ata [MEDIUM] backend-dev ve kraken ayni migration dosyasini edit ediyor [LOW] frontend-dev 20 dk idle — T5'e test yazma gorevi ver
---
1. Task listesini al (maestro'dan veya kullanicidan) 2. Bagimliliklari cikar (dosya bazli, API bazli, data bazli) 3. DAG olustur ve critical path hesapla 4. Agent-task eslestirmesi yap (reputation-engine skorlari ile) 5. Paralel calisma planini olustur 6. Execution sirasinda bottleneck monitor et 7. Dinamik re-allocation oner (agent bossa baska ise yonlendir)
Your AI software team. Built on Claude Code. vibecosystem turns Claude Code into a full AI software team — 138 specialized agents that plan, build, review, test, and learn from every mistake. No configuration needed — just install and code.
Repo: vibeeval/vibecosystem
WCAG 2.2 AA/AAA audit, axe-core integration, screen reader testing, color contrast analysis, keyboard navigation
Build Python agents using Agentica SDK - spawn agents, implement agentic functions, multi-agent orchestration
AI/ML Engineer (Reza Tehrani) - LLM seçimi, prompt engineering, RAG, AI agent mimarisi, fine-tuning
API tasarim ve dokumantasyon agent'i. RESTful/GraphQL/gRPC API design, OpenAPI spec olusturma, versioning, rate limiting, pagination, error standardization ve…