一键导入
check
Check code quality without making changes — lint, format, type, and security checks. Use when you want to inspect issues before fixing them.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check code quality without making changes — lint, format, type, and security checks. Use when you want to inspect issues before fixing them.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Apply template-downstream to all registered downstream projects in bulk, one project at a time. Use when you want to push the latest .claude/, .mcp.json, or .pre-commit-config.yaml to every project at once. Triggers on: "일괄 배포", "전체 프로젝트에 내려보내기", "모든 프로젝트 업데이트", "broadcast template", "bulk sync".
The standard business voice for any Korean text a human reads — a formal-yet-friendly business register built on 해요체 but elevated with 합니다/습니다 endings, polite recommendation phrasing, natural greetings/closings, and readable structure. Use whenever producing or rewriting reader-facing text: Telegram replies, reports, READMEs, job outputs, human-facing notes, and especially when rewriting raw TIL/technical notes for sharing with colleagues. Triggers: 비즈니스 톤, business voice, 격식 있는 톤, 동료 공유용 재작성, formal rewrite, 보고서 톤, 발표자료 톤.
한국 특화 기능(교통·날씨·부동산·쇼핑·법률·금융·공공데이터 등) 요청이 들어오면 실행. git pull로 최신화 후 README 레지스트리에서 스킬을 골라 해당 SKILL.md만 읽어 진행한다.
Import Dev Sentinel experiences into localdocs/learn.sentinel.md. Use when the user wants to bring gotchas, failure lessons, or struggle experiences captured by Dev Sentinel into the project's local knowledge base. Triggers: "sentinel 가져와", "sentinel import", "gotcha 정리", "경험 가져와", "sentinel에서 배운 것", "실패 경험 가져와".
Update .claude/, .mcp.json, and .pre-commit-config.yaml from the upstream python-project-template repository into the current project. Only files that exist upstream are updated — project-only files are never deleted. Use when pulling latest tooling, rules, hooks, or skills from the canonical template into this project. Triggers on: "템플릿 최신화", "template sync", "upstream 반영", "template 업데이트".
Planning work in small, known-good increments. Use when starting significant work or breaking down complex tasks.
| name | check |
| description | Check code quality without making changes — lint, format, type, and security checks. Use when you want to inspect issues before fixing them. |
Run all quality checks and report results. Do not auto-fix anything.
This project uses the following hooks in .pre-commit-config.yaml:
Run in order:
# 1. Lint (no fix)
uv run ruff check src/ tests/
# 2. Format check (no fix)
uv run ruff format --check src/ tests/
# 3. Type check
uv run pyright
# 4. Security scan
uv run bandit -c pyproject.toml -r src/
## Code Quality Report
### Ruff Lint
- Status: [pass/fail]
- Issues found: [count]
- Key issues:
- [file:line] [rule-id] [description]
### Ruff Format
- Status: [pass/fail]
- Files needing formatting: [count]
### Pyright
- Status: [pass/fail]
- Type errors: [count]
- Key errors:
- [file:line] [error message]
### Bandit
- Status: [pass/fail]
- Security issues: [count]
- By severity: High [n] / Medium [n] / Low [n]
On failures:
auto-fix skill"If all pass: output Code quality checks passed ✓ only.