/meeting-copilot
Use when preparing for, running, or closing a live meeting with an AI assistant dashboard. Triggers on "meeting copilot", "live copilot", "prepare for a call", "update copilot", "close the session", or requests to turn transcript chunks into meeting questions, topic maps,
$ npx -y skills add serejaris/personal-corp-os --skill meeting-copilot --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/meeting-copilot
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when preparing for, running, or closing a live meeting with an AI assistant dashboard. Triggers on "meeting copilot", "live copilot", "prepare for a call", "update copilot", "close the session", or requests to turn transcript chunks into meeting questions, topic maps,
SKILL.md
meeting-copilot.SKILL.mdname: meeting-copilot
description: Use when preparing for, running, or closing a live meeting with an AI assistant dashboard. Triggers on "meeting copilot", "live copilot", "prepare for a call", "update copilot", "close the session", or requests to turn transcript chunks into meeting questions, topic maps, decisions, and follow-ups.
Meeting Copilot
Create and maintain a local HTML dashboard for a live meeting. The dashboard gives the user a second-screen view of context, questions, topic progress, decisions, risks, and follow-ups while the call is happening.
This skill is designed for private workspaces. Do not publish raw transcripts, client names, personal notes, or generated meeting artifacts unless the user explicitly asks for a sanitized export.
Modes
Use one of three modes:
| Mode | When | Output | | --- | --- | --- | | CREATE | Before the meeting | A local dashboard app with prepared context and questions | | UPDATE | During the meeting | Updated questions, topics, decisions, risks, and follow-ups from transcript chunks | | CLOSE | After the meeting | Final summary, action items, CRM or notes updates, and optional sanitized export |
CREATE
Inputs:
- meeting title or contact name
- meeting type, for example discovery, sales, mentoring, support, hiring, partnership
- date
- available context files, if any
- output directory
Create this structure:
YYYY-MM-DD-meeting-copilot/
app/
index.html
app.js
components.js
styles.css
tabs/
briefing.js
questions.js
topics.js
decisions.js
followups.js
state/
transcript.txt
diff.pyDashboard tabs:
- `briefing.js`: meeting goal, known context, participants, constraints
- `questions.js`: grouped live questions
- `topics.js`: planned and discussed topics
- `decisions.js`: decisions, risks, blockers, open loops
- `followups.js`: action items, owners, due dates, next message draft
If the app uses ES modules, serve it over HTTP:
cd YYYY-MM-DD-meeting-copilot/app
python3 -m http.server 8080
Then open `http://127.0.0.1:8080`.
UPDATE
Input is usually a full transcript copied from a transcription tool. Treat it as sensitive.
Use suffix diffing so the agent processes only the new part:
#!/usr/bin/env python3
import pathlib
import sys
baseline = pathlib.Path(__file__).parent / "transcript.txt"
old = baseline.read_text() if baseline.exists() else ""
new = sys.stdin.read()
old_s = old.strip()
new_s = new.strip()
if not old_s:
sys.stdout.write(new)
elif new_s.startswith(old_s):
sys.stdout.write(new_s[len(old_s):].lstrip())
else:
sys.stderr.write("[diff] baseline mismatch; using full transcript\n")
sys.stdout.write(new)Recommended update flow:
1. Save incoming transcript to `state/transcript-new.txt`. 2. Run `python3 state/diff.py < state/transcript-new.txt > state/delta.txt`. 3. Read `state/delta.txt`. 4. Update only live tabs: `questions.js`, `topics.js`, `decisions.js`, `followups.js`. 5. Move `state/transcript-new.txt` to `state/transcript.txt`. 6. Tell the user what changed and ask them to refresh the dashboard.
Do not update long-term profile or history files during UPDATE unless the user asks. Keep the live loop fast.
Question Design
Group questions by topic. Avoid one long list.
Use 3 to 6 groups, with 3 to 6 questions per group:
function questionGroup(title, items) {
if (!items.length) return "";
return card(title, `<ul>${items.map((item) => `<li>${item}</li>`).join("")}</ul>`);
}Good groups:
- Check-in and goal
- Business context
- Budget, timeline, and constraints
- Decision criteria
- Risks and blockers
- Next steps
Mark critical questions clearly, especially around money, deadlines, authority, legal constraints, and irreversible decisions.
Topic Map
Track meeting flow as planned, discussed, skipped, or unresolved.
Use a compact visual language:
- filled marker: discussed
- hollow marker: planned but not reached
- warning marker: blocked or risky
- check marker: decided
If using a graph, include only topics, projects, concepts, decisions, and risks. Do not put private participant names into public exports.
CLOSE
At the end of the meeting:
1. Process the final transcript chunk. 2. Write a concise meeting summary. 3. Extract decisions, action items, owners, deadlines, and open questions. 4. Update the user's chosen system of record, for example CRM, project issue, notes folder, or ticket. 5. Create a follow-up message draft. 6. If requested, create a sanitized export with names, company data, private links, and raw transcript removed.
Close output template:
# Meeting Summary
## Outcome
## Decisions
## Action Items
| Item | Owner | Due | Status |
| --- | --- | --- | --- |
## Open Questions
## Follow-up Draft
Privacy Rules
Never put these in public artifacts:
- raw transcript
- private names, emails, handles, phone numbers
- company secrets, pricing, revenue, pipeline data
- private repository paths or URLs
- authentication tokens, meeting links, calendar links
- internal prompts, model names, or routing rules that expose private operations
For public examples, use placeholders:
- `Participant A`
- `Company X`
- `~/workspace/crm`
- `https://example.com/private-doc`
Quality Bar
Before calling the work done:
- dashboard opens locally
- tabs render without console-breaking syntax errors
- sensitive data is not present in public docs
- close summary has decisions and action items separated
- generated public export is clearly marked as sanitized
Read more
name: meeting-copilot description: Use when preparing for, running, or closing a live meeting with an AI assistant dashboard. Triggers on "meeting copilot", "live copilot", "prepare for a call", "update copilot", "close the session", or requests to turn transcript chunks into meeting questions, topic maps, decisions, and follow-ups.
Meeting Copilot
Create and maintain a local HTML dashboard for a live meeting. The dashboard gives the user a second-screen view of context, questions, topic progress, decisions, risks, and follow-ups while the call is happening.
This skill is designed for private workspaces. Do not publish raw transcripts, client names, personal notes, or generated meeting artifacts unless the user explicitly asks for a sanitized export.
Modes
Use one of three modes:
| Mode | When | Output | | --- | --- | --- | | CREATE | Before the meeting | A local dashboard app with prepared context and questions | | UPDATE | During the meeting | Updated questions, topics, decisions, risks, and follow-ups from transcript chunks | | CLOSE | After the meeting | Final summary, action items, CRM or notes updates, and optional sanitized export |
CREATE
Inputs:
- meeting title or contact name
- meeting type, for example discovery, sales, mentoring, support, hiring, partnership
- date
- available context files, if any
- output directory
Create this structure:
YYYY-MM-DD-meeting-copilot/
app/
index.html
app.js
components.js
styles.css
tabs/
briefing.js
questions.js
topics.js
decisions.js
followups.js
state/
transcript.txt
diff.pyDashboard tabs:
- `briefing.js`: meeting goal, known context, participants, constraints
- `questions.js`: grouped live questions
- `topics.js`: planned and discussed topics
- `decisions.js`: decisions, risks, blockers, open loops
- `followups.js`: action items, owners, due dates, next message draft
If the app uses ES modules, serve it over HTTP:
cd YYYY-MM-DD-meeting-copilot/app python3 -m http.server 8080
Then open `http://127.0.0.1:8080`.
UPDATE
Input is usually a full transcript copied from a transcription tool. Treat it as sensitive.
Use suffix diffing so the agent processes only the new part:
#!/usr/bin/env python3
import pathlib
import sys
baseline = pathlib.Path(__file__).parent / "transcript.txt"
old = baseline.read_text() if baseline.exists() else ""
new = sys.stdin.read()
old_s = old.strip()
new_s = new.strip()
if not old_s:
sys.stdout.write(new)
elif new_s.startswith(old_s):
sys.stdout.write(new_s[len(old_s):].lstrip())
else:
sys.stderr.write("[diff] baseline mismatch; using full transcript\n")
sys.stdout.write(new)Recommended update flow:
1. Save incoming transcript to `state/transcript-new.txt`. 2. Run `python3 state/diff.py < state/transcript-new.txt > state/delta.txt`. 3. Read `state/delta.txt`. 4. Update only live tabs: `questions.js`, `topics.js`, `decisions.js`, `followups.js`. 5. Move `state/transcript-new.txt` to `state/transcript.txt`. 6. Tell the user what changed and ask them to refresh the dashboard.
Do not update long-term profile or history files during UPDATE unless the user asks. Keep the live loop fast.
Question Design
Group questions by topic. Avoid one long list.
Use 3 to 6 groups, with 3 to 6 questions per group:
function questionGroup(title, items) {
if (!items.length) return "";
return card(title, `<ul>${items.map((item) => `<li>${item}</li>`).join("")}</ul>`);
}Good groups:
- Check-in and goal
- Business context
- Budget, timeline, and constraints
- Decision criteria
- Risks and blockers
- Next steps
Mark critical questions clearly, especially around money, deadlines, authority, legal constraints, and irreversible decisions.
Topic Map
Track meeting flow as planned, discussed, skipped, or unresolved.
Use a compact visual language:
- filled marker: discussed
- hollow marker: planned but not reached
- warning marker: blocked or risky
- check marker: decided
If using a graph, include only topics, projects, concepts, decisions, and risks. Do not put private participant names into public exports.
CLOSE
At the end of the meeting:
1. Process the final transcript chunk. 2. Write a concise meeting summary. 3. Extract decisions, action items, owners, deadlines, and open questions. 4. Update the user's chosen system of record, for example CRM, project issue, notes folder, or ticket. 5. Create a follow-up message draft. 6. If requested, create a sanitized export with names, company data, private links, and raw transcript removed.
Close output template:
# Meeting Summary ## Outcome ## Decisions ## Action Items | Item | Owner | Due | Status | | --- | --- | --- | --- | ## Open Questions ## Follow-up Draft
Privacy Rules
Never put these in public artifacts:
- raw transcript
- private names, emails, handles, phone numbers
- company secrets, pricing, revenue, pipeline data
- private repository paths or URLs
- authentication tokens, meeting links, calendar links
- internal prompts, model names, or routing rules that expose private operations
For public examples, use placeholders:
- `Participant A`
- `Company X`
- `~/workspace/crm`
- `https://example.com/private-doc`
Quality Bar
Before calling the work done:
- dashboard opens locally
- tabs render without console-breaking syntax errors
- sensitive data is not present in public docs
- close summary has decisions and action items separated
- generated public export is clearly marked as sanitized
Personal Corp is a way to run a one-person company through AI agents: tasks out of your head, departments instead of one person's memory, a weekly retro instead of "I'll sort it out someday".
Other skills on personal-corp-os.
- /paperclip-api
Use when managing Paperclip AI agent companies - creating tasks, managing agents, approving hires, running heartbeats, or any Paperclip control-plane operations via CLI or REST API. Triggers on "paperclip", "задача агенту", "одобри найм", "heartbeat", "запусти агента".
Open skill - /art-director
Orchestrate iterative visual style searches with branch prompts, decision graphs, feedback loops, and final direction selection.
Open skill - /cc-analytics
Use when user asks for Claude Code usage stats, weekly analytics, project activity summary, or wants to see what projects were worked on. Triggers on "аналитика", "статистика claude", "cc stats", "weekly report", "что делал
Open skill - /ceo-council
Use when needing strategic project analysis from multiple independent expert perspectives. Triggers on business decisions, growth strategy, product direction, competitive analysis, or any situation where diverse C-level opinions reduce blind spots
Open skill - /claude-md-writer
Use when creating or refactoring CLAUDE.md files - enforces best practices for size, structure, and content organization
Open skill - /corp-doctor
Use when a Personal Corp operating loop needs setup, repair, a new department, or task routing: HQ files and agent rules, GitHub issue workflow, corp-* owner map, department repositories, or deciding which repo an issue belongs to. Triggers: "corp doctor", "почини контур",
Open skill

