api-verification
Prove a search, filter or API answer is real before relying on it, and budget web search across a fan-out. Use when querying an unfamiliar API, a filter returns suspiciously clean results, a per-item error may have been swallowed, or briefing research agents.
Install
npx skills add https://github.com/JakeSelby/agent-harness/tree/main/primitives/skills/api-verification
claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install jakeselby-agent-harness@llmmart
git clone https://github.com/JakeSelby/agent-harness.git
The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole jakeselby/agent-harness collection as a plugin from our marketplace. Git is the plain clone.
Skill manifest
Research and API verification
The operative lines live in the resident rule primitives/rules/research-and-verification.md. This
skill carries the reasoning, the arithmetic behind the search budget, and what to do after a
fan-out.
Search budget
Web search is capped per session and shared by every subagent in that session. On Claude Code the cap is 200 calls. An 18-agent fan-out briefed for 35 searches each exhausts it within minutes; later agents run on fetch alone.
Budget accordingly: roughly 10 agents at 20 searches, or 6 at 30. For bigger runs, stagger waves across separate sessions, or brief agents to lean on fetching known primary sources.
After a fan-out, check each subagent's search count and re-run starved, discovery-heavy dimensions in a fresh session. Fetch-only agents are fine for licence pages and official docs, thin for "what shipped recently" questions.
Prove an API answer is real
- Unknown query parameters are silently ignored by most APIs. Prove a filter bites by sending a value that can never match and confirming the result is empty.
- Spot-check one returned record against the field you filtered on before trusting the set.
- A swallowed per-item error is unknown, not absent. Count the failures separately from the empties.
- Re-check the live spec before assuming a documented workaround is still needed.
Prefer primary sources
Defer to human-written documentation over agent-generated summaries, and trace every rule you rely on to a quotable source. When a file's header and its body disagree, neither is ground truth: find the code or the spec that decides it.
Files (agent-harness)
-
SKILL.md 1.9 KB
--- name: api-verification description: Prove a search, filter or API answer is real before relying on it, and budget web search across a fan-out. Use when querying an unfamiliar API, a filter returns suspiciously clean results, a per-item error may have been swallowed, or briefing research agents. --- # Research and API verification The operative lines live in the resident rule `primitives/rules/research-and-verification.md`. This skill carries the reasoning, the arithmetic behind the search budget, and what to do after a fan-out. ## Search budget **Web search is capped per session and shared by every subagent in that session.** On Claude Code the cap is 200 calls. An 18-agent fan-out briefed for 35 searches each exhausts it within minutes; later agents run on fetch alone. Budget accordingly: roughly 10 agents at 20 searches, or 6 at 30. For bigger runs, stagger waves across separate sessions, or brief agents to lean on fetching known primary sources. After a fan-out, check each subagent's search count and re-run starved, discovery-heavy dimensions in a fresh session. Fetch-only agents are fine for licence pages and official docs, thin for "what shipped recently" questions. ## Prove an API answer is real - **Unknown query parameters are silently ignored by most APIs.** Prove a filter bites by sending a value that can never match and confirming the result is empty. - **Spot-check one returned record** against the field you filtered on before trusting the set. - **A swallowed per-item error is unknown, not absent.** Count the failures separately from the empties. - **Re-check the live spec** before assuming a documented workaround is still needed. ## Prefer primary sources Defer to human-written documentation over agent-generated summaries, and trace every rule you rely on to a quotable source. When a file's header and its body disagree, neither is ground truth: find the code or the spec that decides it.
Comments (0)
Sign in to join the conversation.
Reviews (0)
No reviews yet.
No comments yet.