cos: Skill for Claude Code

.claude/skills/voice-operations/SKILL.md

voice-operations is a skill for Claude Code from philipyaz/cos. It costs 90 tokens per session (1,532 once invoked), scanned A, original, MIT.

A voice-note reader for OpenWhispr, a local app that stores spoken notes as text transcripts and .webm audio files. It also tracks which notes have already been handled.

In plain words
What is it for?
Reading new or existing voice transcripts, fetching their audio, checking the processing position, and marking notes complete after handling them.
Why use it?
It prevents processed notes from being shown again and helps detect missing audio files or audio without a matching transcript.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is philipyaz/cos's own configuration. It tells Claude Code how to work on cos itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything cos configures →

Reuse

Borrowing it

Nothing to install: this file belongs to philipyaz/cos. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/philipyaz/cos/main/.claude/skills/voice-operations/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/philipyaz/cos

Made for: Claude Code.

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-operations

README.md
[![agentmods](https://agentmods.dev/badge/skills/philipyaz/cos/voice-operations.svg)](https://agentmods.dev/skills/philipyaz/cos/voice-operations)
Your own site
<a href="https://agentmods.dev/skills/philipyaz/cos/voice-operations"><img src="https://agentmods.dev/badge/skills/philipyaz/cos/voice-operations.svg" alt="Measured on agentmods" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,532 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00090 $0.01532
Opus 5 $0.00045 $0.00766
Sonnet 5 $0.00018 $0.00306
Haiku 4.5 $0.00009 $0.00153

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

Security

Grade A, and why

voice-operations 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 8d 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.

.claude/skills/voice-operations/SKILL.md · 87 lines

How it starts

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

Voice operations — read OpenWhispr notes & own the watermark

The openwhispr MCP exposes your OpenWhispr voice transcripts (a local SQLite DB + per-note .webm audio) read-only, and owns the watermark that makes voice processing idempotent. It is the read + watermark layer; it does not route anything (turning a note into a vault page or a board case is /second-brain-ingest's job). Four tools: list_transcripts, get_transcript, get_watermark, mark_processed.

The tools

  • list_transcripts(limit?, since?, includeProcessed?) — lists { id, created, preview }, with a 🎙 <file> marker per note's audio. By default returns only UNPROCESSED notes (those sorting after the watermark). includeProcessed: true ignores the watermark and returns everything (browse mode). since filters to notes created strictly after a time (interpreted on the local clock — a trailing Z/offset is ignored). limit caps the count: when the watermark is honored it keeps the oldest unprocessed notes (so a backlog drains in order); when browsing it keeps the most-recent. Watch for the integrity flags ⚠ audio file missing and ⚠ orphan audio (no transcript row).
  • get_transcript(id) — the full text plus metadata: created, has_audio, audio_path (the absolute path to the .webm, so you can fetch the real audio), audio_duration_ms, provider, model, status, and audio_missing: true if the recording is gone. Also reports whether the note is already processed. An unknown id returns a clean tool error.
  • get_watermark(){ id, created } of the last note marked processed (both null if the loop has never run), plus the state-file path. Use it to see where the cursor sits.
  • mark_processed(id) — advances the watermark to that note's { id, created }. After this, list_transcripts skips that note and anything older. This is the only state-changing tool — the whole reason the server exists (OpenWhispr has no native "mark read").

Read the full file on GitHub · 87 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. 8d ago First seen · 87 lines · 90 tokens per session scan A ad75252d4981

Subscribe to this mod's changes

voice-operations is a skill published in the GitHub repository philipyaz/cos (4 stars, last pushed today), licensed MIT. It adds 90 tokens to every session and 1,532 once invoked, about $0.0005 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-31.

Related

Other skills, from other repositories

template-execute

Execute a Templater template, optionally writing the rendered output to a new file. Arguments are exposed to the template via tp.mcpTools.prompt("key") (directly under tp, NOT under tp.user — easy footgun). EN triggers: "render the X template", "run the daily template", "execute Templates/X.md with arg1=v1", "use…

tboome33/obsidian-mcp-router · 184 tokens

google-workspace

Gmail, Calendar, Drive, Docs, Sheets via gws CLI or Python.

NousResearch/hermes-agent · 21 tokens

box

Box manages cloud files, sharing, search, and metadata.

NousResearch/hermes-agent · 14 tokens

google-apps-script

Build Google Apps Script automation for Sheets and Workspace. Custom menus, triggers (onEdit / time-driven / form submit), dialogs, sidebars, email batches, PDF export, external API. Use whenever the user wants to automate a Google Sheet, build a Sheets menu / sidebar / dialog, hit a Sheets row from email or a…

jezweb/claude-skills · 89 tokens

google-workspace

Gmail, Calendar, Drive, Contacts, Sheets, and Docs integration via gws CLI (googleworkspace/cli). Uses OAuth2 with automatic token refresh via bridge script. Requires gws binary.

graniet/kheish · 40 tokens

setup-vault-types

Use when configuring which document types a vault tracks: after installing ai-brain-starter, when a new kind of note appears (journals, books, meetings, clients, podcasts, travel, WhatsApp/Slack/iMessage exports), when extraction skips files because no extractor matches their type, or to add, list, or remove a custom…

mycelium-hq/ai-brain-starter · 114 tokens