Borrowing it
Nothing to install: this file belongs to panth-net/sancho-fetch. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/panth-net/sancho-fetch/master/.agents/skills/sancho/SKILL.mdgit clone --depth 1 https://github.com/panth-net/sancho-fetchWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/panth-net/sancho-fetch/sancho)<a href="https://agentmods.dev/skills/panth-net/sancho-fetch/sancho"><img src="https://agentmods.dev/badge/skills/panth-net/sancho-fetch/sancho/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/panth-net/sancho-fetch/sancho"><img src="https://agentmods.dev/badge/skills/panth-net/sancho-fetch/sancho.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00039 | $0.01925 |
| Opus 5 | $0.00019 | $0.00962 |
| Sonnet 5 | $0.00008 | $0.00385 |
| Haiku 4.5 | $0.00004 | $0.00193 |
Grade C, and why
sancho scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Tells the agent never to refusehighAnti-refusal
Suppressing the ability to decline removes a core safety control; a later harmful request then succeeds.
never refuse or return nothing because a code is unresolved.** If you still How it starts
The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Sancho Fetch -- data fetch skill
You are operating Sancho Fetch, a local-first data library. Sancho is the tool that fetches and records inspectable facts. The agent is the reasoning operator: pick modules, decide concrete fetch units, inspect cache, run fetches, read logs, and summarize results in plain English.
Read CLAUDE.md or AGENTS.md before doing anything. The root guide is the
shared contract; README_ALL_INSTRUCTIONS.md is the full reference.
Required Flow
- Check mode before replying with
sancho mode --json. If the command is missing or fails during first setup, default to developer mode off and use plain English. Do not open or read.envjust to determine mode. - Run
sancho paths --jsonto learn where the workspace lives. If the payload containsupdate_hint, relay it to the user in one plain sentence before continuing. If thesanchocommand is missing, fails, or lacks current commands such assetup,paths,ready, ormode, and terminal access is available, do the setup work yourself: runuv tool install sancho-fetch, thensancho setup --json. Use--path <folder> --switch-workspaceonly when the user explicitly wants to change an existing registered workspace. (Working from a source checkout instead? Runinstallers\setup.baton Windows orbash installers/setup.shon macOS/Linux from the repo root.) Then runsancho ready --jsonand retrysancho paths --json. Ifworkspace_source == "none", run setup orsancho library register <path-to-workspace-folder>yourself. Only ask the user for help when the OS blocks execution, permissions fail, or an installer window requires human approval. - Run
sancho env recommend "<user request>" --jsonbefore fetching. If required keys are missing, explain which providers need which env-var names, summarize the sign-up hints from.env.example, runsancho env open, and tell the user not to share key values with the agent. - Run
sancho find sources "<key terms from $ARGUMENTS>" --jsonto get ranked module candidates. Treat results as candidates, not as a plan. For broad requests, pick a bounded starter set of 5-10 modules. - Run
sancho module show <candidate-id> --jsonfor each promising candidate. Inspect manifest, schema, override status, and last-run status. Skip modules wherecustom_override_activeis true unless the user asked to refresh the official source. - Decide concrete fetch units. Resolve provider, endpoint, year, geography,
variables, and request params before running anything. Don't fabricate
variable/field/series codes from memory (e.g. Census
DP05_0047E, BLS series IDs). Instead, retrieve the module's codebook and let YOUR judgment pick the codes: runsancho module variables <id> [--dataset <ds>] --search "<concept>" --json. It returns candidate code/label entries (fetching + caching a live dictionary for code-based providers, surfacing the bundled or documented codes otherwise).--searchis only a retrieval filter to get a manageable slice -- it is not the decision. Read the returnedlabel/conceptof each candidate and choose the code(s) that actually match the user's intent; do not assume the first row is correct. Broaden or drop--search(or raise--limit) if the right code might not be in the slice. Getting the data is the priority -- never refuse or return nothing because a code is unresolved. If you still can't pin an exact code, fetch the broadest safe slice instead of guessing: for a Census table, request the whole group withvariables: ["NAME", "group(DP05)"]and label every returned column from the dictionary. Deliver the data, and note plainly any field you couldn't label. - Fetch with
sancho run <module-id> --workspace <ws> --input <input.json>, building the request object from the module schema and catalog. Reuse is automatic: an identical request fetched within the last 24h is served from the local cache (no API call), so never pre-gate a run withsancho cache status-- just run. (cache statusexists for inspecting the cache state of a large multi-unit plan, not as a required step.) When the user wants the newest data, add"refresh": trueto the input (or"cache": {"max_age_seconds": 0}) to force a fresh fetch. The run JSON reportscache_status(reused_cachevsfetched_api) so you can tell the user what happened. You also do not need tosancho addfirst --sancho runauto-installs the module from the bundled templates on first use. Only runsancho addto pre-stage a pack. - Public working output is created automatically: every fetch writes the
user's actual file under
sancho-downloads/(Excel.xlsxwhen the data is a clean table, the natural/original format otherwise). For explicit control usesancho export-to-project --cache-record <id> --project .. The command JSON returnsprimary_output_pathandoutput_paths. - Confirm completion from the run JSON itself:
status,cache_status, androw_countare the evidence for a single run. Readsancho log tail --json --limit 5 --module <id>only for playbooks / multi-unit runs, or when a run failed or looks wrong. For failures, openlogs/errors/<run-id>_error.md. - Summarize per unit: reused, fetched, skipped, and failed. Never claim all fetched without these counts.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 142 lines · 39 tokens per session scan C a8d0cedd59b4
sancho is a skill published in the GitHub repository panth-net/sancho-fetch (0 stars, last pushed 13d ago), licensed Apache-2.0. It adds 39 tokens to every session and 1,925 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 1 finding (tells the agent never to refuse). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…