원클릭으로
code-quality
Run lint + typecheck together. Use after implementation, before committing, or when checking code quality.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Run lint + typecheck together. Use after implementation, before committing, or when checking code quality.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run all code convention checks (constants, enums, keybindings, models, inline CSS). Run after implementation to enforce project standards.
Textual CLI devtools for running, debugging, and exploring TUI apps. Includes run, console, serve, keys, colors, borders, easing commands. Used by tui-developer, tui-test-engineer, and tui-ux-specialist.
Run Textual TUI tests with proper timeouts. Use when running TUI unit tests or after making code changes.
Complete visual analysis workflow - screenshot capture with automatic PNG conversion, AI vision analysis. Use for UX review, freeze detection, and visual verification.
Run all TUI code convention checks (constants, enums, keybindings, models, inline CSS) after implementation to enforce project standards and catch misplaced patterns.
Run lint and type checks together after implementation and before commit to validate code quality for the CLI, TUI, and visual-analysis tooling.
| name | code-quality |
| description | Run lint + typecheck together. Use after implementation, before committing, or when checking code quality. |
| argument-hint | [--fix] |
| allowed-tools | Bash |
Run ruff linter and ty type checker in one command.
/code-quality
source venv/bin/activate && \
echo "=== LINT ===" && \
ruff check eks_helm_reporter/ kubeagle/ .claude/skills/visual-analysis/tui_screenshot_capture/ && \
echo -e "\n=== TYPECHECK (ty) ===" && \
ty check eks_helm_reporter/ kubeagle/ .claude/skills/visual-analysis/tui_screenshot_capture/
=== LINT ===
All checks passed!
=== TYPECHECK (ty) ===
Found N diagnostics
Both checks must pass with 0 errors.