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 skills add eins78/agent-skills --skill private-podcast-feedgit clone --depth 1 https://github.com/eins78/agent-skillsWrote 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/eins78/agent-skills/private-podcast-feed)<a href="https://agentmods.dev/skills/eins78/agent-skills/private-podcast-feed"><img src="https://agentmods.dev/badge/skills/eins78/agent-skills/private-podcast-feed/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/eins78/agent-skills/private-podcast-feed"><img src="https://agentmods.dev/badge/skills/eins78/agent-skills/private-podcast-feed.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.00094 | $0.00992 |
| Opus 5 | $0.00047 | $0.00496 |
| Sonnet 5 | $0.00019 | $0.00198 |
| Haiku 4.5 | $0.00009 | $0.00099 |
Grade A, and why
private-podcast-feed scanned grade A 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 11d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -I <feed-url> How it starts
The opening of the file, as written. The whole thing — 120 lines — stays where its author put it; the contents beside it link to each section on GitHub.
private-podcast-feed
Publishes a private MP3+RSS feed for self-subscription in Overcast (or any
podcast client). "Private" means URL obscurity via token prefix and
itunes:block=Yes to keep it out of public indexes. Not cryptographic access
control — the feed URL is the only secret.
1. [email protected] Named Export
Use the named export — the default export does not work:
import { podcast } from "podcast"; // ✅ named — correct
import podcast from "podcast"; // ❌ default — fails at runtime (R3 gotcha)
2. itunes:block=Yes via customElements
The typed FeedITunes interface does not expose itunesBlock. The only
correct path is the customElements array:
const feed = new podcast({
title: "My Private Feed",
feedUrl,
siteUrl: new URL(feedUrl).origin,
customElements: [{ "itunes:block": "Yes" }], // keeps feed out of public indexes
});
Without this, the feed may be discovered and indexed by Apple Podcasts search.
3. Token-Prefixed URL
Serve the feed at /p/<32-hex>/feed.xml. The 32-hex token is 128 bits of URL
obscurity — anyone with the URL can subscribe.
https://your-host.com/p/5042a002464df562718eef84ac1316f5/feed.xml
Generate a token: openssl rand -hex 16
Gitignore .token if you store the raw token on disk. Note: this is NOT
access control — the URL is the only barrier. Do not store sensitive content.
4. ID3 CHAP/CTOC Chapter Frames
Inject chapters post-ffmpeg via mutagen so Overcast shows skippable chapters:
# inject_chapters.py (bundled in text-to-speech skill)
inject(mp3_path, [
{"start_ms": 0, "title": "Introduction"},
{"start_ms": 125000, "title": "Section Two"},
])
Chapters must be strictly increasing by start_ms. End time of chapter N is
set to start time of N+1; last chapter ends at the MP3's total duration.
If using the text-to-speech skill, chapters are injected automatically during
render when chapters.json is present.
5. Static-Hosting Pattern
What ships with it
3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 11d ago First seen · 120 lines · 94 tokens per session scan A d445b777ab4f
private-podcast-feed is a skill published in the GitHub repository eins78/agent-skills (2 stars, last pushed today), licensed MIT. It adds 94 tokens to every session and 992 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
video-shotcraft
Create cinematic product videos from shot recipe cards, a validated template, and code/audio assets (Remotion + real page screenshots + 2.5D camera moves + beat-synced cuts + sound design). Use when the user asks to turn a frontend project or webpage into a product video, says "use video-shotcraft to make a…
xiaohongshu-auto-posting
Automates the complete Xiaohongshu (XHS / Little Red Book) content operation workflow: pain-point topic collection → style case collection → topic selection → content writing → publishing → performance tracking. Use when user mentions xiaohongshu auto posting, xhs auto post, little red book posting, xiaohongshu post…
tiktok-shop-branding
Brand building and positioning on TikTok Shop. Brand identity development, content pillars, community engagement, brand storytelling, and authenticity strategies. Use when the user asks about TikTok branding, brand building, brand identity, or brand positioning on TikTok.
tiktok-shop-content-strategy
TikTok Shop content creation strategy and planning. Trending formats, viral hooks, product showcasing, hashtag strategy, and content calendar development. Use when the user asks about TikTok content strategy, viral content creation, TikTok marketing, or content planning.
ppt-design-skill
Design, generate, review, and revise editable PowerPoint presentations through a rigorous brief-to-PNG workflow using the public pptx-designer Python library.
shopify-product-photography-guide
DIY product photography — setup, lighting, backgrounds, editing, lifestyle shots, 360 views.