feedback-triage
Use when receiving UAT feedback, bug reports, user testing results, stakeholder feedback, QA findings, or any batch of issues to investigate. Investigates each item BEFORE creating issues, classifies by type and priority, creates well-formed GitHub issues with proper project board integration.
What this skill does
# Feedback Triage ## Overview Process raw feedback into actionable, well-documented GitHub issues. Every feedback item is investigated before issue creation. **Core principle:** Investigate first, issue second. Never create an issue without understanding what you're documenting. **Announce at start:** "I'm using feedback-triage to investigate and create issues from this feedback." ## When to Use This Skill Use this skill when you receive: | Trigger | Examples | |---------|----------| | **UAT feedback** | "We have bugs from UAT testing..." | | **User testing results** | "Users reported the following issues..." | | **Bug reports** | "Here are the errors we found..." | | **Stakeholder feedback** | "The client wants these changes..." | | **QA findings** | "QA discovered these problems..." | | **Support escalations** | "Support tickets about..." | | **Production incidents** | "These errors are occurring in prod..." | | **Feature requests batch** | "Users have requested..." | | **UX review findings** | "The UX review identified..." | **Key indicators:** - Multiple items in one message - Raw feedback that needs investigation - Error logs, curl commands, or screenshots - Requests to "create issues" from feedback - Phrases like "bugs to resolve", "issues from UAT", "feedback to triage" ## The Triage Protocol **Flow:** Verify project board → Parse items → For each: Investigate → Classify → Create issue → Add to project board ## Step 0: Project Board Readiness (GATE) **Before any triage, verify project board infrastructure is ready.** ```bash # Verify environment variables if [ -z "$GITHUB_PROJECT_NUM" ]; then echo "BLOCKED: GITHUB_PROJECT_NUM not set" exit 1 fi if [ -z "$GH_PROJECT_OWNER" ]; then echo "BLOCKED: GH_PROJECT_OWNER not set" exit 1 fi # Verify project is accessible gh project view "$GITHUB_PROJECT_NUM" --owner "$GH_PROJECT_OWNER" --format json > /dev/null 2>&1 ``` **Skill:** `project-board-enforcement` --- ## Step 1: Parse Feedback into Items ### Identify Distinct Items Read through the feedback and identify each distinct item. Look for: - Separate headings or sections - Numbered lists - Different error messages or behaviors - Distinct feature requests or changes ### Create Tracking List ```bash # Use TodoWrite to track each item # Example: 3 items from UAT feedback TodoWrite: - [ ] Investigate: Family page error (API 500) - [ ] Investigate: Terminology issue (Children vs Care Recipients) - [ ] Investigate: Cannot add care recipient (API 500) ``` ### Item Summary Table Create a summary table for the user: ```markdown ## Feedback Items Identified | # | Summary | Type (Preliminary) | Severity | |---|---------|-------------------|----------| | 1 | Family page error | Bug | High | | 2 | Terminology needs review | UX/Research | Medium | | 3 | Cannot add care recipient | Bug | High | I will investigate each item before creating issues. ``` --- ## Step 2: Investigate Each Item **CRITICAL: Never create an issue without investigation. Understanding comes first.** ### Investigation Protocol by Item Type #### For API Errors / Bugs ```markdown ## Investigation: [Item Title] ### 1. Error Analysis - Error code: [e.g., INTERNAL_ERROR, 500, 404] - Error message: [exact message] - Request endpoint: [URL] - Request method: [GET/POST/etc.] ### 2. Reproduction - Can reproduce: [Yes/No] - Reproduction steps: 1. [Step 1] 2. [Step 2] ### 3. Code Investigation - Relevant files: [paths] - Likely cause: [hypothesis after code review] - Related code: [functions/modules involved] ### 4. Impact Assessment - Users affected: [All/Some/Specific conditions] - Functionality blocked: [What can't users do?] - Workaround exists: [Yes/No - describe if yes] ### 5. Classification - Type: Bug - Severity: [Critical/High/Medium/Low] - Priority: [Critical/High/Medium/Low] ``` #### For UX/Feature Feedback ```markdown ## Investigation: [Item Title] ### 1. Current Behavior - What exists now: [description] - Where it appears: [URLs/screens] - Current implementation: [code locations] ### 2. Requested Change - What's being asked for: [description] - User impact: [how this affects users] - Business context: [why this matters] ### 3. Scope Analysis - Files affected: [list] - Complexity: [Low/Medium/High] - Dependencies: [other features/systems] ### 4. Design Considerations - Options identified: 1. [Option A] - [pros/cons] 2. [Option B] - [pros/cons] - Recommendation: [if clear] - Needs: [Design input / Product decision / Research] ### 5. Classification - Type: Feature / Research / UX Enhancement - Priority: [Critical/High/Medium/Low] ``` #### For Production Incidents ```markdown ## Investigation: [Item Title] ### 1. Incident Details - First reported: [timestamp] - Frequency: [One-time/Intermittent/Constant] - Environment: [Production/Staging/etc.] ### 2. Error Analysis - Error logs: [key log entries] - Stack trace: [if available] - Affected service: [component/service name] ### 3. Impact Assessment - Users affected: [count/percentage] - Revenue impact: [if applicable] - SLA implications: [if applicable] ### 4. Root Cause Analysis - Hypothesis: [likely cause] - Evidence: [supporting data] - Related changes: [recent deployments/changes] ### 5. Classification - Type: Bug - Severity: Critical / High - Priority: Critical / High ``` ### Investigation Checklist For each item, verify: - [ ] Error/behavior understood - [ ] Code reviewed (if applicable) - [ ] Scope assessed - [ ] Impact evaluated - [ ] Type determined (Bug/Feature/Research/etc.) - [ ] Priority determined - [ ] Ready to create issue --- ## Step 3: Classify Each Item ### Type Classification | Type | When to Use | Project Board Type | |------|-------------|-------------------| | **Bug** | Something broken, not working as designed | Bug | | **Feature** | New capability, clear requirements | Feature | | **Research** | Needs exploration, design thinking, options analysis | Research | | **Spike** | Time-boxed technical investigation | Spike | | **Chore** | Maintenance, cleanup, non-user-facing | Chore | | **UX Enhancement** | Improving existing user experience | Feature | ### Priority Classification | Priority | Criteria | Response | |----------|----------|----------| | **Critical** | Production down, data loss, security breach | Immediate | | **High** | Major feature broken, significant user impact, blocking | This sprint | | **Medium** | Feature degraded, workaround exists, important but not blocking | Next sprint | | **Low** | Minor issue, cosmetic, nice-to-have | Backlog | ### Severity vs Priority - **Severity** = How bad is the problem? (Technical assessment) - **Priority** = How soon should we fix it? (Business decision) A low-severity bug affecting a VIP customer may be high priority. A high-severity bug on a deprecated feature may be low priority. --- ## Step 4: Create Well-Formed Issues ### Issue Templates **Bug:** `[Bug] <description>` - Include: Summary, Environment, Steps to Reproduce, Expected/Actual Behavior, Error Details, Investigation Findings (files, cause, impact), Acceptance Criteria, Source. **Feature:** `[Feature] <description>` - Include: Summary, Background, Current/Proposed Behavior, User Story, Scope Analysis (files, complexity), Acceptance Criteria, Out of Scope. **Research:** `[Research] <topic>` - Include: Summary, Background, Questions to Answer, Scope, Time Box, Deliverables, Acceptance Criteria. Use `gh issue create --title "[Type] ..." --body "..."` with appropriate sections from above. --- ## Step 5: Add to Project Board (MANDATORY) **Every issue MUST be added to the project board with correct fields.** Use `project-board-enforcement` skill functions: 1. `add_issue_to_project` - Add issue to project 2. `set_project_status` - Set Status (Ready/Backlog) 3. `set_project_type` - Set Type (Bug/Feature/Research) 4. Set Priority field **Skill:** `project-board-enforcement` --- ## Step 6: Summary Report After all items are tri
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.