ワンクリックで
check
Force just check before commit, block if failures
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Force just check before commit, block if failures
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Onboard a new contributor to the CineMatch project - setup environment, verify tools, and explain the project
Intelligent just target wrapper with context-aware suggestions for CineMatch
Backlog workflow management - new, start, done commands for incremental delivery. Supports both admin (main branch) and contributor (feature branch) workflows.
Accept a new contributor with write access and close their request issue
TDD cycle helper - run test, check result, update increment file
Generate conventional commit messages with emoji, ensure no Co-Authored-By
| name | check |
| description | Force just check before commit, block if failures |
Ensure code quality with just check before allowing commit.
/check [--force]Run full check suite and report results. Failures must be fixed before commit.
Run just check
just check
Parse results
Report
✓ Syntax: OK
✓ Lint: OK
✓ Typecheck: OK
✗ Test: 2 failures
- tests/test_auth.py::test_login
- tests/test_proxy.py::test_timeout
Block commit if failures
Fix failures before commit. Run: just test tests/test_auth.py -v
/check --forceSkip check and allow commit anyway (use with caution).
The check runs in this order for fast failure:
When using /commit, it automatically runs /check first:
/commit "add feature"
→ Running checks first...
→ ✓ All checks passed
→ Committing: feat: add feature ✨