.claude/skills/audit/SKILL.md
Run dependency security audit using pip-audit. Use when checking for known vulnerabilities in project dependencies.
npx skillsauth add taewook486/real-estate-mcp auditInstall 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.
Scan project dependencies for known security vulnerabilities.
Run via pre-commit (preferred):
uv run pre-commit run pip-audit --hook-stage manual
Or directly:
uv run pip-audit --desc --require-hashes
Summarize results as:
## Dependency Security Audit
### Summary
- Packages scanned: [count]
- Vulnerabilities found: [count]
### Vulnerabilities
- [package] [version]
- CVE: [CVE-ID]
- Severity: [Critical/High/Medium/Low]
- Description: [brief description]
- Fix version: [version]
### Recommended Actions
- Upgrade immediately: [package list]
- Consider replacement: [package list]
Triage by severity:
If no vulnerabilities: output Dependency audit passed ✓ only.
check skill (bandit)testing
--- 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.