obsidianos_work: Skill for Claude Code

.agents/skills/fill-participants/SKILL.md

fill-participants is a skill for Claude Code, Codex from benoror/obsidianos_work. It costs 25 tokens per session (1,546 once invoked), scanned A, original, MIT.

A meeting-note helper that fills the Participants field and links attendee names to people or team notes.

In plain words
What is it for?
Use it to process one meeting note or scan all meetings missing a Participants field.
Why use it?
It removes the need to identify attendees and add their links by hand across meeting notes.

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 →

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/fill-participants/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 fill-participants

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/benoror/obsidianos_work/fill-participants"><img src="https://agentmods.dev/badge/skills/benoror/obsidianos_work/fill-participants.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,546 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

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 →

  • medium Excessive Agency · line 67
    Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.
    Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00025 $0.01546
Opus 5 $0.00013 $0.00773
Sonnet 5 $0.00005 $0.00309
Haiku 4.5 $0.00003 $0.00155

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

Security

Grade A, and why

fill-participants 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.

.agents/skills/fill-participants/SKILL.md · 132 lines

How it starts

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

Fill Participants

Usage

  • /fill-participants all — Scan all meetings, find those missing Participants, resolve and fill them.
  • /fill-participants <path> — Fill participants for a specific meeting note (relative to workspace root, e.g. Meetings/Engineering/Some Meeting.md).

Frontmatter Conventions

See people-resolver for wikilink format and name matching rules.

Participants live in YAML frontmatter as either:

# Single participant
Participants: "[[@Jane Doe]]"

# Multiple participants
Participants:
  - "[[@Jane Doe]]"
  - "[[@Alex Kim]]"

# Team-wide meetings
Participants: "[[+Engineering]]"

Workflow

Step 1: Identify targets

Mode A (all):

Run /note-status pending --step=participants to discover notes missing Participants:, present them, and let the user select which to process.

Mode B (specific file):

  1. Read the specified file.
  2. Check if Participants already exists in frontmatter. If so, inform user and stop (or ask if they want to override).

Step 2: Gather participant info for each target

For each meeting missing Participants, determine attendees using the resolution priority defined in people-resolver. In summary:

  1. External transcript sources — Use the source linked in Notes: frontmatter:
    • Google Docs: Extract document ID from Notes:, fetch content with gws (gws docs documents get or gws drive files export to plain text — see google-workspace-cli); Gemini summaries name participants explicitly.
    • Otter.ai: Use otter-fetch when an Otter URL is in Notes: (user pastes JSON; run parse_otter.js or parse inline).
  2. File nameX x Y patterns.
  3. File content — Existing [[@Name]] references.
  4. Folder conventions — e.g. Meetings/Engineering/Scrum/[[+Engineering]].
  5. Similar meetings — Recurring meeting with same name, different date.
  6. Tracker.md — Jira ticket assignees for disambiguation.

Read the full file on GitHub · 132 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 · 132 lines · 25 tokens per session scan A d6e55f1f0166

Subscribe to this mod's changes

fill-participants is a skill published in the GitHub repository benoror/obsidianos_work (165 stars, last pushed 3mo ago), licensed MIT. It adds 25 tokens to every session and 1,546 once invoked, about $0.0001 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

plannotator-compound

Analyze a user's Plannotator plan archive to extract denial patterns, feedback taxonomy, evolution over time, and actionable prompt improvements — then produce a polished HTML dashboard report. Falls back to Claude Code ExitPlanMode denial reasons when Plannotator data is unavailable.

backnotprop/plannotator · 57 tokens

plannotator

Reference for using the Plannotator CLI: plan review, code review, annotating files, URLs, folders, and running local apps, annotating the last assistant message, browsing archived plan decisions, and exporting or sharing Guided Reviews. Invoke when asked to use Plannotator for anything not covered by a more specific…

backnotprop/plannotator · 73 tokens

plannotator-visual-explainer

Generate self-contained HTML visualizations with Plannotator theming. Use for implementation plans, PR explainers, architecture diagrams, data tables, slide decks, and any visual explanation of technical concepts. Plans and PR explainers follow Plannotator's prescriptive approach; all other visual content delegates to…

backnotprop/plannotator · 78 tokens

plannotator-annotate

Open Plannotator's annotation UI for a file, folder, or URL, then address the returned annotations.

backnotprop/plannotator · 29 tokens

plannotator-last

Open Plannotator on the latest rendered assistant message and use the returned annotations to revise that message or continue.

backnotprop/plannotator · 27 tokens

ulw-research

Runs maximum-saturation research with a cooperating team, claim-graph gating, and a cited, QA'd deliverable. Use when the user explicitly asks for research or a deep investigation, including any 'ulw' research wording.

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