with one click
itx-verify
Run tests, lint, and validate current changes
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Run tests, lint, and validate current changes
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Cut a new clawrium release — bump version, sync docs, tag, trigger PyPI publish
Record a CLI demo (GIF or MP4) using VHS, with storyboard support for long-form / YouTube demos
Watch ric03uec/clawrium release tags; draft a short blog post per user-visible feature as a PR against blog/.
Detect user-visible changes from the last 24h of commits on main and propose doc and scenario updates as PRs.
Execute the plan for an issue (parent or subtask)
Know the clawctl CLI and manage your Clawrium fleet (hosts, agents, providers, channels, integrations, skills, secrets)
| name | itx:verify |
| description | Run tests, lint, and validate current changes |
| argument-hint |
name: itx:verify
Run all verification checks to ensure code quality.
Load Configuration:
ITX_CONFIG="$(git rev-parse --show-toplevel)/.claude/itx-config.json"
if [ -f "$ITX_CONFIG" ]; then
TEST_CMD=$(jq -r '.build.test_command // "make test"' "$ITX_CONFIG")
LINT_CMD=$(jq -r '.build.lint_command // "make lint"' "$ITX_CONFIG")
COV_CMD=$(jq -r '.build.coverage_command // "make test-cov"' "$ITX_CONFIG")
else
TEST_CMD="make test"
LINT_CMD="make lint"
COV_CMD="make test-cov"
fi
Run Tests:
$TEST_CMD
Run Linter:
$LINT_CMD
Check Coverage (optional):
$COV_CMD
Report Results:
## Verification Results
### Tests
- Command: <test command>
- Status: PASS/FAIL
- Details: <summary>
### Lint
- Command: <lint command>
- Status: PASS/FAIL
- Details: <summary>
### Coverage
- Status: <percentage>
- New code coverage: <assessment>
If Failures:
Customize build commands in .claude/itx-config.json:
{
"build": {
"test_command": "npm test",
"lint_command": "npm run lint",
"coverage_command": "npm run test:coverage"
}
}
Defaults (no config):
test_command: make testlint_command: make lintcoverage_command: make test-covREQUIRED: Append prompt log to .itx/<N>/02_VERIFY.md.
See AGENTS.md for format specification.