d48cda4081
CI / Test (ubuntu-latest, Node 18.x, bun) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, npm) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, pnpm) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 18.x, yarn) (push) Failing after 15m1s
CI / Test (ubuntu-latest, Node 20.x, bun) (push) Failing after 17m13s
CI / Test (ubuntu-latest, Node 20.x, npm) (push) Failing after 18m42s
CI / Test (ubuntu-latest, Node 20.x, pnpm) (push) Failing after 15m0s
CI / Test (ubuntu-latest, Node 20.x, yarn) (push) Failing after 49m44s
CI / Test (ubuntu-latest, Node 22.x, bun) (push) Failing after 51m55s
CI / Test (ubuntu-latest, Node 22.x, pnpm) (push) Failing after 21m57s
CI / Test (ubuntu-latest, Node 22.x, npm) (push) Failing after 37m39s
CI / Test (ubuntu-latest, Node 22.x, yarn) (push) Failing after 34m7s
CI / Validate Components (push) Failing after 37m15s
CI / Python Tests (push) Failing after 10m1s
CI / Security Scan (push) Failing after 10m1s
CI / Lint (push) Failing after 17m12s
CI / Coverage (push) Failing after 20m19s
CI / Test (macos-latest, Node 18.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 18.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 18.x, yarn) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 20.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 20.x, yarn) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, bun) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, npm) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, pnpm) (push) Has been cancelled
CI / Test (macos-latest, Node 22.x, yarn) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, npm) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, pnpm) (push) Has been cancelled
CI / Test (windows-latest, Node 22.x, yarn) (push) Has been cancelled
51 lines
1.6 KiB
Markdown
51 lines
1.6 KiB
Markdown
# Agent Orkestrasyonu
|
||
|
||
## Mevcut Agent'lar
|
||
|
||
`~/.claude/agents/` dizininde bulunur:
|
||
|
||
| Agent | Amaç | Ne Zaman Kullanılır |
|
||
|-------|---------|-------------|
|
||
| planner | Uygulama planlaması | Karmaşık özellikler, refactoring |
|
||
| architect | Sistem tasarımı | Mimari kararlar |
|
||
| tdd-guide | Test odaklı geliştirme | Yeni özellikler, hata düzeltmeleri |
|
||
| code-reviewer | Kod incelemesi | Kod yazdıktan sonra |
|
||
| security-reviewer | Güvenlik analizi | Commit'lerden önce |
|
||
| build-error-resolver | Build hatalarını düzeltme | Build başarısız olduğunda |
|
||
| e2e-runner | E2E testleri | Kritik kullanıcı akışları |
|
||
| refactor-cleaner | Ölü kod temizliği | Kod bakımı |
|
||
| doc-updater | Dokümantasyon | Dokümanları güncelleme |
|
||
| rust-reviewer | Rust kod incelemesi | Rust projeleri |
|
||
|
||
## Anlık Agent Kullanımı
|
||
|
||
Kullanıcı istemi gerekmez:
|
||
1. Karmaşık özellik istekleri - **planner** agent kullan
|
||
2. Kod yeni yazıldı/değiştirildi - **code-reviewer** agent kullan
|
||
3. Hata düzeltmesi veya yeni özellik - **tdd-guide** agent kullan
|
||
4. Mimari karar - **architect** agent kullan
|
||
|
||
## Paralel Görev Yürütme
|
||
|
||
Bağımsız işlemler için DAIMA paralel Task yürütme kullan:
|
||
|
||
```markdown
|
||
# İYİ: Paralel yürütme
|
||
3 agent'ı paralel başlat:
|
||
1. Agent 1: Auth modülü güvenlik analizi
|
||
2. Agent 2: Cache sistemi performans incelemesi
|
||
3. Agent 3: Utilities tip kontrolü
|
||
|
||
# KÖTÜ: Gereksiz sıralı yürütme
|
||
Önce agent 1, sonra agent 2, sonra agent 3
|
||
```
|
||
|
||
## Çok Perspektifli Analiz
|
||
|
||
Karmaşık problemler için split role sub-agent'lar kullan:
|
||
- Factual reviewer
|
||
- Senior engineer
|
||
- Security expert
|
||
- Consistency reviewer
|
||
- Redundancy checker
|