plugins/sjawhar/skills/meeting-actions/SKILL.md
Process ghost-wispr summary-ready Envoy events into GitHub issues and Slack summaries. Use when setting up or running a persistent OpenCode session subscribed to notifications.ghost-wispr.summary-ready.
npx skillsauth add sjawhar/dotfiles meeting-actionsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Turn completed Ghost Wispr meetings into tracked follow-through.
This is a specific workflow for ghost-wispr summary-ready event -> transcript fetch -> LLM extraction -> GitHub issues -> Slack summary.
Configure the target repo, Slack channel, model, and tracking file.
Start a dedicated OpenCode session and load this skill.
Subscribe to Envoy:
envoy_subscribe(topics=["notifications.ghost-wispr.summary-ready"])
Keep that session running.
When an event arrives, follow the workflow below without adding a human approval step.
envoy_subscribe, envoy_list, envoy_unsubscribe for the event streamcurlgh issue create for GitHub issue creationskill_mcp(... slack ...) via the slack-bot skill for Slack postingRead / Write / Edit-style file access for the idempotency fileRelated references:
ghost-wispr skill for API usage patternsslack-bot skill for Slack posting patternsSet or decide these values before processing live events:
GHOST_WISPR_HOST — defaults to http://localhost:8080 if unsetMEETING_ACTIONS_REPO — target repo, for example sjawhar/ghost-wisprMEETING_ACTIONS_SLACK_CHANNEL — Slack destination, for example #engineeringMEETING_ACTIONS_MODEL — gemini or claudeMEETING_ACTIONS_TRACKING_FILE — default: ~/.config/opencode/meeting-actions-processed.jsonMEETING_ACTIONS_LABEL — default: meeting-actionIf repo or Slack channel is unknown, stop and configure them before creating issues.
Subscribe to:
notifications.ghost-wispr.summary-ready
Ghost Wispr publishes an Envoy envelope with metadata in payload_summary.
Example envelope shape:
{
"event_id": "evt_123",
"source": "ghost-wispr",
"topic": "notifications.ghost-wispr.summary-ready",
"dedupe_key": "session_abc",
"payload_summary": "{\"session_id\":\"session_abc\",\"title\":\"Weekly product sync\",\"summary_preset\":\"meeting\",\"started_at\":\"2026-04-02T14:00:00Z\",\"ended_at\":\"2026-04-02T14:37:00Z\",\"duration_seconds\":2220}"
}
Decode payload_summary before doing anything else.
Track processed meetings in:
~/.config/opencode/meeting-actions-processed.json
Recommended file shape:
{
"processed": {
"session_abc": {
"status": "completed",
"processed_at": "2026-04-02T15:10:00Z",
"issue_urls": [
"https://github.com/sjawhar/ghost-wispr/issues/123"
],
"slack_channel": "#engineering"
}
}
}
Use these states:
processing — written immediately after dedupe passescompleted — all intended issues created and Slack summary postedcompleted_with_errors — issue creation partially failed after one retry; Slack summary was still posted with failuresllm_failed — extraction was invalid or unusable; no issues createdRules:
session_id already exists with completed or completed_with_errors, skip the event.processing before fetching the transcript.llm_failed, log it, and stop.source == "ghost-wispr"topic == "notifications.ghost-wispr.summary-ready"payload_summary into:
session_idtitlesummary_presetstarted_atended_atduration_secondsIf session_id is missing, log and stop.
MEETING_ACTIONS_TRACKING_FILE{"processed":{}}session_id is already marked completed or completed_with_errors, skip the eventprocessing entry immediatelyUse Ghost Wispr's session detail endpoint:
curl -s "$GHOST_WISPR_HOST/api/sessions/$SESSION_ID"
Expect:
{
"session": {
"id": "session_abc",
"title": "Weekly product sync",
"summary": "...",
"canonical_transcript": "..."
},
"segments": [
{
"speaker": "Ben",
"text": "I'll handle the rollout checklist"
}
]
}
Build the LLM input like this:
segmentssession.canonical_transcriptsession.refined_transcriptsession.summary and the metadata from payload_summaryUse the configured model, but require a strict JSON response.
Prompt template:
You are extracting concrete outcomes from a meeting transcript.
Return ONLY valid JSON with this exact shape:
{
"action_items": [
{
"title": "string",
"description": "string",
"assignee": "string",
"priority": "high|medium|low",
"quotes": ["string"]
}
],
"decisions": [
{
"title": "string",
"context": "string",
"quotes": ["string"]
}
],
"follow_ups": [
{
"title": "string",
"context": "string"
}
]
}
Rules:
- Extract only commitments, decisions, and unresolved follow-ups that are supported by the transcript or summary.
- Do not invent owners, dates, priorities, or work items.
- Use "unassigned" when no assignee is explicit.
- Keep action titles short and issue-ready.
- Put enough context in each description for a GitHub issue body.
- Quotes must be short verbatim supporting snippets from the transcript.
- If there are no action items, return an empty array.
- If the meeting is too ambiguous to extract safely, return empty arrays rather than guessing.
Meeting metadata:
<insert session metadata JSON>
Meeting summary:
<insert session.summary>
Transcript:
<insert speaker-labeled transcript>
Validation rules:
action_items, decisions, and follow_upstitle, description, assignee, priority, and quotesllm_failed, and create no issuesCreate one issue per extracted action item.
Command pattern:
gh issue create \
--repo "$MEETING_ACTIONS_REPO" \
--title "$ACTION_TITLE" \
--label "$MEETING_ACTIONS_LABEL" \
--body "$ISSUE_BODY"
Recommended issue body template:
## Meeting
- Title: <meeting title>
- Session ID: <session id>
- Started: <started_at>
- Ended: <ended_at>
- Duration: <duration_seconds> seconds
## Action
- Assignee: <assignee>
- Priority: <priority>
## Context
<description>
## Supporting quotes
- "<quote 1>"
- "<quote 2>"
## Related decisions
- <decision title>
## Follow-ups
- <follow-up title>
Error handling:
gh issue create fails, retry once.Never create placeholder or garbage issues when extraction is uncertain.
Prefer the slack-bot skill's MCP server.
Pattern:
skill_mcp(
mcp_name="slack",
tool_name="conversations_add_message",
arguments={
"channel_id": "#engineering",
"payload": "*Meeting:* Weekly product sync\n*Duration:* 37m\n*Issues:* <https://github.com/sjawhar/ghost-wispr/issues/123|#123> rollout checklist\n*Decisions:* Use Envoy for summary delivery",
"content_type": "text/plain"
}
)
Slack summary format:
Use Slack mrkdwn, not markdown headings.
Direct Slack Web API fallback if MCP is unavailable:
curl -s -X POST "https://slack.com/api/chat.postMessage" \
-H "Authorization: Bearer $SLACK_BOT_TOKEN" \
-H "Content-Type: application/json" \
-d '{"channel":"'$MEETING_ACTIONS_SLACK_CHANNEL'","text":"Meeting actions posted"}'
completedcompleted_with_errorsprocessed_at in RFC3339 formatllm_failed, stop, create no issuescompleted_with_errorssession_idStart a dedicated OpenCode session for meeting actions.
Load this skill.
Confirm configuration values are available.
Subscribe with:
envoy_subscribe(topics=["notifications.ghost-wispr.summary-ready"])
Verify the active subscription with envoy_list().
Leave the session running so Envoy can deliver events as they arrive.
If Envoy/NATS JetStream durability is configured for this topic, queued messages can survive subscriber downtime and be consumed later.
Use this when the session cannot stay online continuously, but still keep the local idempotency file because durable consumers can redeliver messages.
development
Use when searching flights, hotels, or rental cars; comparing fares across flexible dates; discovering cheap destinations from a fixed origin; or hunting hidden-city ticketing deals. Trigger on multi-city itineraries, fare calendars, "where can I fly cheaply", price-sensitive trip planning, or any time the user wants a sanity-check against Google Flights pricing — Skiplagged surfaces hidden-city deals other engines deliberately hide.
development
Search the web via Ceramic Search (lexical/keyword-based). Use when looking up current events, recent news, time-sensitive facts, specific people/products/companies, technical docs, or any topic requiring fresh web results. Triggers on "search the web", "look up", "find recent", "latest news", "current", or when built-in knowledge is likely stale.
tools
Use when reading WhatsApp messages, searching conversations, sending messages, listing chats, or interacting with WhatsApp workspaces
tools
Watch CI status, fix failures, and merge when green