process-meeting
npx skills add https://github.com/superinterface-labs/superpaper --skill process-meeting
Agent 安装分布
Skill 文档
process-meeting
Turns a meeting transcript into structured knowledge and actionable items. Stores the source, extracts what matters, routes to the right places.
When to use
- “Process this meeting”, “here’s a transcript”
- Human shares output from Granola, Otter, or any meeting recorder
- After any significant conversation worth capturing
Inputs
| Input | Required | Description |
|---|---|---|
| transcript | yes | Meeting text â pasted, file path, or URL |
| context | no | Meeting name, participants, project it relates to |
Process
STEP 1 â Store source
Save the raw transcript to superpaper/sources/meetings/ with frontmatter:
type: source
source: meeting
participants: []
created: YYYY-MM-DD
STEP 2 â Extract
Read the full transcript. Retrieve knowledge neighborhood for mentioned concepts, people, and projects. Extract:
- Decisions â what was decided and by whom
- Action items â who committed to what, with deadlines if mentioned
- Insights â ideas, frameworks, connections worth remembering
- Open questions â unresolved topics that need follow-up
- Commitments â promises made (by human or others)
STEP 3 â Route (atomic-first)
Extract aggressively â every distinct concept, quote, decision, and finding deserves its own atomic note. A quote by a participant â its own note linked to that person’s people/ entry. A framework or mental model mentioned â its own concept note. The more atoms, the richer the connection network.
- Decisions â append to [[Decisions log]] with date, participants, reasoning. If the decision reasoning is substantial, also create an atomic
type: decisionnote. - Insights worth keeping â create atomic notes in
superpaper/concepts/. One concept per note. Link to source transcript (![[transcript#^passage]]) and related existing notes. Preserve attribution â who said it, in what context. - People context â create or update
people/notes for participants. Add new context, relationship info, or notable quotes (as their own linked notes). - Learnings â append to [[Learning log]]
- Action items â add to the task board (
apps/My tasks.md) under Todo - Project-relevant items â update the relevant project note in
superpaper/projects/ - If the meeting produced 3+ atomic notes, create a lightweight hub note that embeds them with connective prose â this becomes the “processed meeting summary.”
STEP 4 â Agent log summary
Append to today’s agent log (inbox/log/YYYY-MM-DD):
### Meeting: [name] â HH:MM
- **With:** [participants]
- **Decisions:** [1-line each]
- **Actions:** N items added to board
- **Insights:** [[note1]], [[note2]]
- **Follow up:** [open questions]
Never write to the human’s daily note (daily/YYYY-MM-DD) â it’s a pure date anchor.
Outputs
- Source transcript in
superpaper/sources/meetings/ - Updated living documents (Decisions log, Learning log)
- 0+ new atomic notes in entity folders
- Action items on task board
- Agent log meeting summary (
inbox/log/YYYY-MM-DD)
Decision authority
- YOU DECIDE: what to extract, severity/priority of action items, routing
- ESCALATE TO HUMAN: anything involving commitments to others, sensitive content, ambiguous decisions
All notes created by this skill must include created-by: ai. The meeting transcript itself is created-by: human â never modify its body, only update frontmatter properties. Source notes, atomic notes, log entries, and board cards are created-by: ai.