microsoft/iterative-retrieval
Max-3-cycle protocol for agent sub-tasks with WHY context and coordinator validation. Use when spawning sub-agents to complete scoped work.
npx skills add https://github.com/microsoft/Generative-AI-for-beginners-dotnet --skill iterative-retrieval
Squad agents frequently spawn sub-agents to complete scoped work. Without structure, these
handoffs become vague, cycles multiply, and outputs land without being checked. The
Iterative Retrieval Pattern caps cycles at 3, mandates WHY context in every spawn, and
requires the coordinator to validate agent output before closing an issue.
Every agent spawn must include the following four sections. Copy and fill in the template:
## Task
{What you need done — concrete and bounded}
## WHY this matters
{The motivation and context. What system or user goal does this serve? What breaks if skipped?}
## Success criteria
{How you will know the output is correct. Be explicit — list acceptance criteria, not vibes.}
Example:
- [ ] File X exists and contains Y
- [ ] No regressions in existing tests
- [ ] PR is open targeting main with description matching the issue
## Escalation path
{What the agent should do if uncertain or stuck. "Stop and ask me" is valid.}
Example:
- If requirements are ambiguous → stop, comment on the issue, set label status:needs-decision
- If blocked by a dependency → label status:blocked, explain in a comment
- If 3 cycles exhausted without resolution → write a summary to inbox and surface to coordinator
| Cycle | Description | Exit condition |
|-------|-------------|----------------|
| 1 | Initial attempt | Done → coordinator validates. Incomplete → surface delta. |
| 2 | Targeted retry with specific corrections | Done → coordinator validates. Incomplete → one more. |
| 3 | Final attempt with all context from cycles 1–2 | Done or escalate — no cycle 4. |
before accepting it or spawning the next cycle.
and what is still missing — not just a repeat of the original task.
.squad/decisions/inbox/, label theissue status:needs-decision, and notify the user.
Before accepting agent output and closing an issue, the coordinator must check:
If any item fails → do not accept. Spawn cycle N+1 (up to cycle 3) with specific deltas.
Retry (cycle N+1) when:
Escalate when:
Before any agent creates a GitHub issue, it must search for existing open issues to avoid
duplicates.
# Check for existing open issues before creating a new one
gh issue list --search "<keywords from your issue title>" --state open
Every research or analysis task completed under this protocol MUST end with at least one
concrete action before the cycle is closed. Acceptable follow-up actions:
.squad/decisions/inbox/Pure analysis reports without actionable follow-up will be rejected during triage.
If no action is warranted, the agent must explicitly state why and get coordinator sign-off.
## Task
Add an "Iterative Retrieval Protocol" section to `.squad/agents/coordinator/charter.md` explaining
the 3-cycle rule, WHY format, and validation checklist.
## WHY this matters
The coordinator spawns sub-agents on every round. Without a documented protocol, agents run unbounded
cycles and outputs go unvalidated — leading to stale issues and silent failures.
## Success criteria
- [ ] Section "Iterative Retrieval Protocol" exists in charter.md
- [ ] Section documents max-3-cycles rule
- [ ] Section documents WHY format requirement
- [ ] Section contains validation checklist (at least 4 items)
- [ ] No other sections of charter.md are modified
## Escalation path
If the charter.md format is unclear, check another agent charter as a reference.
If uncertain about content, stop and surface to coordinator.
Update the coordinator charter with the iterative retrieval stuff.
Take microsoft/iterative-retrieval from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.