원클릭으로
lint
Run linters, formatters, and static analysis. Trigger: lint, format, standards, style check, code quality, lint setup
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run linters, formatters, and static analysis. Trigger: lint, format, standards, style check, code quality, lint setup
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create a new feature using TDD and tracer bullets. Trigger: new feature, add feature, implement feature, build feature
Break features into tracer bullet stories and tasks. Trigger: decompose, break down, split feature, tracer bullet, stories, tasks, decompose feature
Deploy to staging or production with safety checks. Trigger: deploy, ship, release, push to staging, push to production
Build or update .context.md for a module. Trigger: explore module, explore, understand module, what does this module do, context file, update context
Fix a bug with root cause analysis and regression testing. Trigger: fix bug, broken, regression, error, crash, not working, failing
Safely refactor existing code with tests as the contract. Trigger: refactor, tech debt, code smell, clean up, restructure, reorganize
| name | lint |
| description | Run linters, formatters, and static analysis. Trigger: lint, format, standards, style check, code quality, lint setup |
Linter configs ARE the canonical coding standards. Not prose documentation -- machine-enforced rules. If a convention is not in the linter config, it is a suggestion, not a standard. Every project should have a linter stack configured on day one, and the CI pipeline should block non-compliant code from merging.
WRONG (prose standards): RIGHT (linter-enforced):
1. Write 10-page style guide 1. Configure linter rules
2. Hope developers read it 2. Pre-commit hook enforces
3. Review for style manually 3. CI blocks non-compliant code
4. Style guide gets stale 4. Linter config IS the style guide
/lint --> make lint (all files)
/lint [file|dir] --> lint specific files or directory
/lint fix --> make format, then make lint
/lint --fix --> make format, then make lint
/lint setup --> scaffold linter stack (see linter-stacks.md)
| Mode | Commands |
|---|---|
| Check only | make lint |
| Specific files | Run linter directly with file arguments |
| Auto-fix | make format then make lint |
| Setup | See /lint setup section below |
Lint Results:
- Errors: [N] (must fix)
- Warnings: [N] (should fix)
- Info: [N] (optional)
For each issue:
[severity] [file:line] [rule-id] -- [message]
Group by file, then by severity within each file. Most critical issues first.
/lint fix)make format first (auto-fixable formatting issues)make lint (remaining issues that need manual attention)Auto-Fixed:
- [N] formatting issues (via formatter)
- [N] import ordering issues
Remaining (manual fix required):
- [N] errors
- [N] warnings
/lint setup ModeWhen the user runs /lint setup, scaffold the linter stack for the project's language:
pyproject.toml, package.json, Cargo.toml, etc.linter-stacks.md for the recommended configurationlint, format, and typecheck targets if missinglinter-stacks.md -- Configuration examples per language (Python/Ruff, TypeScript/ESLint, Rust/Clippy)