| name | session-analysis-patterns |
| description | Claude Code session analysis, tool call patterns, efficiency metrics, and anti-pattern detection |
Session Analysis Patterns
Session Metrics
| Metrik | İyi | Orta | Kötü |
|---|
| Tokens per task | <50K | 50-100K | >100K |
| Tool calls per task | <20 | 20-40 | >40 |
| Repeated reads | 0-1 | 2-3 | >3 |
| Blind edits | 0 | 1 | >1 |
| Agent spawn efficiency | >80% useful | 50-80% | <50% |
Anti-Pattern Catalog
| # | Pattern | Tespit | Fix |
|---|
| 1 | Repeated Read | Aynı dosya 3+ kez okunmuş | Bilgiyi ilk seferde kaydet |
| 2 | Wide Grep | Pattern'siz geniş arama | Spesifik pattern + glob filter |
| 3 | Blind Edit | Dosya okumadan edit | Read → Edit sırası zorunlu |
| 4 | Idle Agent | Agent spawn edilip sonuç kullanılmamış | Gereksiz spawn etme |
| 5 | Cascade Fail | Aynı hata 3+ kez retry | Root cause analiz et |
| 6 | Context Pollution | Ana context'te gereksiz büyük dosya okuma | Agent'a delege et |
| 7 | Premature Agent | Basit iş için agent spawn | Direkt tool kullan |
| 8 | Missing Parallel | Bağımsız işler sıralı | Paralel agent/tool call |
| 9 | Over-Engineering | Basit fix için büyük refactoring | Minimal değişiklik |
Efficiency Scorer (0-100)
def calculate_efficiency(session):
score = 100
score -= session.repeated_reads * 5
score -= session.blind_edits * 15
score -= session.wide_greps * 3
score -= session.idle_agents * 10
score -= session.cascade_fails * 8
score += session.parallel_calls * 2
score += session.first_pass_success * 5
return max(0, min(100, score))
Session Comparison
| Metrik | Session A | Session B | Delta |
|--------|-----------|-----------|-------|
| Total tokens | 45,000 | 120,000 | +167% |
| Tool calls | 12 | 38 | +217% |
| Time (min) | 3 | 12 | +300% |
| Tasks completed | 2 | 2 | 0% |
| Efficiency score | 88 | 42 | -52% |
Braintrust Log Analysis
btca sessions list --last 7d
btca session <id> --metrics
btca session <id> --anti-patterns
btca sessions list --sort cost --desc
Checklist
Anti-Patterns
- Her session'ı analiz etmek (sadece outlier'ları analiz et)
- Metric'lere takılıp task quality'yi ihmal etmek
- Hız için correctness'tan ödün vermek