meeting-notes

meeting-notes is a skill for Claude Code, Codex from shiwenwen/hope-agent. It costs 55 tokens per session (1,261 once invoked), scanned A, original, MIT.

A meeting-note template that organizes attendees, agenda, discussion, decisions, action items with owners and deadlines, and unanswered questions.

In plain words
What is it for?
Use it for meeting notes, call summaries, one-to-one discussions, standups, and post-mortems.
Why use it?
It turns rough notes, transcripts, or discussion points into a consistent record so decisions and follow-up work are less likely to be missed.

Skill for Claude CodeCodex

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

Good fit Use it for meeting notes, call summaries, one-to-one discussions, standups, and post-mortems.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/shiwenwen/hope-agent/meeting-notes
About the project

Hope Agent is a cross-device personal AI assistant that remembers context, uses tools, and continues working toward goals through dynamically organized workflows. Individuals use it from desktop, web, server, or messaging environments to manage projects, knowledge, designs, and long-running tasks. The catalogue add-ons extend its agent workflows and capabilities.

shiwenwen/hope-agent · 1,597 stars · on GitHub

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 shiwenwen/hope-agent --skill meeting-notes
Clone the repo
git clone --depth 1 https://github.com/shiwenwen/hope-agent

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/shiwenwen/hope-agent/meeting-notes/github.svg)](https://agentmods.dev/skills/shiwenwen/hope-agent/meeting-notes)
Your own site
<a href="https://agentmods.dev/skills/shiwenwen/hope-agent/meeting-notes"><img src="https://agentmods.dev/badge/skills/shiwenwen/hope-agent/meeting-notes/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-notes

Your own site · 80×15
<a href="https://agentmods.dev/skills/shiwenwen/hope-agent/meeting-notes"><img src="https://agentmods.dev/badge/skills/shiwenwen/hope-agent/meeting-notes.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,261 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.00055 $0.01261
Opus 5 $0.00028 $0.00630
Sonnet 5 $0.00011 $0.00252
Haiku 4.5 $0.00006 $0.00126

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

Security

Grade A, and why

meeting-notes 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 13d 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-notes/SKILL.md · 148 lines

How it starts

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

Meeting Notes

When to Use

Trigger phrases: "take meeting notes", "summarize this meeting", "1:1 notes", "standup notes", "post-mortem notes", "会议纪要", "记录会议".

Also trigger when the user pastes raw transcript / bullet points and asks for cleanup.

The Template

Always produce notes with these five sections, in this order. Skip a section only if the user explicitly says it doesn't apply.

# <Meeting Title> — <YYYY-MM-DD>

**Attendees:** <name1>, <name2>, ...
**Duration:** <Nm>
**Recording:** <link or "n/a">

## Agenda

1. <topic>
2. <topic>

## Discussion

### <Topic 1>
- <key point>
- <key point with context>

### <Topic 2>
...

## Decisions

- ✅ <decision 1> — rationale: <why>
- ✅ <decision 2> — rationale: <why>

## Action Items

| # | Action | Owner | Deadline | Status |
|---|--------|-------|----------|--------|
| 1 | <action verb + outcome> | <person> | <YYYY-MM-DD> | <Open/Done/Blocked> |
| 2 | ... | ... | ... | ... |

## Open Questions

- <question that didn't get an answer>
- <question that needs follow-up>

Workflow

  1. Gather input — if the user only sketched bullet points, ask for missing essentials via ask_user_question:

    • Meeting title and date (default to today if not given)
    • Attendees (at least names)
    • Whether decisions / action items already exist or you should infer them
  2. Extract — read the transcript / bullets carefully. For each line, classify:

    • Background context → Discussion
    • "We agreed", "We'll go with", "Decided to" → Decisions
    • " will ", "Action: ...", "Owner: ..." → Action Items
    • "?", "TBD", "needs follow-up" → Open Questions
  3. Action Item Discipline (the high-value part):

    • Every action MUST have an owner (a real name, not "team")
    • Every action MUST have a deadline (a specific date, not "soon" or "next week")
    • If owner or deadline is missing, surface it explicitly with ⚠️ before the row, e.g.: ⚠️ Owner not assigned: <action> — let the user resolve
    • Action verb first ("Draft …", "Review …", "Ship …"), not vague ("Look into …")

Read the full file on GitHub · 148 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. 13d ago First seen · 148 lines · 55 tokens per session scan A b04be3d79b4a

Subscribe to this mod's changes

meeting-notes is a skill published in the GitHub repository shiwenwen/hope-agent (1,597 stars, last pushed 3d ago), licensed MIT. It adds 55 tokens to every session and 1,261 once invoked, about $0.0003 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

tasks

Use this skill when Pioneer should create, inspect, update, reschedule, pause, resume, troubleshoot, or configure delivery for durable tasks, scheduled tasks, recurring tasks, interval tasks, cron jobs, background work, or existing task state.

pioneerdotai/pioneer · 50 tokens

imap-smtp-email

Read and send email via IMAP/SMTP. Check for new/unread messages, fetch content, search mailboxes, mark as read/unread, and send emails with attachments. Works with any IMAP/SMTP server including Gmail, Outlook, 163.com, vip.163.com, 126.com, vip.126.com, 188.com, and vip.188.com.

netease-youdao/LobsterAI · 82 tokens

youdaonote

A command-line skill for managing Youdao Cloud Notes, a Chinese note-taking service. It supports notes, to-do items, saved web pages, searches, and folders.

netease-youdao/LobsterAI · 70 tokens

cron-task-creator

A scheduler for recurring octo agent tasks. Each task contains a schedule and a prompt, so octo can run an agent turn automatically at the specified times.

open-octo/octo-agent · 89 tokens

workflow-creator

Turn a repeatable multi-step task into a runnable, reusable saved workflow through guided conversation, in either of two shapes — chaining existing skills/recordings (wiring each one's output into the next's input), or composing the workflow script's own primitives (agent/parallel/pipeline) directly when the task…

open-octo/octo-agent · 278 tokens

resume-crafting

A career-writing aid for turning a résumé or cover letter into clear evidence of results. It uses measurable outcomes and adapts the wording to a job description and applicant-tracking systems, or ATS tools that scan applications for relevant terms.

open-octo/octo-agent · 180 tokens