ワンクリックで
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.