Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/xiaoleiy/podpull/agents-mdgit clone --depth 1 https://github.com/xiaoleiy/podpullWhat 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 | $0.00510 | $0.00510 |
| Opus 5 | $0.00255 | $0.00255 |
| Sonnet 5 | $0.00102 | $0.00102 |
| Haiku 4.5 | $0.00051 | $0.00051 |
Grade A, and why
podpull AGENTS.md scanned grade A with 0 findings 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 2d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
AGENTS.md
The full agent guide for this repository is CLAUDE.md — read it first.
It covers the architecture, dev workflow, testing, the release process, and the invariants
below in detail. This file is a short pointer for agents that look for AGENTS.md.
podpull in one line
A stdlib-core Python CLI that downloads a specific podcast episode's audio from Apple Podcasts,
an RSS feed, or a xiaoyuzhou (小宇宙) link. Python ≥ 3.9. Official hosted UI:
https://podpull.xiaolei.work (see docs/HOSTING.md).
The must-know invariants (details in CLAUDE.md)
src/podpull/core.pyis dependency-free (stdlib only). All third-party deps (rich,questionary,rich-argparse) belong incli.py. Use callbacks, not imports, to surface UI concerns from core.- stdout = file paths, stderr = all UI. Don't mix them.
podpull get <show>opens the interactive picker only on a TTY without--no-input; otherwise it lists + exits non-zero. Never hang in non-interactive contexts.- Filenames go through
core.safe_filename(cloud-/Windows-safe). Text I/O is alwaysencoding="utf-8".core.UAis a browser User-Agent on purpose (xiaoyuzhou 403s tool UAs). - If you change CLI commands/flags, update the bundled agent instructions in
src/podpull/integrations/too.
Quick start
python3 -m venv .venv && . .venv/bin/activate
pip install -e ".[dev]"
pytest -q # offline; keep green on macOS/Linux/Windows
Releasing
Bump the version in both src/podpull/__init__.py and pyproject.toml, update
CHANGELOG.md, then git tag vX.Y.Z && git push origin main --tags — this auto-publishes to
PyPI and bumps the Homebrew tap. See CLAUDE.md for the dependency-change caveat.
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.
- 2d ago First seen · 39 lines · 510 tokens per session scan A faf100e96efe
podpull AGENTS.md is an instructions file published in the GitHub repository xiaoleiy/podpull (141 stars, last pushed 1mo ago), licensed MIT. It adds 510 tokens to every session, about $0.0026 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
ui-ux-pro-max-skill CLAUDE.md
Instructions for nextlevelbuilder/ui-ux-pro-max-skill, covering claude.md, project overview, search command, architecture and sync rules.
tweakcc AGENTS.md
Instructions for Piebald-AI/tweakcc, covering agents.md, development commands, build, testing and linting & formatting.
NeoHaskell AGENTS.md
Instructions for neohaskell/NeoHaskell, covering neohaskell — agent guide, hard rule, style (mandatory), commands (pointers, not a duplicate) and work intake.
tokf CLAUDE.md
Instructions for mpecan/tokf, covering tokf — development guidelines, project philosophy, commits, code quality and testing.
vue-tui AGENTS.md
Instructions for vuejs-ai/vue-tui, covering common pitfalls & best practices, project context records (pcr), using vite+, the unified toolchain for the web and review checklist.
axe AGENTS.md
Instructions for jrswab/axe, covering axe — agents.md, what this is, design philosophy, non-obvious constraints and what good contributions look like.