account-report
Patterns for generating Gamma.app-compatible slide deck markdown from GitHub data for customer-facing account management presentations
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Patterns for generating Gamma.app-compatible slide deck markdown from GitHub data for customer-facing account management presentations
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Patterns for generating Gamma.app-compatible slide deck markdown from Linear data for customer-facing account management presentations
Patterns and templates for creating sprint/project retrospective reports from Jira data with time tracking and blocker analysis.
Multi-platform Electron build configuration - esbuild bundling, electron-builder setup, and distribution
Integrate external CLI tools (Claude, Node, npx) in Electron apps with proper PATH handling
Handle native Node.js modules in Electron - better-sqlite3, sharp, keytar packaging patterns
Critical path resolution patterns for Electron apps - avoid process.cwd() and __dirname pitfalls
| name | account-report |
| description | Patterns for generating Gamma.app-compatible slide deck markdown from GitHub data for customer-facing account management presentations |
This skill provides patterns and templates for generating structured markdown slide decks from GitHub issue and pull request 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] issues closed** across [Y] repositories
- **[Z] pull requests merged** with [W] contributors
- Key highlights:
- [Most impactful feature or change]
- [Second highlight]
- [Third highlight]
---
# Completed Features
| Feature | Description | PR/Issue |
|---------|-------------|----------|
| [Feature name] | [One-line description] | #[number] |
| [Feature name] | [One-line description] | #[number] |
| [Feature name] | [One-line description] | #[number] |
---
# Bug Fixes & Improvements
- 🐛 **[Bug title]** — [Brief description of fix] (#[number])
- 🐛 **[Bug title]** — [Brief description of fix] (#[number])
- ⚡ **[Improvement]** — [Brief description] (#[number])
---
# Infrastructure & DevOps
- ⚙️ **[Infrastructure change]** — [Impact/benefit]
- ⚙️ **[DevOps improvement]** — [Impact/benefit]
- ⚙️ **[Deployment/CI change]** — [Impact/benefit]
---
# Key Metrics
| Metric | Value |
|--------|-------|
| Issues Closed | **[X]** |
| Pull Requests Merged | **[Y]** |
| Contributors Active | **[Z]** |
| Avg Time to Close | **[N] days** |
| Releases Published | **[R]** |
---
# 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]
# Closed issues in date range
gh issue list --state closed --search "closed:>=YYYY-MM-DD closed:<=YYYY-MM-DD" --limit 200 --json number,title,labels,closedAt,assignees,stateReason
# Merged PRs in date range
gh pr list --state merged --search "merged:>=YYYY-MM-DD merged:<=YYYY-MM-DD" --limit 200 --json number,title,labels,mergedAt,author,additions,deletions
# Releases in date range
gh release list --limit 50
# Open issues for "upcoming work"
gh issue list --state open --label "priority:high" --limit 10 --json number,title,labels,assignees
# Contributors
gh pr list --state merged --search "merged:>=YYYY-MM-DD" --json author --jq '.[].author.login' | sort -u
Categorize closed issues by their labels into slide sections:
| Label Pattern | Slide Section |
|---|---|
feature, enhancement, feat | Completed Features |
bug, fix, defect | Bug Fixes & Improvements |
infrastructure, devops, ci, cd, deploy | Infrastructure & DevOps |
performance, optimization | Bug Fixes & Improvements |
documentation, docs | Infrastructure & DevOps |
| No matching label | Completed Features (default) |
If an issue has multiple labels, use the first matching category. If no labels exist, categorize by the PR title keywords or default to "Completed Features."
For shorter meetings, use only these slides:
For quarterly reviews, expand with: