skill

skill is a skill for Claude Code, Codex from jej2k5/meetey. It costs 40 tokens per session (5,456 once invoked), scanned A, original, Apache-2.0.

A local meeting recorder and transcription tool. It can capture audio, optionally capture screen images, transcribe speech on the device, and create structured summaries.

In plain words
What is it for?
Use it to record meetings, check recording status, transcribe them, create write-ups, and search or manage past meetings.
Why use it?
It turns recorded meetings into searchable written notes while keeping the audio and transcription process local.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code.

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.

agentmods
npx agentmods add skills/jej2k5/meetey/skill
Any agent
npx skills add jej2k5/meetey --skill skill
Clone the repo
git clone --depth 1 https://github.com/jej2k5/meetey

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 skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/jej2k5/meetey/skill.svg)](https://agentmods.dev/skills/jej2k5/meetey/skill)
Your own site
<a href="https://agentmods.dev/skills/jej2k5/meetey/skill"><img src="https://agentmods.dev/badge/skills/jej2k5/meetey/skill.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,456 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00040 $0.05456
Opus 5 $0.00020 $0.02728
Sonnet 5 $0.00008 $0.01091
Haiku 4.5 $0.00004 $0.00546

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

Security

Grade A, and why

skill 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 5d 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.

skill/SKILL.md · 370 lines

How it starts

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

Meetey Skill

Meetey captures meeting audio locally using ScreenCaptureKit, transcribes it with whisper.cpp, and produces a structured summary — all without audio leaving your machine.

It can optionally capture screen keyframes as well: slides, screen shares, code, and diagrams. Text is recognized on-device, so the default path still sends only text to Claude.

Invocation

/meetey [subcommand]

Two groups of subcommands: start, stop, status drive a recording; list, show, search, delete, doctor operate on the library of past ones. Running /meetey with no subcommand shows the available commands.

Every library subcommand also has a plain-language equivalent — "what meetings do I have this week?" is /meetey list. Both routes reach the same tools, so honour whichever the user used and don't redirect them to the other.


/meetey (no subcommand)

Reply with exactly this, then wait for the user to choose:

Meetey — local meeting capture

  /meetey start    Start recording a meeting
  /meetey stop     Stop recording and transcribe
  /meetey status   Check if a recording is active

  /meetey watch    Ask to record meetings automatically (off by default)
  /meetey writeup  Write notes for meetings recorded while you were away

  /meetey list     Browse past meetings
  /meetey show     Open one meeting's notes
  /meetey search   Find a moment across every meeting
  /meetey delete   Remove a recording
  /meetey doctor   Check the install

/meetey start

  1. Call list_apps to get running capturable apps.
  2. If no apps are found, tell the user: "No supported meeting apps are running. Start your meeting in Chrome (Google Meet or Teams web), Zoom, or Microsoft Teams, then try again."
  3. If exactly one app is found, confirm with the user: "I found [App Name]. Start recording?" and proceed on confirmation.
  4. If multiple apps are found, show a numbered list and ask the user to choose.
  5. Ask about screen capture, unless the user already said (/meetey start --video means yes, /meetey start --audio-only means no). Ask it as a plain question defaulting to no:

Read the full file on GitHub · 370 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. 5d ago First seen · 370 lines · 40 tokens per session scan A e0f267efbd65

Subscribe to this mod's changes

skill is a skill published in the GitHub repository jej2k5/meetey (1 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 40 tokens to every session and 5,456 once invoked, about $0.0002 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

repo-build-pr

End-to-end implementation loop for the os-clovy repo: study the prompt, ask the clarifying questions that change what gets built, plan and architect on the session model while delegating bulk implementation and review to cheaper strong models, isolate work in git worktrees, validate with deterministic checks plus…

open-software-network/os-clovy · 177 tokens

os-accounts-integration

Integrate consumer apps, Tauri desktop clients, or backend services with OS Accounts, the Open Software identity and credit-billing platform. Use when adding Login with Open Software, PKCE callback handling, /me, access-token verification with JWKS/ES256, auth middleware for Hono/Fastify/Express/Rust, top-up links…

open-software-network/os-clovy · 156 tokens

os-rust-backend

Use when working on a Rust backend that follows the Open Software Network house style — the seven-crate Cargo workspace split (domain / services / persistence / providers / config / api / app) shared by os-accounts and os-platform (fellow). Trigger on: scaffolding a new service in this org ("like os-accounts"…

open-software-network/os-clovy · 246 tokens

starcat-ui-prototype

为 Starcat 生成 macOS 原型与 UI 设计稿。Starcat 是一款面向重度 GitHub 用户的 Apple 平台 Star 管理与 AI 知识整理工具,采用 macOS 26 Liquid Glass 设计语言。当需要为 Starcat 生成界面原型、UI 设计稿、组件设计或视觉稿时使用此技能。.

starcat-app/Starcat · 85 tokens

os-design

Stand up design-featuring work the Open Software way. Use when building, redesigning, or polishing any UI surface in an OS repo (os-clovy, os-scribe, os-marketing-page, os-platform), when a feature needs visual design decisions before or during implementation, when reviewing interface work for house taste, or when…

open-software-network/os-clovy · 180 tokens

starcat-cli-release

Starcat CLI 与 Homebrew Formula 联动发版流程。用于用户要准备、执行或排查 starcat-cli 的稳定版/预发布版,更新 CHANGELOG、运行 Go 发布门禁、创建版本 tag、触发 GitHub Release、验证多平台产物与 attestations,或确认 homebrew-starcat-cli Formula 和 Audit Action 是否同步成功的场景。.

starcat-app/Starcat · 85 tokens