.claude/skills/auto-fix/SKILL.md
Auto-fix lint and formatting issues in Python code using ruff. Use when you want to apply automatic code fixes. Does not fix type errors or security issues.
npx skillsauth add taewook486/real-estate-mcp auto-fixInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Apply automatic fixes for lint and formatting issues only. Type errors and security issues require manual review.
Run in order:
# 1. Fix lint issues
uv run ruff check --fix src/ tests/
# 2. Apply formatting
uv run ruff format src/ tests/
## Auto-Fix Results
### Ruff Lint
- Issues fixed: [count]
- Files modified: [file list]
- Remaining issues: [count] (require manual fix)
### Ruff Format
- Files reformatted: [count]
- Key files changed: [file list]
After fixing:
git add and record with worklog done [description]"check skill to see remaining details"All auto-fixes applied ✓git status first to confirm baseline before applying changestesting
--- name: worklog description: Update worklog files by moving tasks between todo/doing/done states. Use when recording task progress, starting new work, or marking tasks complete. Requires explicit arguments: worklog [done|doing|todo] [description]. --- # Worklog Update task state in worklog files. Requires explicit arguments. ## Worklog Files - `localdocs/worklog.todo.md` — backlog - `localdocs/worklog.doing.md` — in progress - `localdocs/worklog.done.md` — completed (grouped by date, appen
development
Test-Driven Development workflow. Use for ALL code changes - features, bug fixes, refactoring. TDD is non-negotiable.
tools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
development
Refactoring assessment and patterns. Use after tests pass (GREEN phase) to assess improvement opportunities.