From aai-pm-linear
Generates Gamma.app-compatible markdown slide decks from Linear ticket data for customer account status presentations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aai-pm-linear:account-reportThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill provides patterns and templates for generating structured markdown slide decks from Linear ticket data. The output is formatted for direct import into Gamma.app or manual use as a presentation.
This skill provides patterns and templates for generating structured markdown slide decks from Linear ticket data. The output is formatted for direct import into Gamma.app or manual use as a presentation.
The markdown uses # Heading for each slide. Gamma.app interprets each top-level heading as a new slide. Keep content concise and visual - this is a presentation, not a document.
# Heading creates a new slide# [Product/Team Name] - Status Update
**Period**: [Start Date] — [End Date]
**Prepared**: [Current Date]
---
# Executive Summary
- **[X] tickets completed** across [Y] projects
- **[Z] story points delivered**
- Key highlights:
- [Most impactful feature or change]
- [Second highlight]
- [Third highlight]
---
# Completed Features
| Feature | Description | Ticket |
|---------|-------------|--------|
| [Feature name] | [One-line description] | [TEAM-123] |
| [Feature name] | [One-line description] | [TEAM-456] |
| [Feature name] | [One-line description] | [TEAM-789] |
---
# Bug Fixes & Improvements
- 🐛 **[Bug title]** — [Brief description of fix] ([TEAM-123])
- 🐛 **[Bug title]** — [Brief description of fix] ([TEAM-456])
- ⚡ **[Improvement]** — [Brief description] ([TEAM-789])
---
# Infrastructure & DevOps
- ⚙️ **[Infrastructure change]** — [Impact/benefit]
- ⚙️ **[DevOps improvement]** — [Impact/benefit]
- ⚙️ **[Deployment/CI change]** — [Impact/benefit]
---
# Key Metrics
| Metric | Value |
|--------|-------|
| Tickets Completed | **[X]** |
| Story Points Delivered | **[Y]** |
| Projects Active | **[Z]** |
| Avg Cycle Time | **[N] days** |
| Bugs Resolved | **[B]** |
---
# Upcoming Work
- 🔜 **[Planned feature/task]** — [Brief description]
- 🔜 **[Planned feature/task]** — [Brief description]
- 🔜 **[Planned feature/task]** — [Brief description]
---
# Risks & Dependencies
| Risk/Dependency | Impact | Mitigation |
|----------------|--------|------------|
| [Risk description] | [High/Medium/Low] | [What we're doing about it] |
---
# Questions & Discussion
**Next meeting**: [Suggested date]
**Contact**: [Team/person contact info]
Use the Linear MCP tools to gather data:
# Completed tickets in date range (by team)
list_issues(team: "TEAM", state: "done", updatedAt: "YYYY-MM-DD")
# Completed tickets (by project)
list_issues(project: "Project Name", state: "done", updatedAt: "YYYY-MM-DD")
# Canceled tickets
list_issues(team: "TEAM", state: "canceled", updatedAt: "YYYY-MM-DD")
# In-progress tickets for "upcoming work"
list_issues(team: "TEAM", state: "started")
# Backlog/planned tickets for "upcoming work"
list_issues(team: "TEAM", state: "unstarted", limit: 10)
# Project progress
get_project(query: "Project Name")
# Cycle information
list_cycles(teamId: "TEAM_ID", type: "current")
Categorize completed tickets by their labels into slide sections:
| Label Pattern | Slide Section |
|---|---|
Feature, Enhancement | Completed Features |
Bug, Fix, Defect | Bug Fixes & Improvements |
Infrastructure, DevOps, CI/CD | Infrastructure & DevOps |
Performance, Optimization | Bug Fixes & Improvements |
Documentation | Infrastructure & DevOps |
| No matching label | Completed Features (default) |
If a ticket has multiple labels, use the first matching category. If no labels exist, use the ticket title keywords to categorize.
For shorter meetings, use only these slides:
For quarterly reviews, expand with:
npx claudepluginhub bradtaylorsf/alphaagent-teamGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.