obsidianos_work: Skill for Claude Code

.agents/skills/meeting/SKILL.md

meeting is a skill for Claude Code, Codex from benoror/obsidianos_work. It costs 39 tokens per session (2,058 once invoked), scanned A, original, MIT.

A workflow for creating and completing meeting notes in an Obsidian vault. It can use Google Calendar to choose a meeting and can run several follow-up note steps in sequence.

In plain words
What is it for?
Use it to create a dated meeting note, place it in a subfolder, wrap up an existing note, or process pending meetings for selected dates.
Why use it?
It gives meeting notes a consistent name, date, folder, and frontmatter structure. It also helps find unfinished notes and complete related follow-up work.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is benoror/obsidianos_work's own configuration. It tells Claude Code and Codex how to work on obsidianos_work itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything obsidianos_work configures →

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is **Requires**: [Google Workspace CLI](https://github.com/googleworkspace/cli) (`gws`) with Calendar access (read-only). See [SETUP.md](SETUP.md) and [google-work.

Reuse

Borrowing it

Nothing to install: this file belongs to benoror/obsidianos_work. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/benoror/obsidianos_work/main/.agents/skills/meeting/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/benoror/obsidianos_work

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/benoror/obsidianos_work/meeting"><img src="https://agentmods.dev/badge/skills/benoror/obsidianos_work/meeting.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,058 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.00039 $0.02058
Opus 5 $0.00019 $0.01029
Sonnet 5 $0.00008 $0.00412
Haiku 4.5 $0.00004 $0.00206

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

Security

Grade A, and why

meeting 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 10d 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.

.agents/skills/meeting/SKILL.md · 152 lines

How it starts

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

Meeting

Usage

  • /meeting {title} — Create a meeting note with the given title and today's date.
  • /meeting {title} folder={subfolder} — Create in a specific subfolder under Meetings/.
  • /meeting (no args) — List today's Google Calendar events and let the user pick one. (Requires gws + Calendar — see SETUP.md and google-workspace-cli.)
  • /meeting wrap <path> — Wrap up an existing meeting by running /mail-transcripts, /cache-notes, /fill-participants, and /followup-todos in sequence, with a single commit at the end.
  • /meeting wrap pending [<dates>] — Find meetings missing any wrap step and wrap them in sequence. Optional date filter (see Mode D).

File Naming

Format: {Title} - YYYY-MM-DD.md

Examples:

  • Engineering - Weekly check-in - 2026-02-18.md
  • Jane x Alex Sync - 2026-02-23.md
  • Alert System Brainstorm and Requirement Gathering - 2026-02-06.md

Exception — Scrum dailies in Meetings/Engineering/Scrum/ use just YYYY-MM-DD.md.

Frontmatter

Every meeting note starts with YAML frontmatter:

---
Notes:
created: YYYY-MM-DDTHH:MM:SS±HH:MM
---
  • Notes: is left empty (populated later with Google Docs / Otter links).
  • created: uses the current local timestamp in ISO 8601 with timezone offset.
  • Participants: is intentionally omitted at creation time (filled later by /fill-participants).
  • modified: is managed by Obsidian automatically — do NOT set it.

Mode A: Manual Creation

Input: /meeting {title} with optional folder={subfolder}

Workflow

  1. Parse arguments: Extract the title and optional folder.
  2. Determine folder: If folder= is provided, use Meetings/{subfolder}/. Otherwise, ask the user which subfolder to use. List existing subfolders for convenience.
  3. Generate filename: {Title} - YYYY-MM-DD.md using today's date.
  4. Check for duplicates: If a file with the same name already exists, warn the user and ask how to proceed.
  5. Create the file with frontmatter. If a matching template exists in Templates/, ask the user if they want to apply it as the note body.
  6. Confirm by printing the created file path.

Read the full file on GitHub · 152 lines

Files

What ships with it

1 file 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. 10d ago First seen · 152 lines · 39 tokens per session scan A f64cc89439ca

Subscribe to this mod's changes

meeting is a skill published in the GitHub repository benoror/obsidianos_work (165 stars, last pushed 3mo ago), licensed MIT. It adds 39 tokens to every session and 2,058 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-30.

Related

Other skills, from other repositories

give-me-tips

Explains any senpi tip in depth, including Tip: lines in the TUI. Use when the user asks about a tip, what a tipped feature does, or which tips they can see.

code-yeongyu/oh-my-openagent · 45 tokens

general

Handle everyday conversation, answer questions, manage files, take notes, run scripts, and maintain persistent memory across sessions. Use when the user asks a general question, requests file operations, wants to brainstorm ideas, needs to-do tracking, asks you to remember something, or requests skill search and…

0xranx/golembot · 61 tokens

message-push

Send proactive messages to IM groups or individual users via the gateway Send API. Use when the user says to send, post, notify, forward, or tell someone a message on Feishu, Slack, Telegram, Discord, DingTalk, or WeCom.

0xranx/golembot · 55 tokens

task-manager

Creates and manages scheduled tasks, cron jobs, recurring reminders, and timers via the Task HTTP API. Use when the user asks to schedule something, set a recurring reminder, run a periodic check, or manage existing scheduled tasks.

0xranx/golembot · 48 tokens

meeting

Meeting notes assistant — organizes transcripts into structured minutes, extracts action items, and tracks attendee decisions. Use when the user asks to summarize a meeting, take meeting notes, write up minutes, create a meeting recap, list attendees, or extract action items from a call.

0xranx/golembot · 55 tokens

project-memory-keeper

Analyzes the last session to log progress, extract lessons learned, and save them to the project memory instructions.

GulajavaMinistudio/awesome-copilot-id · 27 tokens