Extracts action items from meeting notes, transcripts, or a brain dump and creates them as owned, dated tasks in Astravue. Use when the user pastes meeting notes or a transcript, asks to turn notes or standup discussion into tasks, capture action items, or "make tasks out of this".
Scanned 8/30/2026
Install to Claude Code
npx -y skills add AstravueOrg/astravue-mcp-server --skill capturing-meeting-actions --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Capturing Meeting Actions?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/astravueorg-capturing-meeting-actions)More formats (shields.io, HTML) on the badges page.
---
name: capturing-meeting-actions
description: Extracts action items from meeting notes, transcripts, or a brain dump and creates them as owned, dated tasks in Astravue. Use when the user pastes meeting notes or a transcript, asks to turn notes or standup discussion into tasks, capture action items, or "make tasks out of this".
---
# Capturing Meeting Actions
Converts unstructured discussion into structured, traceable tasks. Every action item should end up with an owner, a due date, and a link back to where it came from — that traceability is what makes the output trustworthy.
## Workflow
1. **Read the source and extract candidate actions**
Pull every commitment, decision-with-follow-up, and "someone should…" out of the notes. For each, capture:
- A clear task title (imperative: "Send the revised quote to Acme")
- The owner named or implied in the text
- A due date if stated or inferable ("by Friday", "before launch")
- The source line, so the task traces back to the discussion
Ignore pure status updates and discussion that produced no commitment.
2. **Resolve owners to workspace members**
For each named owner, resolve to a real member with `astravue_get_member_by_email` (if an email is given) or `astravue_get_workspace_members` (to match by name). Flag any owner you can't resolve rather than guessing.
3. **Pick the target project**
Confirm which project the tasks belong to. Use `astravue_list_projects` if unclear.
4. **Present the action list and confirm**
Show a table: title | owner | due date | source. Mark rows missing an owner or due date so the user can fill them. Ask for approval before creating anything.
5. **Create after approval**
- `astravue_bulk_create_tasks` — create the confirmed action items in one call
- `astravue_add_task_comment` — optionally attach the source line as a comment for context
Report which tasks were created, and re-list any items that were skipped because they lacked an owner or due date.
## Important
- Every action item needs an owner and a due date — flag the ones that don't rather than creating orphan tasks.
- Resolve owners against real members; never assign to an unverified name.
- Don't invent due dates the notes don't support — leave them empty and flag instead.
- Capture commitments, not status chatter.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!