capture-tasks-from-meeting-notes
Analyze meeting notes to find action items and create Jira tasks for assigned work. When an agent needs to: (1) Create Jira tasks or tickets from meeting notes, (2) Extract or find action items from notes or Confluence pages, (3) Parse meeting notes for assigned tasks, or (4) Analyze notes and generate tasks for team members. Identifies assignees, looks up account IDs, and creates tasks with proper context.
What this skill does
# Capture Tasks from Meeting Notes ## Keywords meeting notes, action items, create tasks, create tickets, extract tasks, parse notes, analyze notes, assigned work, assignees, from meeting, post-meeting, capture tasks, generate tasks, turn into tasks, convert to tasks, action item, to-do, task list, follow-up, assigned to, create Jira tasks, create Jira tickets, meeting action items, extract action items, find action items, analyze meeting ## Overview Automatically extract action items from meeting notes and create Jira tasks with proper assignees. This skill parses unstructured meeting notes (from Confluence or pasted text), identifies action items with assignees, looks up Jira account IDs, and creates tasks—eliminating the tedious post-meeting ticket creation process. **Use this skill when:** Users have meeting notes with action items that need to become Jira tasks. --- ## Workflow Follow this 7-step process to turn meeting notes into actionable Jira tasks: ### Step 1: Get Meeting Notes Obtain the meeting notes from the user. #### Option A: Confluence Page URL If user provides a Confluence URL: ``` getConfluencePage( cloudId="...", pageId="[extracted from URL]", contentFormat="markdown" ) ``` **URL patterns:** - `https://[site].atlassian.net/wiki/spaces/[SPACE]/pages/[PAGE_ID]/[title]` - Extract PAGE_ID from the numeric portion - Get cloudId from site name or use `getAccessibleAtlassianResources` #### Option B: Pasted Text If user pastes meeting notes directly: - Use the text as-is - No fetching needed #### If Unclear Ask: "Do you have a Confluence link to the meeting notes, or would you like to paste them directly?" --- ### Step 2: Parse Action Items Scan the notes for action items with assignees. #### Common Patterns **Pattern 1: @mention format** (highest priority) ``` @Sarah to create user stories for chat feature @Mike will update architecture doc ``` **Pattern 2: Name + action verb** ``` Sarah to create user stories Mike will update architecture doc Lisa should review the mockups ``` **Pattern 3: Action: Name - Task** ``` Action: Sarah - create user stories Action Item: Mike - update architecture ``` **Pattern 4: TODO with assignee** ``` TODO: Create user stories (Sarah) TODO: Update docs - Mike ``` **Pattern 5: Bullet with name** ``` - Sarah: create user stories - Mike - update architecture ``` #### Extraction Logic **For each action item, extract:** 1. **Assignee Name** - Text after @ symbol - Name before "to", "will", "should" - Name after "Action:" or in parentheses - First/last name or full name 2. **Task Description** - Text after "to", "will", "should", "-", ":" - Remove markers (@, Action:, TODO:) - Keep original wording - Include enough context 3. **Context** (optional but helpful) - Meeting title/date if available - Surrounding discussion context - Related decisions #### Example Parsing **Input:** ``` # Product Planning - Dec 3 Action Items: - @Sarah to create user stories for chat feature - Mike will update the architecture doc - Lisa: review and approve design mockups ``` **Parsed:** ``` 1. Assignee: Sarah Task: Create user stories for chat feature Context: Product Planning meeting - Dec 3 2. Assignee: Mike Task: Update the architecture doc Context: Product Planning meeting - Dec 3 3. Assignee: Lisa Task: Review and approve design mockups Context: Product Planning meeting - Dec 3 ``` --- ### Step 3: Ask for Project Key Before looking up users or creating tasks, identify the Jira project. **Ask:** "Which Jira project should I create these tasks in? (e.g., PROJ, PRODUCT, ENG)" #### If User is Unsure Call `getVisibleJiraProjects` to show options: ``` getVisibleJiraProjects( cloudId="...", action="create" ) ``` Present: "I found these projects you can create tasks in: PROJ (Project Alpha), PRODUCT (Product Team), ENG (Engineering)" --- ### Step 4: Lookup Account IDs For each assignee name, find their Jira account ID. #### Lookup Process ``` lookupJiraAccountId( cloudId="...", searchString="[assignee name]" ) ``` **The search string can be:** - Full name: "Sarah Johnson" - First name: "Sarah" - Last name: "Johnson" - Email: "[email protected]" #### Handle Results **Scenario A: Exact Match (1 result)** ``` ✅ Found: Sarah Johnson ([email protected]) → Use accountId from result ``` **Scenario B: No Match (0 results)** ``` ⚠️ Couldn't find user "Sarah" in Jira. Options: 1. Create task unassigned (assign manually later) 2. Skip this task 3. Try different name format (e.g., "Sarah Johnson") Which would you prefer? ``` **Scenario C: Multiple Matches (2+ results)** ``` ⚠️ Found multiple users named "Sarah": 1. Sarah Johnson ([email protected]) 2. Sarah Smith ([email protected]) Which user should be assigned the task "Create user stories"? ``` #### Best Practices - Try full name first ("Sarah Johnson") - If no match, try first name only ("Sarah") - If still no match, ask user - Cache results (don't lookup same person twice) --- ### Step 5: Present Action Items **CRITICAL:** Always show the parsed action items to the user BEFORE creating any tasks. #### Presentation Format ``` I found [N] action items from the meeting notes. Should I create these Jira tasks in [PROJECT]? 1. [TASK] [Task description] Assigned to: [Name] ([email if found]) Context: [Meeting title/date] 2. [TASK] [Task description] Assigned to: [Name] ([email if found]) Context: [Meeting title/date] [...continue for all tasks...] Would you like me to: 1. Create all tasks 2. Skip some tasks (which ones?) 3. Modify any descriptions or assignees ``` #### Wait for Confirmation Do NOT create tasks until user confirms. Options: - "Yes, create all" → proceed - "Skip task 3" → create all except #3 - "Change assignee for task 2" → ask for new assignee - "Edit description" → ask for changes --- ### Step 6: Create Tasks Once confirmed, create each Jira task. #### Determine Issue Type Before creating tasks, check what issue types are available in the project: ``` getJiraProjectIssueTypesMetadata( cloudId="...", projectIdOrKey="PROJ" ) ``` **Choose the appropriate issue type:** - Use "Task" if available (most common) - Use "Story" for user-facing features - Use "Bug" if it's a defect - If "Task" doesn't exist, use the first available issue type or ask the user #### For Each Action Item ``` createJiraIssue( cloudId="...", projectKey="PROJ", issueTypeName="[Task or available type]", summary="[Task description]", description="[Full description with context]", assignee_account_id="[looked up account ID]" ) ``` #### Task Summary Format Use action verbs and be specific: - ✅ "Create user stories for chat feature" - ✅ "Update architecture documentation" - ✅ "Review and approve design mockups" - ❌ "Do the thing" (too vague) #### Task Description Format ```markdown **Action Item from Meeting Notes** **Task:** [Original action item text] **Context:** [Meeting title/date] [Relevant discussion points or decisions] **Source:** [Link to Confluence meeting notes if available] **Original Note:** > [Exact quote from meeting notes] ``` **Example:** ```markdown **Action Item from Meeting Notes** **Task:** Create user stories for chat feature **Context:** Product Planning Meeting - December 3, 2025 Discussed Q1 roadmap priorities and new feature requirements **Source:** https://yoursite.atlassian.net/wiki/spaces/TEAM/pages/12345 **Original Note:** > @Sarah to create user stories for chat feature ``` --- ### Step 7: Provide Summary After all tasks are created, present a comprehensive summary. **Format:** ``` ✅ Created [N] tasks in [PROJECT]: 1. [PROJ-123] - [Task summary] Assigned to: [Name] https://yoursite.atlassian.net/browse/PROJ-123 2. [PROJ-124] - [Task summary] Assigned to: [Name] https://yoursite.atlassian.net/browse/PROJ-124 [...continue for all created tasks...] **Source:** [Link
Related in AI Agents
skill-development
IncludedComprehensive meta-skill for creating, managing, validating, auditing, and distributing Claude Code skills and slash commands (unified in v2.1.3+). Provides skill templates, creation workflows, validation patterns, audit checklists, naming conventions, YAML frontmatter guidance, progressive disclosure examples, and best practices lookup. Use when creating new skills, validating existing skills, auditing skill quality, understanding skill architecture, needing skill templates, learning about YAML frontmatter requirements, progressive disclosure patterns, tool restrictions (allowed-tools), skill composition, skill naming conventions, troubleshooting skill activation issues, creating custom slash commands, configuring command frontmatter, using command arguments ($ARGUMENTS, $1, $2), bash execution in commands, file references in commands, command namespacing, plugin commands, MCP slash commands, Skill tool configuration, or deciding between skills vs slash commands. Delegates to docs-management skill for official documentation.
reprompter
IncludedTransform messy prompts into well-structured, effective prompts — single or multi-agent. Use when: "reprompt", "reprompt this", "clean up this prompt", "structure my prompt", rough text needing XML tags and best practices, "reprompter teams", "repromptception", "run with quality", "smart run", "smart agents", multi-agent tasks, audits, parallel work, anything going to agent teams. Don't use when: simple Q&A, pure chat, immediate execution-only tasks. See "Don't Use When" section for details. Outputs: Structured XML/Markdown prompt, quality score (before/after), optional team brief + per-agent sub-prompts, agent team output files. Success criteria: Single mode quality score ≥ 7/10; Repromptception per-agent prompt quality score 8+/10; all required sections present, actionable and specific.
adaptive-compaction
IncludedAdaptive add-on policy and recovery layer that decides WHEN to compact, prune, snapshot, or fork -- replacing fixed-percent auto-compaction across Claude Code, Codex, and MCP-capable hosts. Trigger on auto-compact timing or damage: "when should I compact", "is it safe to compact now or start a fresh session", "auto-compact fires too early/mid-task", "switching to an unrelated task but the window still has space", "context rot", "answers get worse the longer the session runs", "the agent forgot the plan or my decisions after it summarized", "add a layer on top that manages context without changing the agent", raising autoCompactWindow to give the policy room, or installing/tuning a cross-tool compaction policy or PreCompact hook -- even when "compaction" is never said but the problem is context-window pressure or post-summarization memory loss. Do NOT use to summarize a conversation, build RAG, write a summarization prompt (decides WHEN not HOW), or answer max-context-length trivia.
agent-skill-creator
IncludedCreate cross-platform agent skills from workflow descriptions. Activates when users ask to create an agent, automate a repetitive workflow, create a custom skill, or need advanced agent creation. Triggers on phrases like create agent for, automate workflow, create skill for, every day I have to, daily I need to, turn process into agent, need to automate, create a cross-platform skill, validate this skill, export this skill, migrate this skill. Supports single skills, multi-agent suites, transcript processing, template-based creation, interactive configuration, cross-platform export, and spec validation.
llm-wiki
IncludedUse when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include "second brain", "Obsidian wiki", "personal knowledge management", "ingest this paper/article/book", "build a research wiki", "compound knowledge", "Memex", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query.
skill-master
IncludedAgent Skills authoring, evaluation, and optimization. Create, edit, validate, benchmark, and improve skills following the agentskills.io specification. Use when designing SKILL.md files, structuring skill folders (references, scripts, assets), ingesting external documentation into skills, running trigger evals, benchmarking skill quality, optimizing descriptions, or performing blind A/B comparisons. Keywords: agentskills.io, SKILL.md, skill authoring, eval, benchmark, trigger optimization.