obsidian-second-brain turns an Obsidian vault into persistent, searchable memory for Claude Code and other command-line coding agents, storing knowledge as linked Markdown notes. It is for developers, founders, writers, and researchers who want agents to retain project context across sessions. Its catalogue entries provide commands, hooks, a plugin, a skill, and instructions for capturing, finding, and maintaining that memory.
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.
git clone --depth 1 https://github.com/eugeniughelbur/obsidian-second-brainWrote 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/commands/eugeniughelbur/obsidian-second-brain/podcast)<a href="https://agentmods.dev/commands/eugeniughelbur/obsidian-second-brain/podcast"><img src="https://agentmods.dev/badge/commands/eugeniughelbur/obsidian-second-brain/podcast/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/commands/eugeniughelbur/obsidian-second-brain/podcast"><img src="https://agentmods.dev/badge/commands/eugeniughelbur/obsidian-second-brain/podcast.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.00021 | $0.01438 |
| Opus 5 | $0.00010 | $0.00719 |
| Sonnet 5 | $0.00004 | $0.00288 |
| Haiku 4.5 | $0.00002 | $0.00144 |
Grade A, and why
podcast 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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 51 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Use the obsidian-second-brain skill. Execute /podcast [url]:
-
Resolve the podcast URL from the user's argument. Accept any of:
- Apple Podcasts episode URL (
https://podcasts.apple.com/.../id<show>?i=<episode>) - Spotify episode URL (
https://open.spotify.com/episode/<id>) - Spotify's own audio is DRM-locked, so the script bridges it to the show's public RSS feed: it reads the episode title from Spotify's key-free oEmbed endpoint, finds that episode in Apple's index to get the feed URL, then pulls the episode from the open feed by title. Works for any show that also publishes an open feed (most do); fails clearly for Spotify-exclusive shows with no public RSS. - Direct RSS feed URL (uses the latest episode unless
?episode=<guid>selector is appended) - Direct RSS feed URL with
?episode=<guid-fragment-or-link-fragment>selector
If no input given, ask: "Which podcast episode? Paste the Apple Podcasts, Spotify, or RSS feed URL."
- Apple Podcasts episode URL (
-
Run the script from the skill root (its absolute path was given at session start as Skill root; substitute it for
SKILL_ROOT):uv run --directory "SKILL_ROOT" -m scripts.research.podcast_extract "<url>" -
The script:
- Resolves Apple Podcasts URLs to RSS via the free iTunes Lookup API (no key needed).
- Parses the RSS feed, extracts episode metadata (title, show, host, published, duration, audio URL, show notes).
- Tries to obtain a transcript in this order:
<podcast:transcript>tag in the RSS feed (free, fast, high fidelity).- Groq-hosted Whisper, only if
GROQ_API_KEYis set (free tier). Downloads audio, re-encodes it to 32kbps mono so episodes up to ~4.5h fit in Groq's 25MB per-request cap (longer episodes are split into chunks with overlap and stitched). No cost on the free tier, but the free tier also caps audio at 7,200 seconds per hour (as of 2026-08, console.groq.com): an episode longer than about 2h gets a 429 and falls through to the next step, and a second long episode within the same hour does too. Needsffmpegandffprobeon PATH. - Whisper API, only if
OPENAI_API_KEYis set. Downloads audio (<=25 MB OpenAI per-file limit), transcribes viawhisper-1. Approximate cost: $0.006/min. - Show-notes-only fallback. If no transcript path works, summarizes from RSS show notes alone. Quality drops; Notable Quotes will be empty.
- Sends transcript-or-shownotes for AI-first summarization: Gemini when
GEMINI_API_KEYis set (free tier, 1M context), otherwise Grok. The transcript is capped atPODCAST_TX_LIMITcharacters (default 480,000, about 120k tokens) with a truncation note if the episode is longer; on the Grok path that cap is a real cost, roughly $0.36 per 3h episode at grok-4 rates, so lower it there if that matters. - Returns: TL;DR, Key Points, Notable Quotes, Themes & Topics, Guests & People Mentioned, Worth Following Up On.
-
Show the script output verbatim to the user.
-
Default save behavior: saves automatically. AI-first note written to
Research/Podcasts/YYYY-MM-DD - <episode-title-slug>.md(hyphen separator, matches the existing/youtubeand/researchfilename pattern). Frontmatter includesshow,host,episode-title,episode-url,feed-url,guid,published,duration,transcript-source(one ofrss-transcript-tag/groq-whisper-api/whisper-api/show-notes), and tags. -
Plain English triggers: "summarize this podcast", "what's in this episode", "transcribe this podcast", or just pasting an Apple Podcasts URL with a question about content.
-
If no transcript path works and the show notes are empty or too short, the script fails with a clear message (exit code 1). Surface it. Suggest the user either picks a podcast that publishes transcripts, or sets
GROQ_API_KEY(free-tier Groq Whisper) orOPENAI_API_KEY(paid Whisper API) for audio transcription. -
If the user asks to research someone or something mentioned in the "Worth Following Up On" or "Guests & People Mentioned" section, route that to
/research [topic](or/obsidian-personif it's a vault-worthy contact).
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.
- 10d ago First seen · 51 lines · 21 tokens per session scan A 0040e5f08e29
podcast is a command published in the GitHub repository eugeniughelbur/obsidian-second-brain (4,376 stars, last pushed 3d ago), licensed MIT. It adds 21 tokens to every session and 1,438 once invoked, about $0.0001 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 commands, from other repositories
second-brain-mapping
Map your vault: extract structured metadata from every typed file, surface cross-doc insights, optionally build a knowledge graph.
cierre
A sales call just ended: turn its transcript into the full follow-up (CRM, tasks, email draft, reminder, coaching).
daily-journal
Daily journal interview and entry creator with emotional floor tagging.
deconstruct
First-principles analyst: surface hidden assumptions, find foundational truths, rebuild from scratch.
diagnose
Run a self-check on your AI Brain Starter install (CLAUDE.md, Meta folder, skills, hooks, MCPs).
evolve
Cluster hardened instincts into a proposed Command / Skill / Agent (Instinct Engine).