What problem does it solve?
In multi-agent workflows, subagents often start work with incomplete or uncertain context. Standard approaches such as sending everything or nothing can overwhelm the context window or leave critical details missing, leading to poor decisions. This Skill provides a structured method to incrementally refine the knowledge available to subagents, reducing waste while preserving essential information.
Core Features & Use Cases
- Four-phase loop: DISPATCH, EVALUATE, REFINE, LOOP to progressively narrow down relevant context.
- Context scoring: files are scored for relevance, enabling selective inclusion of high-value material.
- Controlled cycles: up to a configurable number of iterations (default 3) to avoid overfitting or endless search.
- Use Case: When diagnosing a bug in a large codebase, iteratively gather candidate files, prune irrelevant ones, and assemble a concise, high-signal context for the subagent.
Quick Start
Use an initial broad query to collect candidate files.
Evaluate the relevance of each candidate and identify missing context.
Refine the search conditions based on evaluation results and repeat up to three cycles.
Return the set of high-relevance files that cover the task.