submit-learnings
Filters and submits accumulated QA learnings as a GitHub issue (with optional PR) on the plugin repo. Use when the user says "submit learnings", "share learnings", "report learnings upstream", or "open issue for learnings".
What this skill does
# Submit Learnings You are a QA feedback coordinator. Your job is to help users submit valuable field observations from their QA sessions upstream to the plugin maintainers as structured GitHub issues. --- ## Phase 1: Load & Parse Read `.qa-learnings/ledger.md` from the current project directory. If the file does not exist or has no entries (only the `# QA Learnings Ledger` header), inform the user: ``` No learnings recorded yet. Run QA sessions — each agent and skill automatically records observations to the ledger. ``` Then stop. Parse each entry by splitting on `##` headers. For each entry, extract: - **Timestamp** — the ISO timestamp after `##` - **Source** — the agent or skill name after ` — ` - **Observation** — the body text - **Suggested change** — the line starting with `**Suggested change:**` ## Phase 2: Filter Present all entries grouped by source, numbered for selection: ``` Found [N] learnings from [M] sources: ### smoke-tester (3 entries) 1. [2026-04-01] Cookie not checked after login redirect 2. [2026-04-02] /dashboard 500 not caught by status check 3. [2026-04-03] Auth flow timing out on slow connections ### ux-auditor (2 entries) 4. [2026-04-01] Missing empty state not flagged 5. [2026-04-02] Spacing check too strict on mobile viewports ``` Then ask: > Which observations do you want to include? Select by number (e.g., "1,3,5"), by source (e.g., "smoke-tester"), or say "all". Exclude anything project-specific that isn't relevant to the plugin itself. Wait for user selection before proceeding. ## Phase 3: Draft Issue Format the selected observations into a GitHub issue body: ```markdown ## QA Field Observations **Entries:** [N selected] of [N total] from [comma-separated sources] **Date range:** [earliest timestamp] to [latest timestamp] **Submitted by:** [output of `gh api user --jq .login`] ### Observations #### [Source 1] - **[timestamp]:** [observation text] - **Suggested change:** [file] — [description] - **[timestamp]:** [observation text] - **Suggested change:** [file] — [description] #### [Source 2] - **[timestamp]:** [observation text] - **Suggested change:** [file] — [description] ``` Preview the full issue body in the terminal. Then ask: > Does this look right? Let me know if you'd like to edit anything, or say "good" to submit. Wait for user approval. If the user requests edits, apply them and re-preview. ## Phase 4: Submit Issue Construct the issue title: `learnings: [N] observations from [sources]` Run: ```bash gh issue create \ --repo neonwatty/qa-skills \ --title "[constructed title]" \ --body "[approved body]" \ --label "learnings" ``` If the `learnings` label does not exist (command fails with label error), create it first: ```bash gh label create learnings --repo neonwatty/qa-skills --description "Field observations from QA sessions" --color "0E8A16" ``` Then retry the issue creation. Display the issue URL to the user. ## Phase 5: Optional PR Ask: > Want me to also open a PR with the suggested edits from these observations? This will fork the repo, create a branch, apply the changes, and open a PR referencing the issue. If yes: 1. Fork `neonwatty/qa-skills` if not already forked: `gh repo fork neonwatty/qa-skills --clone=false` 2. Clone the fork to a temp directory, create branch `learnings/[short-slug]` 3. Apply each suggested edit by reading the target file in the cloned fork, making the change, and committing. Only modify files within the cloned fork directory — do not edit files in the user's project 4. Push the branch and open a PR: `gh pr create --repo neonwatty/qa-skills --title "fix(qa): apply learnings — [short description]" --body "Applies suggested changes from #[issue-number]."` 5. Display the PR URL If no: skip. ## Phase 6: Reflect Read `references/reflection-protocol.md` and execute it before finishing.
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.