Source profileQuality 89/100Review permissions

jackchuka/skills/p-meeting-prep/SKILL.md

p-meeting-prep

Generate per-meeting prep briefs for today's calendar. Use when the user says "meeting prep", "prep my meetings", "prep brief", or invokes "/p-meeting-prep". Suitable for early-morning scheduled runs.

Source repository stars
15
Declared platforms
0
Static risk flags
3
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

Generate per-meeting prep briefs for today's calendar. Suitable for early-morning scheduled runs.

Best for

  • User says "meeting prep", "prep my meetings", "prep brief"
  • User invokes /p-meeting-prep
  • A scheduled cron / launchd job triggers /p-meeting-prep (typically early morning)

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/jackchuka/skills --skill "p-meeting-prep"
Safe inspection promptEditorial

Inspect the Agent Skill "p-meeting-prep" from https://github.com/jackchuka/skills/blob/7b0b33f68b8f11522e43622e5cb3bacd802999d2/p-meeting-prep/SKILL.md at commit 7b0b33f68b8f11522e43622e5cb3bacd802999d2. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Setup

    Locate this skill's directory (the folder containing this SKILL.md), then run the resolver script from there:

    Locate this skill's directory (the folder containing this SKILL.md), then run the resolver script from there:The resolver outputs each binding as key: value (one per line). Substitute each {bindingkey} placeholder below with the resolved value.If any values are missing or the user requests changes, use:
  2. 02

    Workflow

    1. Parse arguments: - --date YYYY-MM-DD (default: today, local time) - --lang ja|en (default: {defaultlang}) - --dry-run (default: false) - --no-open (default: false) 2. Compute: - TARGETDATE: the date to process, YYYY-MM-DD - WEEKDAY: short weekday name (e.g. Tue) - OUTPUTDAYDI…

    Parse arguments:--date YYYY-MM-DD (default: today, local time)--lang ja|en (default: {defaultlang})
  3. 03

    Phase 1: Initialize

    1. Parse arguments: - --date YYYY-MM-DD (default: today, local time) - --lang ja|en (default: {defaultlang}) - --dry-run (default: false) - --no-open (default: false) 2. Compute: - TARGETDATE: the date to process, YYYY-MM-DD - WEEKDAY: short weekday name (e.g. Tue) - OUTPUTDAYDI…

    Parse arguments:--date YYYY-MM-DD (default: today, local time)--lang ja|en (default: {defaultlang})
  4. 04

    Phase 2: Calendar fetch + classify

    1. Fetch the day's events. → See references/agent-gather-calendar.md 2. Filter out junk: - Declined events (the user's response is declined). - All-day events. - Events with only one attendee = the user (focus blocks, holds). 3. Classify everything else in a single LLM call. → S…

    Fetch the day's events.Filter out junk:Declined events (the user's response is declined).
  5. 05

    Phase 3: Parallel source fetch

    First, read the attendee cache once — /.cache/p-meeting-prep/attendees.json (see references/attendee-cache.md) — and pass relevant entries to the GitHub and Slack fetches so cached attendees skip live resolution entirely.

    Fireflies → references/agent-gather-fireflies-meeting-context.mdSlack → references/agent-gather-slack-meeting-context.mdGitHub → references/agent-gather-github-attendee-context.md

Permission review

Static risk signals and limitations

Runs scripts

medium · line 9

The documentation asks the agent to run terminal commands or scripts.

python <skill-dir>/scripts/skillctx-resolve.py resolve p-meeting-prep

Runs scripts

medium · line 16

The documentation asks the agent to run terminal commands or scripts.

python <skill-dir>/scripts/skillctx-resolve.py set p-meeting-prep <key> <value>

Network access

medium · line 82

The documentation includes network, browsing, or remote request actions.

| Category | Fireflies | Slack DMs/mentions | GitHub (attendees) | Slack topic search | Web (candidate) |

Writes files

medium · line 168

The documentation asks the agent to create, modify, or delete local files.

Write one file per meeting using `BRIEFS[event_id]`.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score89/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars15SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
jackchuka/skills
Skill path
p-meeting-prep/SKILL.md
Commit
7b0b33f68b8f11522e43622e5cb3bacd802999d2
License
MIT
Collected
2026-07-28
Default branch
main
View the original SKILL.md

Meeting Prep

Setup

Locate this skill's directory (the folder containing this SKILL.md), then run the resolver script from there:

python <skill-dir>/scripts/skillctx-resolve.py resolve p-meeting-prep

The resolver outputs each binding as key: value (one per line). Substitute each {binding_key} placeholder below with the resolved value.

If any values are missing or the user requests changes, use:

python <skill-dir>/scripts/skillctx-resolve.py set p-meeting-prep <key> <value>

