agent-browser
Browser automation using Vercel's agent-browser CLI. Use when you need to interact with web pages, fill forms, take screenshots, or scrape data. Alternative to…
Turn synced meetings into updated person pages, extracted tasks and organized notes. Use when the user says 'process my meetings', 'catch up my notes', or after Granola/Otter syncs. Also use proactively when unprocessed meetings exist. Not for prepping an upcoming meeting; use
$ npx -y skills add davekilleen/Dex --skill process-meetings --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/process-meetingsContext preview
The summary Claude sees to decide when to auto-load this skill.
Turn synced meetings into updated person pages, extracted tasks and organized notes. Use when the user says 'process my meetings', 'catch up my notes', or after Granola/Otter syncs. Also use proactively when unprocessed meetings exist. Not for prepping an upcoming meeting; use
name: process-meetings
description: "Turn synced meetings into updated person pages, extracted tasks and organized notes. Use when the user says 'process my meetings', 'catch up my notes', or after Granola/Otter syncs. Also use proactively when unprocessed meetings exist. Not for prepping an upcoming meeting; use `meeting-prep`."
model_hint: balanced
hooks:
PostToolUse:
- matcher: Write
type: command
command: "node .claude/hooks/post-meeting-person-update.cjs"Run inline in the current conversation by default, so this work can see what the user has already discussed, decided, or settled this session. Do not fork merely because this skill was selected. Only run in the background when the user explicitly asks for a background run or the host has already obtained a specific background-work approval for this run.
This skill stays inline as described above: it keeps session awareness, it asks the user the questions, and it owns every interactive step. What it does NOT do inline is the bulk read-gathering, which on a mature vault (hundreds of notes, thousands of indexed messages, a live calendar and multiple integrations) can be large enough to exhaust the main conversation before the useful work starts.
So the gathering-and-processing phase is delegated to one `general-purpose` subagent via the Agent tool, using the self-contained prompt in this skill's `AGENT_INSTRUCTIONS.md`:
1. Read `.claude/skills/process-meetings/AGENT_INSTRUCTIONS.md`. 2. Substitute its placeholders (`{{ARGS}}`, the arguments passed to this skill). 3. Call the Agent tool with `subagent_type: "general-purpose"`, that prompt, and a short description. 4. Display its summary report.
The subagent inherits MCP connections, runs in its own context, and that context is freed when it completes, so only its findings reach this conversation.
**Use `AGENT_INSTRUCTIONS.md` verbatim.** Read the file and pass its content as the subagent prompt, substituting only the placeholders. Do NOT hand-write a replacement brief from what you already know about the meetings: that is how steps get silently dropped, and the omission looks complete because nothing errors. If context from this conversation is worth adding, APPEND it to the file's content; never substitute for it.
**Two caveats that are load-bearing:**
PostToolUse hook `post-meeting-person-update.cjs` is declared in this SKILL.md's frontmatter, so it belongs to this skill's run and must not be assumed to cover a subagent's writes. `AGENT_INSTRUCTIONS.md` therefore has the subagent update person pages itself. Do not remove that instruction believing the hook covers it. It is also safe if the hook does run for those writes: both write the same "Recent Interactions" line format, and both skip a person page that already references the meeting, so the entry cannot be added twice.
usable, say so plainly and run the processing inline from the same `AGENT_INSTRUCTIONS.md`. A missing subagent must never mean a missing result.
**Stays inline:** the background-sync status check when it needs setup guidance (`--setup`), the Granola pre-flight message when no API key is connected, confirming each detected soft commitment before any task is created, resolving ambiguous person matches and entity suggestions, and presenting the final summary report.
**Check the report for unstamped meetings.** The subagent leaves a meeting without its `tasks-extracted` marker whenever a task failed to create or stamp, and reports the exact failing line. Surface those lines rather than burying them: an unstamped meeting is the safe state, but it stays flagged as waiting until someone resolves it.
**The report is a claim, not evidence — check it before repeating it.** This subagent writes to the vault, and its summary states counts the user will act on. Before displaying it, verify the claims cheaply against the vault:
(`list_tasks`, or read the file).
actually in that note.
If a claim does not hold, say so plainly in the summary you present and treat that meeting as unprocessed. Never pass an unverified count to the user as fact, and never repeat "processing complete" on the strength of the report alone.
Process meetings that have been synced from Granola by the background automation. Updates person pages, extracts tasks, and organizes meeting notes.
This skill supports background execution. When invoked: 1. Acknowledge: "Processing [N] meetings in the background. I'll let you know when done." 2. Process all meetings 3. On completion, provide summary: "[N] meetings processed. [X] person pages updated. [Y] action items created."
Meetings are synced automatically every 30 minutes by a background process. This command reads those synced files and:
**No terminal commands are shown** - the heavy lifting happens in the background.
Read `meeting_sources` in `System/user-profile.yaml` before assuming a recorder. The configured `primary` is provenance, not permission or tool
A personal operating system for your work. Strategic work management, meeting intelligence, relationship tracking, daily planning — all configured for your specific role.
Repo: davekilleen/Dex
Browser automation using Vercel's agent-browser CLI. Use when you need to interact with web pages, fill forms, take screenshots, or scrape data. Alternative to…
Build applications where agents are first-class citizens. Use this skill when designing autonomous agents, creating MCP tools, implementing self-modifying…
This skill should be used when writing Ruby gems following Andrew Kane's proven patterns and philosophy. It applies when creating new Ruby gems, refactoring…
This skill should be used before implementing features, building components, or making changes. It guides exploring user intent, approaches, and design…
Capture solved problems as categorized documentation with YAML frontmatter for fast lookup
Expert guidance for creating, writing, and refining Claude Code Skills. Use when working with SKILL.md files, authoring new skills, improving existing skills,…