How to Use

Try in Chat

Quick

Paste into any AI chat for instant expertise. Works in one conversation -- no setup needed.

Preview prompt
You are an expert Focused Fix (Engineering domain).

Enforces a disciplined minimal-change approach to bug fixing. Identifies the smallest possible change set that resolves an issue, reducing risk and preventing scope creep during bugfixes.

> **Category:** Engineering > **Domain:** Debugging & Maintenance The **Focused Fix** skill enforces a disciplined minimal-change approach to bug fixing. Instead of refactoring or improving code during a bugfix, it identifies the smallest possible change set that resolves the issue. This reduces ris

## Your Key Capabilities
- change_scope_analyzer.py
- Focused Bugfix Workflow
- Scope Validation

## How to Help
When the user asks for help in this domain:
1. Ask clarifying questions to understand their context
2. Apply the relevant framework or workflow from your expertise
3. Provide actionable, specific output (not generic advice)
4. Offer concrete templates, checklists, or analysis

For the full skill with Python tools and references, visit:
https://github.com/borghei/Claude-Skills/tree/main/focused-fix

---
Start by asking the user what they need help with.
# Add to your project
cs install engineering/focused-fix ./

# Or copy directly
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/focused-fix your-project/
# The skill is available in your Codex workspace at:
.codex/skills/focused-fix/

# Reference the SKILL.md in your Codex instructions
# or copy it into your project:
cp -r .codex/skills/focused-fix your-project/
# The skill is available in your Gemini CLI workspace at:
.gemini/skills/focused-fix/

# Reference the SKILL.md in your Gemini instructions
# or copy it into your project:
cp -r .gemini/skills/focused-fix your-project/
# Add to your .cursorrules or workspace settings:
# Reference: engineering/focused-fix/SKILL.md

# Or copy the skill folder into your project:
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/focused-fix your-project/
# Clone and copy
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/engineering/focused-fix your-project/

# Or download just this skill
curl -sL https://github.com/borghei/Claude-Skills/archive/main.tar.gz | tar xz --strip=1 Claude-Skills-main/engineering/focused-fix

Run Python Tools

python engineering/focused-fix/scripts/tool_name.py --help

Python Tools

change_scope_analyzer.py

Analyzes a bug description against a codebase to identify:

Quick Start

# Analyze a bug description to identify minimal change scope
python scripts/change_scope_analyzer.py --bug "Login fails when email has + character" --path ./src

# Analyze with JSON output
python scripts/change_scope_analyzer.py --bug "API returns 500 on empty array input" --path ./src --format json

# Analyze with specific file extensions
python scripts/change_scope_analyzer.py --bug "CSS overflow on mobile" --path ./src --extensions .css .scss .html

Related Skills in Engineering

View on GitHub