Generate per-meeting prep briefs for today's calendar (one markdown file per meeting + an index), writing to {output_dir}/YYYY-MM-DD/.

When to Use

  • User says "meeting prep", "prep my meetings", "prep brief"
  • User invokes /p-meeting-prep
  • A scheduled cron / launchd job triggers /p-meeting-prep (typically early morning)

Prerequisites

  • gws CLI installed and authenticated (Google Calendar)
  • gh CLI authenticated (gh auth status)
  • Slack MCP connected (optional — skip gracefully if unavailable)
  • Fireflies MCP connected (optional — skip gracefully if unavailable)
  • skillctx config initialized for p-meeting-prep

Arguments

  • --date YYYY-MM-DD — Target date. Default: today.
  • --lang ja|en — Output language. Default: {default_lang}.
  • --dry-run — Print briefs to stdout instead of writing files.
  • --no-open — Skip auto-opening the index after generation.

Workflow

Phase 1: Initialize

  1. Parse arguments:
    • --date YYYY-MM-DD (default: today, local time)
    • --lang ja|en (default: {default_lang})
    • --dry-run (default: false)
    • --no-open (default: false)
  2. Compute:
    • TARGET_DATE: the date to process, YYYY-MM-DD
    • WEEKDAY: short weekday name (e.g. Tue)
    • OUTPUT_DAY_DIR: {output_dir}/{TARGET_DATE} (expand ~ and env vars)
  3. Confirm prerequisites:
    • gws is on PATH (command -v gws); if missing, fail with a clear error.
    • gh auth status succeeds; if not, fail with a clear error.
    • Slack MCP is reachable (one cheap call, e.g. slack_read_user_profile); if not, mark Slack as UNAVAILABLE and continue.
    • Fireflies MCP is reachable (one cheap call, e.g. fireflies_get_user); if not, mark Fireflies as UNAVAILABLE and continue.
  4. Record availability flags as SOURCES_AVAILABLE = {calendar: bool, github: bool, slack: bool, fireflies: bool} for use in Phase 3.

