gh-issue-fix-flow
End-to-end GitHub issue fix workflow using gh, local code changes, builds/tests, and git push. Use when asked to take an issue number, inspect the issue via gh, implement a fix, run XcodeBuildMCP builds/tests, commit with a closing message, and push.
What this skill does
# Gh Issue Fix Flow ## Overview Resolve a GitHub issue from intake through fix, validation, and push using gh, local edits, XcodeBuildMCP, and git. ## Workflow ### 1) Intake and issue context 1. Use `gh issue view <id> --repo <owner/repo> --comments` to get the full issue context. 2. If the repo is unclear, run `gh repo view --json nameWithOwner` to confirm. 3. Capture reproduction steps, expected behavior, and any maintainer notes. ### 2) Locate the code path 1. Use `rg -n` to locate likely files and entry points. 2. Read the relevant code paths with `sed -n` or `rg -n` context. 3. Follow repo-specific conventions (AGENTS/CLAUDE instructions). ### 3) Implement the fix 1. Edit the minimal set of files. 2. Keep changes aligned with existing architecture and style. 3. Add tests when behavior changes and test coverage is practical. ### 4) Build and test 1. Use XcodeBuildMCP for required builds/tests: - Set defaults once: `mcp__XcodeBuildMCP__session-set-defaults`. - Build: `mcp__XcodeBuildMCP__build_macos` or `mcp__XcodeBuildMCP__build_sim`. - Tests: prefer targeted schemes (e.g., `mcp__XcodeBuildMCP__test_sim`). 2. If macOS tests fail due to deployment target mismatches, run the equivalent iOS simulator tests. 3. Report warnings or failures; do not hide them. ### 5) Commit and push 1. Check for unrelated changes with `git status --short`. 2. Stage only the fix (exclude unrelated files). 3. Commit with a closing message: `Fix … (closes #<issue>)`. 4. Push with `git push`. ### 6) Report back 1. Summarize what changed and where. 2. Provide test results (including failures). 3. Note any follow-ups or blocked items.
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.