Claude Skill

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.

LLM Mart · 0 points · 0 views 7 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download jakeselby-agent-harness-primitives_skills_api-verification-0c8664f.zip · 1 KB
Part of jakeselby/agent-harness — 14 skills

Install

skills CLI npx skills add https://github.com/JakeSelby/agent-harness/tree/main/primitives/skills/api-verification
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install jakeselby-agent-harness@llmmart
Git 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.

No comments yet.

Reviews (0)

No reviews yet.

Related