Phase 2: Calendar fetch + classify

  1. Fetch the day's events. → See references/agent-gather-calendar.md
  2. Filter out junk:
    • Declined events (the user's response is declined).
    • All-day events.
    • Events with only one attendee = the user (focus blocks, holds).
  3. Classify everything else in a single LLM call. → See references/agent-classify-meetings.md
  4. Cluster meetings by topic_key. A cluster is any set of 2+ meetings sharing the same topic_key. Singletons are clusters of one and need no cross-links.
  5. Save the classified list as MEETINGS = [{event, category, topic_key, cluster_id, …}] for Phase 3.

Phase 3: Parallel source fetch

First, read the attendee cache once — ~/.cache/p-meeting-prep/attendees.json (see references/attendee-cache.md) — and pass relevant entries to the GitHub and Slack fetches so cached attendees skip live resolution entirely.

For each meeting, pick the source set from this table:

CategoryFirefliesSlack DMs/mentionsGitHub (attendees)Slack topic searchWeb (candidate)
1:1yesyesyesnono
team-syncyesnoyes (self)yesno
externalyesyesnoyesno
interviewyesnononoyes
othernonononono

Fan out all required fetches in parallel within a single tool-use batch where possible. Deduplicate by topic_key: a Fireflies or Slack topic search keyed off topic_key is run once per cluster, not once per meeting.

For each source, follow the corresponding reference:

  • Fireflies → references/agent-gather-fireflies-meeting-context.md
  • Slack → references/agent-gather-slack-meeting-context.md
  • GitHub → references/agent-gather-github-attendee-context.md
  • Web (candidate) → references/agent-gather-web-candidate-context.md

If a source's SOURCES_AVAILABLE flag is false (from Phase 1), skip every call to it and mark the corresponding sections as _(unavailable)_ later in Phase 4.

Each fetch has a soft budget of 15 seconds; on timeout, treat as unavailable for that meeting.

Save results as MEETING_CONTEXT[event_id] = {fireflies, slack_attendees, slack_topic, github, web_candidate}.

Phase 4: Synthesize briefs

For each meeting in MEETINGS:

  1. Pick the template by category:
    • 1:1references/template-1on1.md
    • team-syncreferences/template-team-sync.md
    • externalreferences/template-external.md
    • interviewreferences/template-interview.md
    • otherreferences/template-other.md
  2. Render the template using MEETING_CONTEXT[event_id], in language {lang}.
  3. If the meeting belongs to a cluster of size ≥ 2, add the Related today: line referencing the sibling filenames computed in Phase 5.
  4. Empty data sections render as _(no relevant context found)_ rather than being omitted, so the user can tell the skill looked.

Store the rendered markdown per event as BRIEFS[event_id]. This completes Pass 1.

Pass 2 — cross-scan (after all briefs are drafted):

Filenames are deterministic from Phase 2 data (chronological order + start time + title slug) — compute them before Pass 2 so both cluster links and overlap links can reference sibling files.

  1. Detect overlaps across the day's drafts:
    • (a) shared non-self attendees appearing in 2+ meetings;
    • (b) shared salient topics/entities — proper nouns, repo names, project names appearing in 2+ briefs' bodies (e.g. changelog-management).
  2. For each overlap, inject into the header block of every affected brief: Related today: [<sibling file>](<sibling file>) — <shared attendee or topic, one short clause> Multiple siblings → comma-separated. Merge with any existing cluster-based Related today: line rather than duplicating it.
  3. other-category meetings are excluded from the cross-scan (they have no body and no fetches).
  4. Record the overlap list as OVERLAPS for the index (Phase 5).

Phase 5: Write files

  1. Compute OUTPUT_DAY_DIR = {output_dir}/<TARGET_DATE> (expand ~).
  2. If OUTPUT_DAY_DIR already exists:
    • Remove any existing <OUTPUT_DAY_DIR>.bak/.
    • mv the current OUTPUT_DAY_DIR to <OUTPUT_DAY_DIR>.bak/.
  3. Create OUTPUT_DAY_DIR.
  4. Compute filenames in chronological order:
    • NN = zero-padded sequence starting at 01 (the index uses 00).
    • HHMM = local start time, 24-hour, no colon.
    • <slug> = ASCII-folded, lowercase, hyphenated title; collapse runs of non-[a-z0-9] to a single -; trim to 40 chars; strip leading/trailing -.
    • If ASCII-folding leaves fewer than 4 useful characters (typical for Japanese titles), romanize instead: kanji/kana → romaji words, katakana loanwords → their English source word. Example: 採用:グッズブレストMTGsaiyo-goods-brainstorm-mtg. Same 40-char cap and collision rule.
    • Final name: NN-HHMM-<slug>.md.
  5. Write 00-index.md first:
# Meeting prep — <TARGET_DATE> (<WEEKDAY>)
<N> meetings · <K> categories · <C> clusters

## Today
- HH:MM **<title>** `[category]` → [NN-HHMM-slug.md](NN-HHMM-slug.md)<` · cluster: <topic_key>` if cluster size ≥ 2>
... (one bullet per meeting, chronological)

## Clusters
- `<topic_key>` — <count> meetings (HH:MM, HH:MM, ...)
... (only clusters with size ≥ 2)

## Overlaps
- <shared attendee or topic> — <count> meetings (HH:MM, HH:MM, ...)
... (from Pass 2 cross-scan; omit the section when `OVERLAPS` is empty)

If N == 0, the index body is No meetings today. and no per-meeting files are written.

  1. Write one file per meeting using BRIEFS[event_id].
  2. Merge any live attendee resolutions from this run back into ~/.cache/p-meeting-prep/attendees.json (read-modify-write; see references/attendee-cache.md).
  3. Print the absolute path to 00-index.md and a one-line summary (N meetings · K categories · C clusters).
  4. On macOS (uname -s = Darwin), unless --no-open or --dry-run, run open "<00-index.md>".
  5. If --dry-run, do NOT touch the filesystem at all. Instead, print to stdout: the index body, then each brief separated by ---.

Error Handling

ErrorAction
gws not installed or not authenticatedAbort with clear error message. The calendar is required.
gh not authenticatedMark GitHub UNAVAILABLE; continue. Add a warning to the top of 00-index.md.
Slack MCP unavailableMark Slack UNAVAILABLE; continue. Slack sections render as _(unavailable)_.
Fireflies MCP unavailableMark Fireflies UNAVAILABLE; continue. Fireflies sections render as _(unavailable)_.
Classification LLM call fails / bad JSONTreat every meeting as other. Add a warning to the top of 00-index.md.
Per-meeting source fetch timeout (15s)Section renders as _(unavailable)_. No retry within this run.
OUTPUT_DAY_DIR exists from a prior runRename to <dir>.bak/ (replacing any prior backup) before writing.
Attendee cache missing / corrupt JSONTreat as empty cache; resolve live; rewrite the file at end of run.
Calendar empty for the target dateWrite 00-index.md with body No meetings today. Exit 0.
--dry-run setPrint to stdout only. Do not touch the filesystem. Do not call open.
Filename slug collision (rare)Append -2, -3, … to the slug until unique within the day's directory.

Scheduling

This skill is user-triggered. Two recipes for running it automatically each morning are documented in references/cron-recipes.md. Whichever you pick, ensure the scheduled environment inherits credentials for gh, gws, the Slack MCP server, and the Fireflies MCP server.

Alternatives

Compare before choosing