fix-it-never-work-around-it
Stops execution and fixes root cause when commands, builds, scripts, or tools fail unexpectedly. Triggers on workaround language: 'directly', 'instead', 'alternatively', 'skip', 'fall back', 'work around', 'isn't working', 'broken', 'manually'. Activates on any unexpected non-zero exit code or process failure.
What this skill does
# Fix It, Never Work Around It ## Critical Rules ๐จ **Rule 1: Follow the prescribed process exactly.** If a step in the process fails, fix the root cause. Never skip, replace, or approximate the step. If you don't fix it, the problem recurs and all subsequent work is compromised. This does not apply to expected failures like TDD red phase โ a failing test is the process working correctly. Example: The code review subagent failed. โ "I'll review my own code and push." โ Fix why the subagent failed. ๐จ **Rule 2: Follow instructions exactly.** If a tool or command doesn't produce the expected result and there is no obvious alternative that produces the exact same result, stop immediately. Fix the root cause or ask for help. Never fabricate, approximate, or substitute. Example: API authentication failed. โ "I'll define some likely values instead." โ Fix the authentication or ask the user. ## Workaround Detection If you catch yourself using any of these phrases, you are about to workaround. STOP. | Workaround Signal | What You're Actually Doing | |---|---| | "Let me check via X **directly**" | Bypassing the broken tool | | "X **is broken**, let me use Y **instead**" | Abandoning the fix | | "Let me try a **different approach**" | Avoiding the actual problem | | "I'll **work around** this by..." | Literally saying it | | "**Alternatively**, we can..." | Proposing a bypass | | "Since X **isn't working**, let me..." | Giving up on fixing X | | "Let me just **manually**..." | Bypassing automation | | "I'll **skip** this step and..." | Ignoring the failure | | "Let me **fall back** to..." | Retreating from the fix | ## Anti-patterns ### โ The Helpful Bypass ``` โบ Bash(npm run build) โฟ Error: Module not found '@company/shared' โบ The build has a dependency issue. Let me check the source files directly to understand the code structure. ``` The build is broken. Reading source files "directly" doesn't fix the build. ### โ The Tool Swap ``` โบ Bash(nx show projects) โฟ Error: Failed to process project graph โบ NX project graph is broken. Let me check the tasks via gh directly and read the PRD. ``` The NX project graph is broken. Using `gh` doesn't fix the project graph. Every NX command will fail until this is fixed. ## Mandatory Checklist When a command or process fails unexpectedly: 1. [ ] Verify you have STOPPED your current task 2. [ ] Verify you are investigating the ROOT CAUSE of the failure 3. [ ] Verify your proposed fix makes the ORIGINAL command/process work 4. [ ] Verify you are NOT using a different tool/source/approach to bypass 5. [ ] Verify the original command succeeds after your fix Do not resume your previous task until all checks pass. ๐จ **REMEMBER: Following the process and following instructions is MORE important than achieving a result by any means necessary. Consistency and reliability are crucial. Do not improvise, do not try to be helpful when the process cannot be followed.**
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.