granola-to-steno

granola-to-steno is a skill for Claude Code, Codex from stenolabs/stenoai. It costs 163 tokens per session (2,497 once invoked), scanned C, original, MIT.

A synchronisation tool that copies meeting titles, dates, participants, summaries, and transcripts from Granola into Steno, a folder-based meeting-notes system.

In plain words
What is it for?
Use it to rebuild Steno summary and transcript files from recent Granola meetings in a chosen folder, such as an iCloud Drive directory.
Why use it?
It removes the need to transfer meeting information by hand and can safely be run repeatedly without duplicating existing meetings.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument.

Good fit Use it to rebuild Steno summary and transcript files from recent Granola meetings in a chosen folder, such as an iCloud Drive directory.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/stenolabs/stenoai/granola-to-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,310 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 granola-to-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 granola-to-steno

README.md
[![agentmods](https://agentmods.dev/badge/skills/stenolabs/stenoai/granola-to-steno/github.svg)](https://agentmods.dev/skills/stenolabs/stenoai/granola-to-steno)
Your own site
<a href="https://agentmods.dev/skills/stenolabs/stenoai/granola-to-steno"><img src="https://agentmods.dev/badge/skills/stenolabs/stenoai/granola-to-steno/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 granola-to-steno

Your own site · 80×15
<a href="https://agentmods.dev/skills/stenolabs/stenoai/granola-to-steno"><img src="https://agentmods.dev/badge/skills/stenolabs/stenoai/granola-to-steno.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 163 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,497 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. 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: 2 findings, up to high

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 →

  • high Tool Misuse · line 140
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
  • high Tool Misuse · line 140
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
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.00163 $0.02497
Opus 5 $0.00081 $0.01248
Sonnet 5 $0.00033 $0.00499
Haiku 4.5 $0.00016 $0.00250

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

Security

Grade C, and why

granola-to-steno scanned grade C 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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/steno_gen.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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf /tmp/steno_out
skills/granola-to-steno/SKILL.md · 204 lines

How it starts

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

Granola -> Steno sync

This skill rebuilds Steno's local meeting files from Granola. Steno stores each meeting as two files in a folder it watches:

<STENO_DIR>/output/<stem>_summary.md        # frontmatter + Summary + Transcript + sections
<STENO_DIR>/transcripts/<stem>_transcript.txt

<stem> is YYYYMMDD-HHMM_<slugified-title>. Because the stem is derived from the meeting's date and title, rewriting an existing meeting is a no-op and new meetings are simply added - the whole flow is safe to run repeatedly and on a schedule.

The bundled generator (scripts/steno_gen.py) does the Steno-specific formatting (cleans Granola markdown into the plain-text shape Steno renders, diarises the transcript, writes both files). This skill's job is to gather the raw Granola data into a simple staging folder and hand it to the generator.


Prerequisites

  • A connected Granola MCP exposing list_meetings, get_meetings, and get_meeting_transcript. The MCP server id is environment-specific, so load the tools by name with ToolSearch rather than assuming a fixed prefix.
  • Python 3 available in the shell.
  • A target Steno directory containing (or able to contain) output/ and transcripts/ subfolders. This is often inside iCloud Drive - see Step 3.

Step 0 - Gather settings

Decide these up front (ask the user only if not obvious; otherwise use the defaults):

  • Time range - default: union of this_week and last_week. For a one-off backfill use last_30_days or a custom range.
  • Target Steno directory (STENO_DIR) - see Step 3.
  • Language - the language your meetings are in, as a short code (en, fr, de, ...). Defaults to en. Passed to the generator via --language in Step 6.

Step 1 - Load the Granola tools

Load the three Granola tools in one ToolSearch call, e.g.:

ToolSearch { query: "list_meetings get_meetings get_meeting_transcript", max_results: 5 }

Confirm the matched tools belong to the Granola server before calling them.

Read the full file on GitHub · 204 lines

Files

What ships with it

2 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. 12d ago First seen · 204 lines · 163 tokens per session scan C f1404dae7800

Subscribe to this mod's changes

granola-to-steno is a skill published in the GitHub repository stenolabs/stenoai (1,310 stars, last pushed 4d ago), licensed MIT. It adds 163 tokens to every session and 2,497 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). 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

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

minutes-note

Add a note to the current recording or annotate a past meeting. Use whenever the user says "note that", "remember this", "mark this as important", "add a note about", "annotate the meeting", or wants to capture a thought during or after a recording. Plain text input — no markdown needed.

silverstein/minutes · 67 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

Files, Office & Drive on Mac (Local MCP)

Use when the user wants to find, read or create files and Office documents (Word/Excel/PowerPoint/PDF) on a Mac, or browse OneDrive / Google Drive. Powered by Local MCP, on-device.

lanchuske/local-mcp-releases · 56 tokens

notion

Read and write Notion pages, databases (data sources), and blocks via the Notion REST API.

AtomicBot-ai/Atomic-Chat · 24 tokens