account-report
Patterns for generating Gamma.app-compatible slide deck markdown from GitHub data for customer-facing account management presentations
What this skill does
# Account Report Slide Deck ## Overview 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. ## Slide Deck Format 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. ### Formatting Rules - Each `# Heading` creates a new slide - Use bullet points, not paragraphs - audiences scan, they don't read - Tables should be small (3-5 rows max per slide) - Bold key numbers and metrics - Keep bullet points to 3-5 per slide - Use emoji sparingly for visual markers (โ , ๐, ๐, โ๏ธ, ๐) ## Slide Deck Template ```markdown # [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] ``` ## Data Collection Patterns ### GitHub CLI Queries ```bash # 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 ``` ### Issue Categorization 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." ### Metrics Calculation - **Issues Closed**: Count of issues closed in date range - **PRs Merged**: Count of PRs merged in date range - **Active Contributors**: Unique PR authors in date range - **Avg Time to Close**: Mean of (closedAt - createdAt) for closed issues - **Releases Published**: Count of releases created in date range ## Content Guidelines ### DO - Lead with impact, not implementation details - Use customer-friendly language (avoid internal jargon) - Group related changes together under meaningful categories - Include specific numbers and metrics - Keep each slide focused on one topic - Mention the business value of technical changes ### DON'T - Include internal retrospective content (blockers, what went wrong) - Use overly technical descriptions - List every single commit or minor change - Include security vulnerability details - Mention specific team member performance issues - Overwhelm slides with too many items (cap at 5-7 per slide) ## Slide Variations ### Quick Update (fewer slides) For shorter meetings, use only these slides: 1. Title 2. Executive Summary 3. Key Accomplishments (merge Features + Bug Fixes) 4. Upcoming Work 5. Q&A ### Detailed Update (more slides) For quarterly reviews, expand with: - Split "Completed Features" across multiple slides if >5 items - Add a "Trends" slide with month-over-month metrics - Add a "Roadmap" slide with longer-term plans - Add individual repository breakdowns if multi-repo ## Anti-Patterns - **Wall of text**: Each bullet should be one line. If you need to explain, use the notes or a separate document. - **Internal jargon**: Replace "refactored the auth middleware" with "Improved login security and reliability." - **Missing context**: Don't just list PR numbers. Describe what changed and why it matters. - **No metrics**: Always include quantitative data. "We fixed bugs" is weak. "We resolved 12 bugs, reducing error rate by 30%" is strong. - **Stale data**: Always verify the date range is correct and data is current.
Related in Writing & Docs
jax-development
IncludedUse this skill when the user is writing, debugging, profiling, refactoring, reviewing, benchmarking, parallelising, exporting, or explaining JAX code, or when they mention JAX, jax.numpy, jit, grad, value_and_grad, vmap, scan, lax, random keys, pytrees, jax.Array, sharding, Mesh, PartitionSpec, NamedSharding, pmap, shard_map, Pallas, XLA, StableHLO, checkify, profiler, or the JAX repo. It helps turn NumPy or PyTorch-style code into pure functional JAX, fix tracer/control-flow/shape/PRNG bugs, remove recompiles and host-device syncs, choose transforms and sharding strategies, inspect jaxpr/lowering/IR, and benchmark compiled code correctly.
nature-article-writer
IncludedDrafts, rewrites, diagnostically critiques, and style-calibrates primary research manuscripts for Nature and Nature Portfolio journals. Use when the user wants a Nature-style title, summary paragraph or abstract, introduction, results, discussion, methods, figure legends, presubmission enquiry, cover letter, reviewer response, or when a scientific draft sounds generic, jargon-heavy, structurally weak, or AI-ish and needs precise, broad-reader-friendly prose without inventing data, analyses, or references. Best for primary research articles and letters rather than reviews or press releases unless explicitly adapting one.
deckrd
IncludedDocument-driven framework that derives requirements, specifications, implementation plans, and executable tasks from goals through structured AI dialogue. Use when user says "write requirements", "create spec", "plan implementation", "derive tasks", "structure this feature", "break down into tasks", or "document this module". Also use for reverse engineering existing code into docs (/deckrd rev). Do NOT use for direct code writing โ use /deckrd-coder after tasks are generated. Do NOT use when the user only wants to run or fix existing code without planning.
clinical-decision-support
IncludedGenerate professional clinical decision support (CDS) documents for pharmaceutical and clinical research settings, including patient cohort analyses (biomarker-stratified with outcomes) and treatment recommendation reports (evidence-based guidelines with decision algorithms). Supports GRADE evidence grading, statistical analysis (hazard ratios, survival curves, waterfall plots), biomarker integration, and regulatory compliance. Outputs publication-ready LaTeX/PDF format optimized for drug development, clinical research, and evidence synthesis.
handling-sf-data
IncludedSalesforce data operations with 130-point scoring. Use this skill to create, update, delete, bulk import/export, generate test data, and clean up org records using sf CLI and anonymous Apex. TRIGGER when: user creates test data, performs bulk import/export, uses sf data CLI commands, needs data factory patterns for Apex tests, or needs to seed/clean records in a Salesforce org. DO NOT TRIGGER when: SOQL query writing only (use querying-soql), Apex test execution (use running-apex-tests), or metadata deployment (use deploying-metadata).
accelint-ac-to-playwright
IncludedConvert and validate acceptance criteria for Playwright test automation. Use when user asks to (1) review/evaluate/check if AC are ready for automation, (2) assess if AC can be converted as-is, (3) validate AC quality for Playwright, (4) turn AC into tests, (5) generate tests from acceptance criteria, (6) convert .md bullets or .feature Gherkin files to Playwright specs, (7) create test automation from requirements. Handles both bullet-style markdown and Gherkin syntax with JSON test plan generation and validation.