
Capture Tasks From Meeting Notes
- 160 installs
- 935 repo stars
- Updated July 27, 2026
- atlassian/atlassian-mcp-server
capture-tasks-from-meeting-notes is a Claude Code skill that extracts action items from meeting notes and creates assigned Jira tasks.
About
capture-tasks-from-meeting-notes analyzes meeting notes to find action items and creates matching Jira tasks. It parses unstructured notes from a Confluence page or pasted text, detects assignees using several patterns, looks up their Jira account IDs, and files tasks in a chosen project. A team lead uses it to skip manual post-meeting ticket creation.
- Extracts action items from meeting notes and creates Jira tasks
- Parses five assignee patterns, then looks up Jira account IDs
- Pulls notes from Confluence pages or pasted text via a 7-step workflow
Capture Tasks From Meeting Notes by the numbers
- 160 all-time installs (skills.sh)
- Ranked #1,142 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
capture-tasks-from-meeting-notes capabilities & compatibility
- Capabilities
- task creation · action item extraction · project management
- Works with
- jira · confluence · atlassian
- Use cases
- project management · planning
What capture-tasks-from-meeting-notes says it does
Analyze meeting notes to find action items and create Jira tasks for assigned work.
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
Follow this 7-step process to turn meeting notes into actionable Jira tasks:
npx skills add https://github.com/atlassian/atlassian-mcp-server --skill capture-tasks-from-meeting-notesAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 160 |
|---|---|
| repo stars | ★ 935 |
| Last updated | July 27, 2026 |
| Repository | atlassian/atlassian-mcp-server ↗ |
What it does
Turn meeting notes into assigned Jira tasks by extracting action items and looking up assignees.
Who is it for?
Converting meeting-note action items into assigned Jira tasks automatically.
Skip if: Trackers other than Jira, or note formats without identifiable assignees.
When should I use this skill?
Users have meeting notes with action items that need to become Jira tasks.
What you get
Jira tasks created for each action item with the correct assignee and meeting context.
- Jira tasks per action item
- resolved assignees
- task context from the meeting
By the numbers
- 7-step workflow
- 5 assignee parsing patterns
Files
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 docPattern 2: Name + action verb
Sarah to create user stories
Mike will update architecture doc
Lisa should review the mockupsPattern 3: Action: Name - Task
Action: Sarah - create user stories
Action Item: Mike - update architecturePattern 4: TODO with assignee
TODO: Create user stories (Sarah)
TODO: Update docs - MikePattern 5: Bullet with name
- Sarah: create user stories
- Mike - update architectureExtraction 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 mockupsParsed:
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: "sarah@company.com"
Handle Results
Scenario A: Exact Match (1 result)
✅ Found: Sarah Johnson (sarah.johnson@company.com)
→ Use accountId from resultScenario 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 (sarah.johnson@company.com)
2. Sarah Smith (sarah.smith@company.com)
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 assigneesWait 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
**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:
**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 to meeting notes]
**Next Steps:**
- Review tasks in Jira for accuracy
- Add any additional details or attachments
- Adjust priorities if needed
- Link related tickets if applicable---
Action Item Pattern Examples
Pattern 1: @Mentions (Most Explicit)
@john to update documentation
@sarah will create the report
@mike should review PR #123Parsed:
- Assignee: john/sarah/mike
- Task: update documentation / create the report / review PR #123
---
Pattern 2: Name + Action Verb
John to update documentation
Sarah will create the report
Mike should review PR #123
Lisa needs to test the featureParsed:
- Assignee: name before action verb
- Task: text after "to/will/should/needs to"
---
Pattern 3: Structured Action Format
Action: John - update documentation
Action Item: Sarah - create the report
AI: Mike - review PR #123Parsed:
- Assignee: name after "Action:" and before "-"
- Task: text after "-"
---
Pattern 4: TODO Format
TODO: Update documentation (John)
TODO: Create report - Sarah
[ ] Mike: review PR #123Parsed:
- Assignee: name in parentheses or after ":"
- Task: text between TODO and assignee
---
Pattern 5: Bullet Lists
- John: update documentation
- Sarah - create the report
* Mike will review PR #123Parsed:
- Assignee: name before ":" or "-" or action verb
- Task: remaining text
---
Handling Edge Cases
No Action Items Found
If no action items with assignees are detected:
I analyzed the meeting notes but couldn't find any action items with clear assignees.
Action items typically follow patterns like:
- @Name to do X
- Name will do X
- Action: Name - do X
- TODO: X (Name)
Options:
1. I can search for TODO items without assignees
2. You can point out specific action items to create
3. I can create tasks for bullet points you specify
What would you like to do?---
Mixed Formats
If some action items have assignees and some don't:
I found [N] action items:
- [X] with clear assignees
- [Y] without assignees
Should I:
1. Create all [N] tasks ([X] assigned, [Y] unassigned)
2. Only create the [X] tasks with assignees
3. Ask you to assign the [Y] unassigned tasks
Which option would you prefer?---
Assignee Name Variations
If the same person is mentioned different ways:
Notes mention: @sarah, Sarah, Sarah J.
These likely refer to the same person. I'll look up "Sarah" once and use
that account ID for all three mentions. Is that correct?---
Duplicate Action Items
If the same task appears multiple times:
I found what appears to be the same action item twice:
1. "@Sarah to create user stories" (line 15)
2. "Action: Sarah - create user stories" (line 42)
Should I:
1. Create one task (combine duplicates)
2. Create two separate tasks
3. Skip the duplicate
What would you prefer?---
Long Task Descriptions
If action item text is very long (>200 characters):
The task "[long text...]" is quite detailed.
Should I:
1. Use first sentence as summary, rest in description
2. Use full text as summary
3. Let you edit it to be more concise
Which would you prefer?---
Tips for High-Quality Results
Do:
✅ Use consistent @mention format in notes ✅ Include full names when possible ✅ Be specific in action item descriptions ✅ Add context (why/what/when) ✅ Review parsed tasks before confirming
Don't:
❌ Mix multiple tasks for one person in one bullet ❌ Use ambiguous names (just "John" if you have 5 Johns) ❌ Skip action verbs (unclear what to do) ❌ Forget to specify project
Best Meeting Notes Format
# Meeting Title - Date
Attendees: [Names]
## Decisions
[What was decided]
## Action Items
- @FullName to [specific task with context]
- @AnotherPerson will [specific task with context]
- etc.---
When NOT to Use This Skill
This skill is for converting meeting action items to Jira tasks only.
Don't use for: ❌ Summarizing meetings (no task creation) ❌ Finding meeting notes (use search skill) ❌ Creating calendar events ❌ Sending meeting notes via email ❌ General note-taking
Use only when: Meeting notes exist and action items need to become Jira tasks.
---
Examples
Example 1: Simple @Mentions
Input:
Team Sync - Dec 3, 2025
Action Items:
- @Sarah to create user stories for chat feature
- @Mike will update the architecture doc
- @Lisa should review design mockupsProcess: 1. Parse → 3 action items found 2. Project → "PROJ" 3. Lookup → Sarah (123), Mike (456), Lisa (789) 4. Present → User confirms 5. Create → PROJ-100, PROJ-101, PROJ-102
Output:
✅ Created 3 tasks in PROJ:
1. PROJ-100 - Create user stories for chat feature
Assigned to: Sarah Johnson
2. PROJ-101 - Update the architecture doc
Assigned to: Mike Chen
3. PROJ-102 - Review design mockups
Assigned to: Lisa Park---
Example 2: Mixed Formats
Input:
Product Review Meeting
Discussed new features and priorities.
Follow-ups:
- Sarah will draft the PRD
- Mike: implement API changes
- TODO: Review security audit (Lisa)
- Update stakeholders on timelineProcess: 1. Parse → Found 4 items (3 with assignees, 1 without) 2. Ask → "Found 3 with assignees, 1 without. Create all or only assigned?" 3. User → "All, make the last one unassigned" 4. Create → 4 tasks (3 assigned, 1 unassigned)
---
Example 3: Name Lookup Issue
Input:
Sprint Planning
Action Items:
- @John to update tests
- @Sarah to refactor codeProcess: 1. Parse → 2 action items 2. Lookup "John" → Found 3 Johns! 3. Ask → "Which John? (John Smith, John Doe, John Wilson)" 4. User → "John Smith" 5. Create → Both tasks assigned correctly
---
Quick Reference
Primary tool: getConfluencePage (if URL) or use pasted text Account lookup: lookupJiraAccountId(searchString) Task creation: createJiraIssue with assignee_account_id
Action patterns to look for:
@Name to/will/should XName to/will/should XAction: Name - XTODO: X (Name)Name: X
Always:
- Present parsed tasks before creating
- Handle name lookup failures gracefully
- Include context in task descriptions
- Provide summary with links
Remember:
- Human-in-loop is critical (show before creating)
- Name lookup can fail (have fallback)
- Be flexible with pattern matching
- Context preservation is important
Action Item Patterns Reference
Common patterns found in meeting notes and how to parse them.
---
Pattern Categories
Category 1: @Mentions (Highest Confidence)
Format: @Name [action verb] [task]
Examples:
@john to update documentation
@sarah will create the report
@mike should review PR #123
@lisa needs to test the featureParsing:
- Assignee: Text immediately after @
- Task: Everything after action verb (to/will/should/needs to)
- Confidence: Very High (explicit assignment)
---
Category 2: Name + Action Verb (High Confidence)
Format: Name [action verb] [task]
Examples:
John to update documentation
Sarah will create the report
Mike should review PR #123
Lisa needs to test the featureParsing:
- Assignee: First word(s) before action verb
- Task: Everything after action verb
- Confidence: High (clear structure)
Action verbs to detect:
- to, will, should, needs to, must, has to, is to, going to
---
Category 3: Structured Action Format (High Confidence)
Format: Action: Name - [task] or AI: Name - [task]
Examples:
Action: John - update documentation
Action Item: Sarah - create the report
AI: Mike - review PR #123
Task: Lisa - test the featureParsing:
- Assignee: Between "Action:" and "-"
- Task: After "-"
- Confidence: High (structured format)
Variants:
- Action:
- Action Item:
- AI:
- Task:
- Assigned:
---
Category 4: TODO Format (Medium Confidence)
Format: TODO: [task] (Name) or TODO: [task] - Name
Examples:
TODO: Update documentation (John)
TODO: Create report - Sarah
[ ] Review PR #123 (Mike)
- [ ] Test feature - LisaParsing:
- Assignee: In parentheses or after "-"
- Task: Between TODO and assignee
- Confidence: Medium (format varies)
Markers to detect:
- TODO:
- [ ]
- - [ ]
- To-do:
- Action item:
---
Category 5: Colon or Dash Format (Medium Confidence)
Format: Name: [task] or Name - [task]
Examples:
John: update documentation
Sarah - create the report
Mike: review PR #123
Lisa - test the featureParsing:
- Assignee: Before ":" or "-"
- Task: After ":" or "-"
- Confidence: Medium (could be other uses of colons/dashes)
Detection:
- Look for name-like word before ":" or "-"
- Followed by action verb or imperative
- Usually in bulleted lists
---
Complex Patterns
Multiple Assignees
Format: Name1 and Name2 to [task]
Examples:
John and Sarah to update documentation
Mike, Lisa to review PRHandling:
- Create separate tasks for each person
- OR create one task, ask user who should be assigned
- Include both names in description
---
Conditional Actions
Format: Name to [task] if [condition]
Examples:
John to update docs if approved
Sarah will create report pending reviewHandling:
- Include condition in task description
- Note that it's conditional
- User can adjust later
---
Time-Bound Actions
Format: Name to [task] by [date]
Examples:
John to update docs by EOD
Sarah will finish report by Friday
Mike to review before next meetingHandling:
- Extract deadline and add to task description
- Could use due date field if available
- Include urgency in task
---
Anti-Patterns (Not Action Items)
Discussion Notes
Not an action item:
John mentioned the documentation needs updating
Sarah suggested we create a report
Mike talked about reviewing the codeWhy: These are discussions, not assignments
---
General Statements
Not an action item:
Documentation needs to be updated
Someone should create a report
The code requires reviewWhy: No specific assignee
---
Past Actions
Not an action item:
John updated the documentation
Sarah created the report
Mike reviewed the codeWhy: Already completed (past tense)
---
Context Extraction
Meeting Metadata
Look for:
# [Meeting Title] - [Date]
Meeting: [Title]
Date: [Date]
Subject: [Title]Extract:
- Meeting title
- Date
- Attendees (if listed)
---
Related Information
Look for:
Related to: [project/epic/initiative]
Context: [background info]
Decision: [relevant decision]Include in task:
- Links to related work
- Background context
- Relevant decisions
---
Name Extraction Tips
Full Names
Preferred:
@Sarah Johnson to create report
Sarah Johnson will create reportExtract: "Sarah Johnson"
---
First Name Only
Common:
@Sarah to create report
Sarah will create reportExtract: "Sarah" (will need to lookup)
---
Nicknames or Short Forms
Handle carefully:
@SJ to create report
Sara (no h) will create reportStrategy: Ask user or try multiple lookups
---
Priority Indicators
Urgent/High Priority
Detect:
URGENT: John to update docs
HIGH PRIORITY: Sarah to create report
ASAP: Mike to review codeHandling:
- Note priority in task description
- Could set priority field
- Highlight in presentation
---
Low Priority
Detect:
If time: John to update docs
Nice to have: Sarah create report
Eventually: Mike review codeHandling:
- Note as lower priority
- Could defer creation
- User can decide
---
Confidence Scoring
When parsing, assign confidence:
High Confidence (90%+):
- @Mentions with clear action
- "Name to do X" format
- "Action: Name - X" format
Medium Confidence (60-90%):
- Name: task format
- TODO with name
- Name without action verb but clear task
Low Confidence (<60%):
- Ambiguous wording
- No clear assignee
- Could be discussion not action
Handling:
- Present all to user
- Flag low-confidence items
- Let user confirm or skip
---
Special Cases
Group Actions
Everyone to review the document
Team to provide feedbackHandling:
- Ask user who specifically
- OR create one task unassigned
- Note it's for the whole team
---
Optional Actions
Sarah could create a report if needed
Mike might review the codeHandling:
- Flag as optional
- Ask user if should create
- Include "optional" in description
---
Delegated Actions
John will ask Sarah to create the reportHandling:
- Assign to Sarah (the actual doer)
- Note John is requestor
- Include context
---
Testing Patterns
Use these to validate pattern matching:
✅ @john to update tests
✅ Sarah will write docs
✅ Mike: review code
✅ TODO: Deploy (Lisa)
✅ Action: John - fix bug
⚠️ Maybe John can help?
⚠️ Documentation needs work
⚠️ We should test this
❌ John mentioned testing
❌ Tests were updated
❌ Someone needs to deploy---
Regular Expression Examples
@Mention pattern:
@(\w+)\s+(to|will|should)\s+(.+)Name + action verb:
([A-Z][\w\s]+?)\s+(to|will|should)\s+(.+)Action format:
Action:\s*([A-Z][\w\s]+?)\s*-\s*(.+)TODO format:
TODO:\s*(.+)\s*\((\w+)\)Note: These patterns use [A-Z][\w\s]+? to match names flexibly:
- Starts with a capital letter
- Matches one or more word characters or spaces
- Non-greedy (
+?) to stop at action verbs - Handles single names ("Sarah"), two-part names ("Sarah Johnson"), and longer names ("Mary Jane Smith")
Related skills
FAQ
Where can the skill read meeting notes from?
From a Confluence page URL via getConfluencePage, or from text pasted directly by the user.
How does it assign tasks?
It parses assignee patterns, then calls lookupJiraAccountId to resolve each name to a Jira account ID.