Agent skill
fill-participants
Resolve and fill Participants frontmatter + link unlinked names in body. Args: <path>, all.
Install this agent skill to your Project
npx add-skill https://github.com/benoror/obsidianos_work/tree/main/.agents/skills/fill-participants
SKILL.md
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/PAM/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: "[[@Zak]]"
# Multiple participants
Participants:
- "[[@Zak]]"
- "[[@Carlos García]]"
# Team-wide meetings
Participants: "[[+PAM]]"
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):
- Read the specified file.
- 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:
- External transcript sources — Use the source linked in
Notes:frontmatter:- Google Docs: Extract document ID from
Notes:, fetch content withgws(gws docs documents getorgws drive files exportto plain text — see google-workspace-cli); Gemini summaries name participants explicitly. - Otter.ai: When an Otter transcript fetch workflow is available, use it; until then skip per cache-notes Otter policy.
- Google Docs: Extract document ID from
- File name —
X x Ypatterns. - File content — Existing
[[@Name]]references. - Folder conventions — e.g.
Meetings/PAM/Scrum/→[[+PAM]]. - Similar meetings — Recurring meeting with same name, different date.
- Tracker.md — Jira ticket assignees for disambiguation.
Step 3: Match names to People files
Build a name dictionary per people-resolver. Match names from the transcript source (Google Docs, Otter when enabled, etc.) against the dictionary. Flag any unmatched names for user confirmation.
Step 4: Present findings and ask for confirmation
Present results grouped into:
- Confident matches — Table of meeting → proposed Participants. Apply without asking.
- Needs confirmation — Ambiguous matches, unknown people, or meetings with only Otter.ai links (no Google Doc). Ask the user.
- New people — Names not in People files. See people-resolver § "Creating New People".
Also flag if any existing @Person.md files are missing key properties (FullName, Team) that were discovered from Google Docs.
Step 5: Link unlinked names in note body
Scan the entire file content (body + AI transcript callouts) for mentions of people that are not already wrapped in [[@Name]] wikilinks. This catches plain-text references from Gemini transcripts and manual notes.
5a: Build a name dictionary
Use the name dictionary and matching rules from people-resolver.
5b: Scan for unlinked mentions
Search the note body for each name variant, following the word boundary and skip rules in people-resolver.
5c: Present matches for confirmation
⚠️ MANDATORY: Always prompt the user before replacing. Never auto-replace — false positives are common with first names and nicknames.
Display a numbered table of proposed replacements:
| # | Replace? | Found text | → Link | Context (surrounding text) |
|---|----------|------------|--------|---------------------------|
| 1 | ✅ | Rob Klock | [[@Rob]] | "...assigned Rob Klock a bug ticket..." |
| 2 | ✅ | @Zach | [[@Zak]] | "...recent changes made by @Zach..." |
| 3 | ⬜ | Victor | [[@Victor]] | "...Victor confirmed they have been..." |
| 4 | ⬜ | Alex | — (skip, it's the user) | "...Alex Smith and Alex agreed..." |
- Default
✅for full-name matches (high confidence). - Default
⬜for first-name-only or nickname matches (need confirmation). - Always skip linking the vault owner's name (see
USER.mdIdentity) — these don't need wikilinks. - Show a short context snippet so the user can judge correctness.
- Let the user toggle by saying numbers (e.g. "1,2" or "all" or "none").
5d: Apply confirmed replacements
Use StrReplace for each confirmed match. When a name appears multiple times, ask the user if they want to replace all occurrences or specific ones.
Step 6: Apply frontmatter changes
For each file, add Participants: to the YAML frontmatter just before the closing ---. Use StrReplace targeting a unique anchor (last line before ---).
Step 7: Handle intentionally blank meetings
For meetings where participants genuinely can't be determined:
- Use team links where the meeting clearly belongs to a team (e.g.
[[+QA]],[[+Eng]]). - Use
—(em-dash) as the universal "intentionally left blank" marker for true unknowns. - Never leave the field absent — every meeting should end up with a Participants value.
Step 8: Offer to commit
See /commit. Skip when called as part of a sequence (e.g. /meeting wrap).
Important Notes
- Always read a file before editing it — frontmatter may have been modified by Obsidian sync.
- The
modified:timestamp in frontmatter changes frequently; use other properties as unique anchors for StrReplace. - Batch edits where possible to minimize round-trips, but never edit a file without reading it first.
- Interview notes use the co-interviewer (not the candidate) as Participants. If it was a solo interview, use
[[@Me]]. - This workspace may not be a git repo. If
git statusfails, skip the commit step entirely without error.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
followup-todos
Extract action items as plain markdown bullets (with confirmation). Args: <path>. No args = run [/note-status pending --step=todos](../note-status/SKILL.md#pending-mode).
commit
Stage and commit with flexible intent parsing. Accepts file/folder scope, free-text description, amend, or any combination.
obsidian-cli
Interact with Obsidian vaults using the Obsidian CLI to read, create, search, and manage notes, tasks, properties, and more. Also supports plugin and theme development with commands to reload plugins, run JavaScript, capture errors, take screenshots, and inspect the DOM. Use when the user asks to interact with their Obsidian vault, manage notes, search vault content, perform vault operations from the command line, or develop and debug Obsidian plugins and themes.
defuddle
Extract clean markdown content from web pages using Defuddle CLI, removing clutter and navigation to save tokens. Use instead of WebFetch when the user provides a URL to read or analyze, for online documentation, articles, blog posts, or any standard web page.
obsidian-markdown
Create and edit Obsidian Flavored Markdown with wikilinks, embeds, callouts, properties, and other Obsidian-specific syntax. Use when working with .md files in Obsidian, or when the user mentions wikilinks, callouts, frontmatter, tags, embeds, or Obsidian notes.
obsidian-bases
Create and edit Obsidian Bases (.base files) with views, filters, formulas, and summaries. Use when working with .base files, creating database-like views of notes, or when the user mentions Bases, table views, card views, filters, or formulas in Obsidian.
Didn't find tool you were looking for?