meeting-todos

meeting-todos is a skill for Claude Code from mycelium-hq/ai-brain-starter. It costs 95 tokens per session (1,653 once invoked), scanned A, original, MIT.

A workflow that finds commitments and action items in a meeting note or transcript and adds them to a to-do file.

In plain words
What is it for?
Use it after a meeting, or with a meeting title or date, to locate the note, extract tasks, record owners and deadlines when available, and update the appropriate to-do list.
Why use it?
Meeting tasks are easy to lose among discussion notes, especially when no one records who owns each one. It turns those commitments into tracked tasks.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: mentions CLAUDE.md.

Part of the ai-brain-starter plugin — 38 skills, 17 commands, 3 agents, 1 hook shipped together

Good fit Use it after a meeting, or with a meeting title or date, to locate the note, extract tasks, record owners and deadlines when available, and update the appropriate to-do list.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mycelium-hq/ai-brain-starter/meeting-todos
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 mycelium-hq/ai-brain-starter --skill meeting-todos
Clone the repo
git clone --depth 1 https://github.com/mycelium-hq/ai-brain-starter

Made for: Claude Code.

Or install ai-brain-starter, the plugin that ships this one along with the rest of its 38 skills, 17 commands, 3 agents, 1 hook.

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 meeting-todos

README.md
[![agentmods](https://agentmods.dev/badge/skills/mycelium-hq/ai-brain-starter/meeting-todos/github.svg)](https://agentmods.dev/skills/mycelium-hq/ai-brain-starter/meeting-todos)
Your own site
<a href="https://agentmods.dev/skills/mycelium-hq/ai-brain-starter/meeting-todos"><img src="https://agentmods.dev/badge/skills/mycelium-hq/ai-brain-starter/meeting-todos/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 meeting-todos

Your own site · 80×15
<a href="https://agentmods.dev/skills/mycelium-hq/ai-brain-starter/meeting-todos"><img src="https://agentmods.dev/badge/skills/mycelium-hq/ai-brain-starter/meeting-todos.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 95 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,653 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 pass 7 Sept 2026
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.00095 $0.01653
Opus 5 $0.00048 $0.00826
Sonnet 5 $0.00019 $0.00331
Haiku 4.5 $0.00010 $0.00165

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

Security

Grade A, and why

meeting-todos 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 11d 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.

skills/meeting-todos/SKILL.md · 157 lines

How it starts

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

Meeting → To-Do Extractor

After a meeting, pull action items from the transcript/notes and update your to-do file.

Trigger

/meeting-todos — optionally followed by a meeting title or date, e.g.:

  • /meeting-todos → uses the most recent meeting note
  • /meeting-todos 2026-04-09 → finds meeting from that date
  • /meeting-todos Team Sync → finds meeting matching that title

Step 0 — Locate (or create) the to-do file

Run this first, before searching for the meeting note. A fresh-install vault may not have a to-do file yet, and you don't want to do all the extraction work only to discover at Step 5 that there's no destination.

  1. Try the common paths first (fastest — one Glob or Read per location, stop on the first hit):
    • 🏠 Home/✅ Get to-do.md (canonical layout)
    • Home/✅ Get to-do.md
    • ✅ Get to-do.md (vault root)
    • Home/TODO.md / TODO.md / tasks.md
  2. If none of those exist, read the user's vault CLAUDE.md for a vault-map / to-do location hint. If the hint resolves to an existing file, use it and proceed to Step 1.
  3. If still nothing, ASK the user before creating anything:

    I don't see a to-do file in your vault. Want me to create 🏠 Home/✅ Get to-do.md with a basic structure (frontmatter + Inbox section) so the meeting items have somewhere to land? You can move or rename it later.

  4. On yes, create the file with this canonical structure (replace YYYY-MM-DD with today's date in both places):
    ---
    type: todo
    created: YYYY-MM-DD
    updated: YYYY-MM-DD
    ---
    
    # To-do
    
    ## Inbox
    
    Tell the user where you put it, then proceed to Step 1.
  5. On no, stop here. Don't extract action items from a meeting you can't file anywhere; that's silent-no-op territory. Tell the user /meeting-todos needs a destination file and ask them to create one (or point you at where their tasks live) before re-running.

Cache the resolved to-do path mentally for Step 5 — don't re-search the filesystem there.

Read the full file on GitHub · 157 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. 11d ago First seen · 157 lines · 95 tokens per session scan A 84b51bf5373e

Subscribe to this mod's changes

meeting-todos is a skill published in the GitHub repository mycelium-hq/ai-brain-starter (36 stars, last pushed today), licensed MIT. It adds 95 tokens to every session and 1,653 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

Hooks Automation

Automated coordination, formatting, and learning from Claude Code operations using intelligent hooks with MCP integration. Includes pre/post task hooks, session management, Git integration, memory coordination, and neural pattern training for enhanced development workflows.

jazz-max/ruflo-hub · 46 tokens

night-watch

Autonomous maintenance (dep updates, dead code, small refactors) in isolated branch, off-hours. Triggers: night watch, autonomous maintenance, dep updates.

softspark/ai-toolkit · 36 tokens

iterm2-layout

Configure iTerm2 workspace layouts with TOML. TRIGGERS - iTerm2 layout, workspace tabs, layout.toml, AutoLaunch.

terrylica/cc-skills · 35 tokens

flow

Personal task and agent-session manager. CLI binary is flow (assumed on PATH) and stores metadata in /.flow/flow.db (SQLite). Use this skill when the user asks about their work, tasks, or projects in any natural phrasing — including but not limited to: "what's left", "what's remaining", "what's pending", "what do I…

Facets-cloud/flow · 316 tokens

daily-brief

Compose a morning briefing for the user by pulling today's calendar, open tasks, and relevant memory, then delivering a short prioritized summary over the primary chat channel. Use when the user asks for a daily brief, "what's on today", a standup, or sets up a scheduled morning digest.

TheSmokeDev/taskchad-os · 63 tokens

conflict-resolver

Résolution de conflits entre agents ou sous-agents quand les résultats sont contradictoires, avec workflow de détection, arbitrage, merge et feedback loop. Se déclenche avec "conflit agent", "agent conflict", "résultats contradictoires", "agent disagreement", "contradiction agents", "arbitrage agent", "résoudre…

khalilbenaz/claude-skills-collection · 99 tokens