quick-fix
The quick-fix command automatically detects your project type (Node.js, Python, or Go) and identifies linting, type, and syntax errors using appropriate tools like TypeScript, ESLint, and Ruff. It applies minimal fixes to resolve the specified issues, then re-runs validation checks to confirm corrections. Use this command when you need rapid resolution of straightforward errors without manual debugging.
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/CloudAI-X/claude-workflow-v2/HEAD/commands/quick-fix.md -o ~/.claude/commands/quick-fix.mdquick-fix.md
## Context - Package manager detection: !`ls package.json 2>/dev/null && echo "Node.js project" || ls requirements.txt pyproject.toml 2>/dev/null && echo "Python project" || ls go.mod 2>/dev/null && echo "Go project" || echo "Unknown"` - Recent changes: !`git diff --name-only HEAD~1 2>/dev/null || git diff --name-only` - TypeScript errors (if applicable): !`npx tsc --noEmit 2>&1 | head -30 || echo "No TypeScript"` - ESLint errors (if applicable): !`npx eslint . --format compact 2>&1 | head -30 || echo "No ESLint"` - Python lint (if applicable): !`python3 -m ruff check . 2>&1 | head -30 || python3 -m flake8 . 2>&1 | head -30 || echo "No Python linter"` ## Task Fix the issue described below: 1. Identify the type of error (type error, lint, syntax, logic) 2. Locate the problematic file(s) 3. Apply the minimal fix needed 4. Verify the fix by re-running the relevant check 5. Report what was fixed Target: $ARGUMENTS
Expert code review specialist. Use PROACTIVELY after writing or modifying code, before commits, when asked to review changes, PR review, code quality check, lint, or standards audit. Focuses on quality, security, performance, and maintainability.
Expert debugging specialist for errors, test failures, crashes, segmentation faults, memory leaks, timeouts, race conditions, deadlocks, and unexpected behavior. Use PROACTIVELY when encountering any error, exception, or failing test. Performs systematic root cause analysis.
Technical documentation specialist. Use for creating README files, API documentation, architecture docs, inline comments, user guides, changelogs, migration guides, release notes, FAQs, and troubleshooting docs. MUST BE USED when documentation is needed or when code changes require doc updates.
Master coordinator for complex multi-step tasks. Use PROACTIVELY when a task involves 2+ modules, requires delegation to specialists, needs architectural planning, or involves GitHub PR workflows. MUST BE USED for open-ended requests like "improve", "enhance", "build", "scale", "refactor", "add feature", "system design", "architecture", "complex task", or when implementing features from GitHub issues.
Code refactoring specialist for improving code quality, reducing technical debt, eliminating code smells, reducing complexity, and applying design patterns. Use PROACTIVELY when code needs restructuring, simplification, tech debt reduction, or when applying DRY/SOLID principles.
Security specialist for vulnerability detection, secure coding review, and security hardening. Use PROACTIVELY when handling authentication, authorization, encryption, secrets, credentials, OAuth, JWT, CORS, headers, user input, API keys, or sensitive data. Checks for OWASP Top 10 and common vulnerabilities.
Testing strategy specialist for designing test suites, writing tests, and ensuring comprehensive coverage. Use PROACTIVELY when adding new features, fixing bugs, improving test coverage, creating test plans, mocking strategies, handling flaky tests, or writing integration/E2E tests.
Add tests for recently changed files or specified code