원클릭으로
fill-participants
// Resolve and fill Participants frontmatter + link unlinked names in body. Args: <path>, all.
// Resolve and fill Participants frontmatter + link unlinked names in body. Args: <path>, all.
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.
Create and edit JSON Canvas files (.canvas) with nodes, edges, groups, and connections. Use when working with .canvas files, creating visual canvases, mind maps, flowcharts, or when the user mentions Canvas files in Obsidian.
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.
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.
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.
Fetch & embed AI transcripts as Obsidian callouts. Args: <path>, all, refresh <path>. Prompts for URLs if empty.
| name | fill-participants |
| description | Resolve and fill Participants frontmatter + link unlinked names in body. Args: <path>, all. |
| license | MIT |
| compatibility | Requires qmd (CLI or MCP) and gws CLI when resolving names from Google Docs (read-only). See [google-workspace-cli](../_shared/google-workspace-cli.md). |
/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).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]]"
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):
For each meeting missing Participants, determine attendees using the resolution priority defined in people-resolver. In summary:
Notes: frontmatter:
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.X x Y patterns.[[@Name]] references.Meetings/PAM/Scrum/ → [[+PAM]].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.
Present results grouped into:
Also flag if any existing @Person.md files are missing key properties (FullName, Team) that were discovered from Google Docs.
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.
Use the name dictionary and matching rules from people-resolver.
Search the note body for each name variant, following the word boundary and skip rules in people-resolver.
⚠️ 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..." |
✅ for full-name matches (high confidence).⬜ for first-name-only or nickname matches (need confirmation).USER.md Identity) — these don't need wikilinks.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.
For each file, add Participants: to the YAML frontmatter just before the closing ---. Use StrReplace targeting a unique anchor (last line before ---).
For meetings where participants genuinely can't be determined:
[[+QA]], [[+Eng]]).— (em-dash) as the universal "intentionally left blank" marker for true unknowns.See /commit. Skip when called as part of a sequence (e.g. /meeting wrap).
modified: timestamp in frontmatter changes frequently; use other properties as unique anchors for StrReplace.[[@Me]].git status fails, skip the commit step entirely without error.