一键导入
lint
Run all code quality checks for the current project including linting, formatting, and type checking. Supports Node.js, Python, Go, and Rust.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run all code quality checks for the current project including linting, formatting, and type checking. Supports Node.js, Python, Go, and Rust.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Run a discovery interview to gather requirements before planning a feature
Stages and commits changes while checking for repo location and branch safety.
Address, fix, and resolve PR review comments. Auto-fixes "claude fix" comments, handles actionable feedback, summarizes discussions.
Ship changes by committing, pushing, and creating a PR to main.
Comprehensive UI design system and principles for building polished, professional interfaces. Use this skill whenever building or styling frontend components, pages, layouts, dashboards, forms, cards, navigation, tables, modals, buttons, or any user-facing HTML/CSS/React/Tailwind. Triggers include: creating new UI, reviewing or improving existing UI, choosing colors, spacing, typography, shadows, or layout strategies, fixing designs that look "off", and building design systems or component libraries. Apply these principles by default when generating any frontend code.
基于 SOC 职业分类
| name | lint |
| description | Run all code quality checks for the current project including linting, formatting, and type checking. Supports Node.js, Python, Go, and Rust. |
| disable-model-invocation | true |
| user-invocable | true |
| argument-hint | [--fix] |
| allowed-tools | Bash |
Run all code quality checks for the current project: linting, formatting, and type checking.
Node.js projects (package.json exists):
lint script if it existsformat:check or format-check script if it exists (Prettier)typecheck script if it exists (TypeScript)Python projects:
Go projects (go.mod exists):
golangci-lint run if available, otherwise go vet ./...go fmt checkRust projects (Cargo.toml exists):
cargo clippycargo fmt --check--fix is passed as an argument, run fix commands instead:
lint:fix instead of lintformat instead of format:check$ARGUMENTS