voice-capture

voice-capture is a skill for Claude Code, Codex from ahkedia/lyra-ai. It costs 35 tokens per session (822 once invoked), scanned A, original, MIT.

A voice-message workflow that turns Telegram recordings into text, labels each one as an insight, decision, idea, or question, and saves it in Notion. It is set up for messages from Akash or Abhigna.

In plain words
What is it for?
Use it to capture spoken thoughts, classify them, and add them to a Notion-based “second brain” for later reference.
Why use it?
It removes the need to replay voice notes, write transcripts, and organise ideas by hand.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /Users/akashkedia/Library/Python/3.9/bin/mlx_whisper.

Good fit Use it to capture spoken thoughts, classify them, and add them to a Notion-based “second brain” for later reference.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for voice-capture

README.md
[![agentmods](https://agentmods.dev/badge/skills/ahkedia/lyra-ai/voice-capture/github.svg)](https://agentmods.dev/skills/ahkedia/lyra-ai/voice-capture)
Your own site
<a href="https://agentmods.dev/skills/ahkedia/lyra-ai/voice-capture"><img src="https://agentmods.dev/badge/skills/ahkedia/lyra-ai/voice-capture/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.

agentmods 80×15 button for voice-capture

Your own site · 80×15
<a href="https://agentmods.dev/skills/ahkedia/lyra-ai/voice-capture"><img src="https://agentmods.dev/badge/skills/ahkedia/lyra-ai/voice-capture.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 35 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 822 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00035 $0.00822
Opus 5 $0.00017 $0.00411
Sonnet 5 $0.00007 $0.00164
Haiku 4.5 $0.00003 $0.00082

Measured 12d ago against content hash 6f59ea95c66b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

voice-capture 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 12d 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 -s -X POST "https://api.notion.com/v1/pages" \
skills/voice-capture/SKILL.md · 79 lines

How it starts

The opening of the file, as written. The whole thing — 79 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Voice Capture — Think Out Loud, Lyra Captures It

Step 1: Transcribe with mlx-whisper

When a voice message arrives, OpenClaw saves it as a file (usually /tmp/voice_XXXX.ogg or .oga).

# Convert to wav first (mlx-whisper works best with wav)
/opt/homebrew/bin/ffmpeg -i /tmp/VOICE_FILE.ogg /tmp/voice_transcript.wav -y -loglevel quiet

# Transcribe (tiny model is fast; use small for better accuracy on Hinglish)
/Users/akashkedia/Library/Python/3.9/bin/mlx_whisper \
  --model mlx-community/whisper-small-mlx \
  --output-format txt \
  --output-dir /tmp \
  /tmp/voice_transcript.wav

# Read result
cat /tmp/voice_transcript.txt

If the file path isn't known, check recent temp files:

ls -t /tmp/*.ogg /tmp/*.oga /tmp/*.m4a /tmp/*.wav 2>/dev/null | head -3

Hinglish note: mlx-whisper handles Hindi-English code-switching well with --language hi if needed.

Step 2: Classify

Classify transcribed text into ONE of:

  • Insight — a realization or lesson ("I just realized...")
  • Decision — something decided ("I've decided to...", "Going with option B")
  • Idea — a new concept or feature ("What if we...", "I had an idea for...")
  • Question — an open question ("I keep wondering why...", "Should I...")
  • Pattern — a recurring observation ("Every time I...", "I've noticed that...")

Extract:

  • Title: 5-10 word summary
  • Tags from: job-hunt, relocation, content, n26, sme-lending, ai, personal, abhigna

Step 3: Save to Second Brain

NOTION_KEY=$(cat ~/.config/notion/api_key)
curl -s -X POST "https://api.notion.com/v1/pages" \
  -H "Authorization: Bearer $NOTION_KEY" \
  -H "Notion-Version: 2025-09-03" \
  -H "Content-Type: application/json" \
  -d '{
    "parent": {"database_id": "e4027aaf-d2ff-49e1-babf-7487725e2ef4"},
    "properties": {
      "Name": {"title": [{"text": {"content": "TITLE_HERE"}}]},
      "Type": {"select": {"name": "TYPE_HERE"}},
      "Source": {"select": {"name": "Voice"}},
      "Date": {"date": {"start": "DATE_HERE"}},
      "Tags": {"multi_select": [{"name": "TAG1"}]},
      "Notes": {"rich_text": [{"text": {"content": "FULL_TRANSCRIPTION_HERE"}}]}
    }
  }'

Read the full file on GitHub · 79 lines

Changes

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.

  1. 12d ago First seen · 79 lines · 35 tokens per session scan A 6f59ea95c66b

Subscribe to this mod's changes

voice-capture is a skill published in the GitHub repository ahkedia/lyra-ai (5 stars, last pushed 23d ago), licensed MIT. It adds 35 tokens to every session and 822 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

memory-processor

Iva's daily-memory processor. Reads the day's two-sided transcript (daily/YYYY-MM-DD.md), distills noteworthy entities / decisions / ideas into typed autograph cards, links them into the graph, and produces a daily-summary card (topics + MOC) that navigates down to the raw transcript and up to the week. Model-agnostic…

smixs/iva-agent · 106 tokens

dbrain-processor

Personal assistant for processing daily voice/text entries from Telegram. Classifies content, saves thoughts to Obsidian with wiki-links, generates HTML reports. Integrates Your Business context (clients, projects, CRM). Triggers on /process command or daily 21:00 cron.

smixs/agent-second-brain · 60 tokens

autograph

Schema-as-code enforcement for any Obsidian vault. Zero hardcoded domains. Use when creating vault cards, checking vault health, running schema compliance, deduplicating entities, generating MOC indexes, running decay cycles, bootstrapping a vault, fixing wikilinks, finding orphans or backlinks, extracting entities…

smixs/agent-second-brain · 89 tokens

memory-tidy

A memory-maintenance skill for finding duplicate, expired, or overly long entries in an assistant's memory index. It suggests changes for a person to approve and archives entries instead of permanently deleting them.

tigu77/tiguclaw · 0 tokens

db-maintenance

A maintenance guide for a SQLite database that stores memories, sessions, and conversation records in one file. SQLite is a database system that can keep data in a single file.

tigu77/tiguclaw · 0 tokens

autograph

Schema-as-code enforcement for any Obsidian vault. Zero hardcoded domains. Use when creating vault cards, checking vault health, running schema compliance, deduplicating entities, generating MOC indexes, running decay cycles, bootstrapping a vault, fixing wikilinks, finding orphans or backlinks, extracting entities…

smixs/iva-agent · 89 tokens