steno

steno is a skill for Claude Code, Codex from stenolabs/stenoai. It costs 300 tokens per session (1,753 once invoked), scanned A, original, MIT.

A read-only connection to Steno, an on-device meeting recorder that stores Markdown summaries and text transcripts.

In plain words
What is it for?
Locating the Steno note store, searching or listing meetings, reading selected transcripts, and using those notes to answer questions, summarize discussions, or draft text.
Why use it?
It lets the agent find relevant meeting notes without requiring the user to copy them into the conversation.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Locating the Steno note store, searching or listing meetings, reading selected transcripts, and using those notes to answer questions, summarize discussions, or draft text.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/stenolabs/stenoai/steno
About the project

StenoAI is a private desktop notepad and meeting notetaker that records conversations, summarizes them, and lets users query them with local AI models. It is intended for confidential meetings in government, defence, and executive settings on Windows and macOS.

stenolabs/stenoai · 1,305 stars · on GitHub · stenoai.co

Install

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.

Any agent
npx skills add stenolabs/stenoai --skill steno
Clone the repo
git clone --depth 1 https://github.com/stenolabs/stenoai

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 steno

README.md
[![agentmods](https://agentmods.dev/badge/skills/stenolabs/stenoai/steno.svg)](https://agentmods.dev/skills/stenolabs/stenoai/steno)
Your own site
<a href="https://agentmods.dev/skills/stenolabs/stenoai/steno"><img src="https://agentmods.dev/badge/skills/stenolabs/stenoai/steno.svg" alt="Measured on agentmods" height="20"></a>
Per session 300 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,753 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 17
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
How audits are shown
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.00300 $0.01753
Opus 5 $0.00150 $0.00877
Sonnet 5 $0.00060 $0.00351
Haiku 4.5 $0.00030 $0.00175

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

Security

Grade A, and why

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

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/steno.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/steno/SKILL.md · 139 lines

How it starts

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

/steno — the agent's gateway to Steno meeting notes

Steno keeps every meeting on-device as a Markdown summary and a plain-text transcript. This skill makes the agent aware of that store and lets it pull the relevant notes into context, then do whatever the user asked with them.

Data access is one stdlib-only, read-only script: scripts/steno.py — no dependencies. Run it with python3 scripts/steno.py … (or uv run scripts/steno.py … if the user has uv but no Python on PATH). It never writes, moves, or deletes — authoring notes is Steno's job, not this skill's.

The pattern: gather → then do the task

Almost every /steno request is two steps. Gather the right notes with the CLI, then do the task (answer, summarize, draft) with them in context.

  1. Always start with locate to confirm the store is found. If it reports 0 meetings, ask the user where their notes are — don't invent meetings.
  2. Find the relevant meetings with list (browse by date) or search (by topic). Use --json so you can chain the results.
  3. Pull the full text with read <stem> -t for each meeting you need.
  4. Do what was asked with that material.
python3 scripts/steno.py locate                 # find the store, count meetings
python3 scripts/steno.py list --since 2026-07-01 --json
python3 scripts/steno.py search "pricing" -t --json
python3 scripts/steno.py read "acme" -t         # one meeting, summary + transcript
python3 scripts/steno.py folders

What the user can ask /steno to do

The CLI gives you the raw material; you do the reasoning. Common functions:

  • Answer a question across meetings. search for the topic, read the top hits, answer with citations (meeting title + date). "What did we decide about the pricing page?"
  • Pull one meeting in. read <query> (add -t if the ask needs the verbatim transcript, not just the summary). "Summarize the Acme call."
  • Recap a day / week / range. list --since <date>, read the summaries, produce a digest grouped by meeting. "Recap this week's meetings."
  • Extract action items or decisions. Read the ## Action Items sections (and scan summaries/transcripts) across the relevant meetings into one list, noting owners. "What are my open action items from this week?"
  • Ground a document in real meetings. Gather the meetings, then draft the artifact from them — a spec/PRD, a follow-up email, a status update, release notes. Quote or cite the source meetings so the user can trace claims. "Write a spec from the Acme discovery calls."

Read the full file on GitHub · 139 lines

Files

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.

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 · 139 lines · 300 tokens per session scan A 545584ce5e36

Subscribe to this mod's changes

steno is a skill published in the GitHub repository stenolabs/stenoai (1,305 stars, last pushed yesterday), licensed MIT. It adds 300 tokens to every session and 1,753 once invoked, about $0.0015 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.

Related

Other skills, from other repositories

scheduling

Set up recurring or scheduled work — anything the user wants run on a schedule, repeatedly, or at a future time ("every morning", "each weekday at 9am", "daily digest", "weekly report", "remind me", "run this on a cron"). Teaches how to author a durable Vexa Scheduler routine that survives restarts. Use this instead…

Vexa-ai/vexa · 91 tokens

vexa-meetings

Work with the user's meetings through the Vexa MCP tools — send a bot to a call, follow the transcript while it runs, and write meetings into their notes (Obsidian, Notion, plain markdown) with speakers and action items. Use whenever the user mentions a meeting, a call, a transcript, meeting notes, or asks what was…

Vexa-ai/vexa · 78 tokens

minutes-mirror

Self-coaching analysis of your own behavior across meetings — talk-time ratio, filler words, hedging language, monologue length, energy patterns, and (when meetings are tagged via /minutes-tag) what your behavior in winning meetings looks like vs losing ones. Use this whenever the user says "how did I do", "review my…

silverstein/minutes · 171 tokens

minutes-debrief

Post-meeting debrief — analyzes what happened, compares outcomes to your prep intentions, tracks decision evolution. Use when the user says "debrief", "what just happened in that meeting", "what did we decide", "debrief that call", "post-meeting", "what changed", or right after stopping a recording.

silverstein/minutes · 70 tokens

minutes-live-sidekick

Act as the user's live meeting sidekick inside the current terminal agent session. Use when the user explicitly asks you, the terminal agent, to watch a meeting, follow the live transcript, answer during the call, offer strategist thoughts, silently watch for risks, or track decisions. Do not use this skill to start…

silverstein/minutes · 105 tokens

minutes-record

Start or stop recording a meeting, call, or voice memo. Use this whenever the user says "record", "start recording", "capture this meeting", "stop recording", "I'm in a meeting", "take notes on this call", or wants to transcribe live audio. Also use when they ask about recording status or want to know if something is…

silverstein/minutes · 77 tokens