implement-quick-fix
1
总安装量
1
周安装量
#77046
全站排名
安装命令
npx skills add https://github.com/dthompson-jti/safety-check-app-concept --skill implement-quick-fix
Agent 安装分布
amp
1
cline
1
opencode
1
cursor
1
continue
1
kimi-cli
1
Skill 文档
Implement Quick Fix
Atomic code changes for small-scope fixes.
When to Use
- Bug fixes
- Minor tweaks (â¤30 lines, â¤5 files)
- Small improvements with clear scope
Scope Gate
If scope exceeds â¤30 lines or â¤5 files, STOP and escalate to plan/feature.
High Risk Gate
If touching /config/, /security/, or /.github/, STOP and notify user.
Artifacts
task.mdupdated viatask_boundary
Approach
Phase 1: Scope Confirmation
Confirm:
- Estimated lines of change
- Files affected
- No high-risk paths
Phase 2: Analysis
- Review holistic design principles
- Check for pattern consistency
- Identify regression risks
Phase 3: Execution
- Make the change
- Run
npm run lint - Run
npm run build - If errors, fix (max 3 attempts)
Phase 4: User Verification
STOP and present changes. Ask user to verify in browser.
Constraints
- Do NOT use browser for testing â user will test manually
- If scope larger than expected, notify user immediately
- No hardcoded secrets or unauthorized network calls