Skip to main content

/analyze-meeting

Analyze meeting notes or transcripts to extract decisions, action items, and strategic context.

Usage

/analyze-meeting <path-to-notes>
/analyze-meeting <path-to-notes> --format <summary|full|json>
/analyze-meeting <path-to-notes> --output <output-path>

Arguments

ArgumentRequiredDescription
<path>YesPath to meeting notes file
--formatNoOutput format: summary (default), full, json
--outputNoCustom output path
--typeNoMeeting type: strategic, operational, technical, advisory, legal
--sync-tasksNoSync action items to PILOT plan

Examples

# Basic analysis
/analyze-meeting docs/meetings/2026-01-13-standup.md

# Full analysis with template output
/analyze-meeting docs/meetings/board-meeting.md --format full

# Export to JSON for database
/analyze-meeting transcript.md --format json --output analysis.json

# Sync action items to task tracking
/analyze-meeting notes.md --sync-tasks

Output

Summary Format (default)

# Meeting Summary: {Title}
**Date:** YYYY-MM-DD | **Type:** {type} | **Duration:** XX min

## Key Outcomes
- {Bullet 1}
- {Bullet 2}

## Decisions
| Decision | Impact |
|----------|--------|

## Action Items
| Action | Owner | Deadline |
|--------|-------|----------|

Full Format

Uses MEETING-ANALYSIS-TEMPLATE.md with all sections.

JSON Format

{
"meeting_id": "MTG-YYYYMMDD-XXX",
"decisions": [...],
"action_items": [...],
"topics": [...]
}

Implementation

# Invokes meeting-notes-analyzer agent
Task(
subagent_type="general-purpose",
prompt=f"""Use meeting-notes-analyzer agent to analyze: {path}

Format: {format}
Output: {output_path}

Follow CODITECT-STANDARD-MEETING-ANALYSIS for quality criteria."""
)
  • Agent: meeting-notes-analyzer
  • Skill: meeting-analysis-patterns
  • Script: scripts/meeting-analyzer.py
  • Standard: CODITECT-STANDARD-MEETING-ANALYSIS.md
  • Template: TEMPLATES/MEETING-ANALYSIS-TEMPLATE.md

See Also

  • /session-summary - Summarize code sessions
  • /handoff - Create handoff documentation
  • /export - Export raw transcripts

Standard: CODITECT-STANDARD-MEETING-ANALYSIS v1.0.0