sprint-retro
Sprint retrospective — review what was planned vs. accomplished, capture lessons learned, identify what worked and what didn't. Use at the end of a sprint or after a deadline event (demo, release). Produces actionable takeaways for the next sprint.
What this skill does
# Sprint Retro Review the sprint outcome and capture lessons for next time. ## When to Use - "How did the sprint go?" - "Let's do a retro" - "What did we miss?" - End of sprint or after the driving deadline event - When something went wrong and you want to capture the lesson ## Arguments `$ARGUMENTS` can be: - Empty — review the most recent sprint plan - A path to a specific plan file ## Workflow ### Phase 1: Gather Evidence 1. **Read the sprint plan** — what was planned, who was assigned what 2. **Read the dashboard** — `docs/features/DASHBOARD.md` — what actually shipped 3. **Check git history** — `git log --oneline --since="[sprint start]"` — what actually landed 4. **Check PR history** — `gh pr list --state all --limit 30` — what was opened, merged, closed ### Phase 2: Planned vs. Actual Build a comparison table: ```markdown | Feature | Planned | Actual | Notes | |---------|---------|--------|-------| | `feature-a` | Deadline-Critical | Shipped | On track | | `feature-b` | This Sprint | In Progress | Took longer than expected — effort was Medium, needed Large | | `feature-c` | This Sprint | Not Started | Blocked by AIDP cluster access | | `feature-d` | Not Planned | Shipped | Emerged mid-sprint as a dependency | ``` ### Phase 3: Identify Patterns Look for recurring themes: **Estimation accuracy:** - Were effort estimates (Small/Medium/Large) accurate? - Which items took longer than expected? Why? - Were any items easier than expected? **Blocking patterns:** - What blocked progress? (external teams, infrastructure, unclear specs, missing context) - Could the blocks have been identified earlier? - Did the dependency graph hold up, or were there surprise dependencies? **Spec quality:** - Did developers have to ask questions that should have been in the spec? - Were any specs missing critical information? - Did the spec audit (`/sprint-audit-specs`) catch the gaps? **Assignment quality:** - Were tasks assigned to the right people? - Did junior devs get stuck? On what? - Were senior devs bottlenecked on too many critical-path items? ### Phase 4: Capture Lessons Format lessons as actionable rules: ```markdown ## Lessons Learned ### What Worked - [Specific thing that worked well and WHY] - [Pattern to repeat next sprint] ### What Didn't Work - [Specific problem and root cause] - [What we'd do differently] ### Process Improvements - [Concrete change to make next sprint] - [E.g., "Add realistic data ranges to all data-generation specs"] - [E.g., "Verify PR status with `gh pr view` before planning around it"] ### Estimation Calibration - [Feature X was estimated Small, took Medium — reason: ...] - [Adjust future estimates for similar work] ``` ### Phase 5: Update Plugin Memory If lessons are broadly applicable (not project-specific), suggest adding them to the sprint-planner plugin itself: - New checklist items for `/sprint-audit-specs` - New anti-patterns for `/sprint-triage` - New rules for `/sprint-plan` Present these as suggestions — don't auto-modify the plugin. ## Output Present the retro summary and ask: - "Anything I missed?" - "Should we capture any of these lessons in the plugin for next time?" - "Ready to start planning the next sprint?" ## Integration Notes Works with: - `/sprint-plan` — lessons feed into the next sprint's planning - `/sprint-audit-specs` — retro findings improve the audit checklist - feature-workflow plugin — reads DASHBOARD.md for shipped status
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.