Help us improve
Share bugs, ideas, or general feedback.
From astravue
Extracts action items from meeting notes, transcripts, or brain dumps and creates owned, dated tasks in Astravue. Useful for turning unstructured discussion into structured tasks.
npx claudepluginhub astravueorg/astravue-mcp-server --plugin astravueHow this skill is triggered — by the user, by Claude, or both
Slash command
/astravue:capturing-meeting-actionsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
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.
Extracts action items from transcripts with assignee/priority inference, automates follow-up emails, and syncs tasks to Asana, Linear, or Jira. For meeting follow-up automation.
Extracts action items and assignees from meeting notes or Confluence pages, looks up Jira account IDs, and creates tasks.
Extracts action items from a meeting note and adds them to a to-do file, separating your tasks from others'. Invoke via /meeting-todos.
Share bugs, ideas, or general feedback.
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.
Read the source and extract candidate actions
Pull every commitment, decision-with-follow-up, and "someone should…" out of the notes. For each, capture:
Ignore pure status updates and discussion that produced no commitment.
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.
Pick the target project
Confirm which project the tasks belong to. Use astravue_list_projects if unclear.
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.
Create after approval
astravue_bulk_create_tasks — create the confirmed action items in one callastravue_add_task_comment — optionally attach the source line as a comment for contextReport which tasks were created, and re-list any items that were skipped because they lacked an owner or due date.