Делегирование задач подагентам с экономией контекста
★ 7.3 · vibe-coding
cavecrew is a Claude Code skill that serves as a decision guide for delegating work to three caveman-style subagents: cavecrew-investigator (locate code), cavecrew-builder (edit 1–2 files), and cavecrew-reviewer (audit a diff). Unlike vanilla Anthropic defaults such as Explore, each subagent returns compressed output — roughly 60% fewer tokens injected back into the main context, which can mean the difference between finishing a long session and hitting context exhaustion. The skill defines clear routing rules: use investigator for finding definitions, callers, or usages; builder for surgical edits when the file path is already known; reviewer for structured findings on a specific diff. Chaining patterns like locate → fix → verify and parallel scout runs are documented, along with explicit anti-patterns. Best suited for extended refactoring sessions where token efficiency directly affects task completion.
- #context-optimization
- #subagent-delegation
- #code-search
- #diff-review
- #token-efficiency