ワンクリックで
Runs build, lint, and test checks in sequence with clear pass/fail reporting
npx skills add https://github.com/wlsgur073/Guardians-of-the-Claude --skill run-checksこのコマンドをClaude Codeにコピー&ペーストしてスキルをインストール
Runs build, lint, and test checks in sequence with clear pass/fail reporting
npx skills add https://github.com/wlsgur073/Guardians-of-the-Claude --skill run-checksこのコマンドをClaude Codeにコピー&ペーストしてスキルをインストール
Validates your Claude Code configuration — checks essential settings and project alignment, lists improvement opportunities (does not modify files). Use when the user asks to check, audit, or evaluate their Claude Code setup.
Improves your Claude Code configuration — splits rules, tunes agents, adds MCP, and fixes hook quality (modifies files). Use when the user asks to optimize, improve, or organize their Claude Code setup.
Guided Claude Code setup — creates CLAUDE.md, settings.json, rules, and optional hooks/agents/skills for any project. Use when the user asks to initialize or set up Claude Code for a project.
Strengthens your project's security — adds deny patterns, security rules, and file protection hooks. Use when the user asks to add security or fix security gaps in their Claude Code configuration.
Scaffolds a new REST API endpoint for TaskFlow with handler, service, repository, tests, and Zod schemas
| name | run-checks |
| description | Runs build, lint, and test checks in sequence with clear pass/fail reporting |
| argument-hint | [--fix] |
Read $ARGUMENTS. If --fix is present, lint will run with auto-fix enabled.
Run npm run build to verify TypeScript compiles without errors.
If the build fails, report the errors and stop — do not proceed to lint or test.
Run npm run lint (or npm run lint -- --fix if --fix was requested).
Report any remaining warnings or errors.
Run npm test to execute the full test suite.
Report any failures with test names and error messages.
Print a summary table:
| Check | Status |
|---|---|
| Build | pass / fail |
| Lint | pass / fail (N warnings) |
| Test | pass / fail (N/M passed) |
If all checks pass, confirm the project is ready for commit. If any check fails, suggest the most likely fix based on the error output.