What problem does it solve?
Processing large archives (email dumps, transcript libraries, document collections) forces a bad tradeoff: run a cheap model on everything and miss nuance on important content, or run an expensive model on everything and pay 10-50x more for mostly noise. This Skill routes each item to the right model tier so significant content gets deep analysis while noise is skipped.
Core Features & Use Cases
- Deterministic privacy wall: Named-entity and sensitive-pattern matching strips or diverts private content before any LLM call, with ambiguous items failing closed to human review.
- Triage and gate pipeline: A fast utility-tier classifier scores each item, then gate logic escalates high-value items to the deep tier, sends decent items to the reasoning tier, and skips noise.
- Single-pass writes with checkpointing: Each extracted item is written immediately to the brain with backlinks and progress checkpoints every 25 items for crash resilience.
- Use Case: You have a 16,000-item email archive. Triage classifies every item at utility-tier cost, the gate escalates roughly 30% for deep reads, and the run costs around $288 instead of $800 for deep-tier-on-everything.
Quick Start
Ask the agent to set up two-tier extraction on your document dump so a cheap model triages the noise and the best model deep-reads what matters.