clawrium: Skill for Claude Code

.claude/skills/itx-verify/SKILL.md

itx-verify is a skill for Claude Code from ric03uec/clawrium. It costs 14 tokens per session (593 once invoked), scanned A, original, Apache-2.0.

A verification add-on that runs a project’s configured tests and lint checks, and can optionally check code coverage. Lint checks look for common code or style problems before the project is shipped.

In plain words
What is it for?
Use it to run the repository’s test command, lint command, and optional coverage command, then report the result of each check.
Why use it?
It provides one routine for checking whether current changes still work and meet the project’s quality rules. Failed checks are reported so they can be fixed and run again.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: mentions AGENTS.md.

This is ric03uec/clawrium's own configuration. It tells Claude Code how to work on clawrium itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything clawrium configures →

Reuse

Borrowing it

Nothing to install: this file belongs to ric03uec/clawrium. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/ric03uec/clawrium/main/.claude/skills/itx-verify/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ric03uec/clawrium

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for itx-verify

README.md
[![agentmods](https://agentmods.dev/badge/skills/ric03uec/clawrium/itx-verify.svg)](https://agentmods.dev/skills/ric03uec/clawrium/itx-verify)
Your own site
<a href="https://agentmods.dev/skills/ric03uec/clawrium/itx-verify"><img src="https://agentmods.dev/badge/skills/ric03uec/clawrium/itx-verify.svg" alt="Measured on agentmods" height="20"></a>
Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 593 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00014 $0.00593
Opus 5 $0.00007 $0.00296
Sonnet 5 $0.00003 $0.00119
Haiku 4.5 $0.00001 $0.00059

Measured 3d ago against content hash af6def927a76, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

itx-verify scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/itx-verify/SKILL.md · 103 lines

How it starts

The opening of the file, as written. The whole thing — 103 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Verification

Run all verification checks to ensure code quality.

Instructions

  1. 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
    
  2. Run Tests:

    $TEST_CMD
    
    • All tests must pass
    • Note any failures with details
  3. Run Linter:

    $LINT_CMD
    
    • All lint checks must pass
    • Fix any issues found
  4. Check Coverage (optional):

    $COV_CMD
    
    • Review coverage for new code
    • Ensure critical paths are tested
  5. 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>
    
  6. If Failures:

    • Fix issues
    • Re-run verification
    • Iterate until all checks pass

Configuration

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 test
  • lint_command: make lint
  • coverage_command: make test-cov

Notes

  • This is a local operation
  • Must pass before creating PRs
  • Use this after making changes, before committing
  • Can be run multiple times during development

Prompt Logging

REQUIRED: Append prompt log to .itx/<N>/02_VERIFY.md.

See AGENTS.md for format specification.

Read the full file on GitHub · 103 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago Changed · -1 lines af6def927a76
  2. 8d ago First seen · 104 lines · 14 tokens per session scan A a215ff184cd0

Subscribe to this mod's changes

itx-verify is a skill published in the GitHub repository ric03uec/clawrium (51 stars, last pushed 4d ago), licensed Apache-2.0. It adds 14 tokens to every session and 593 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

review-work

Post-implementation review orchestrator. Launches 5 parallel background sub-agents: Oracle (goal/constraint verification), Oracle (code quality), Oracle (security), unspecified-high (hands-on QA execution), unspecified-high (context mining from GitHub/git/Slack/Notion). All must pass for review to pass. MUST USE…

code-yeongyu/lazycodex · 125 tokens

remove-ai-slops

Remove AI-generated code smells (slop) from branch changes or an explicit file list. Locks behavior with regression tests FIRST, then runs categorized cleanup via parallel deep agents in batches of 5, then verifies with quality gates. Covers 10 slop categories including performance equivalences, excessive complexity…

code-yeongyu/lazycodex · 182 tokens

include-test-files-that-assert-on-behavior-being-changed-in-decl

When delegating a task affected by this skill, include.

ZaxbyHub/opencode-swarm · 29 tokens

code-guidelines-go

Go 1.24–1.27 coding guidelines for the dimetron/pi-go AI agent runtime. Use this skill whenever writing, reviewing, or refactoring ANY Go code in pi-go. This covers idiomatic style, error handling, concurrency, project layout, testing (table-driven, fuzz, benchmarks, synctest), new stdlib usage, golangci-lint v2…

dimetron/pi-go · 124 tokens

check

Auto-fix lint and formatting, then report types and tests. Run before every commit.

ffroliva/gflow-cli · 20 tokens

vhs-e2e-gif

Record a test run, a TUI session, or any terminal command as a GIF with VHS and attach it to a GitHub PR as a release-hosted asset, never a repo commit. Use when asked to record an e2e run, demo a fix on a PR, attach a GIF or screen recording to a pull request, show a test passing visually, or produce a terminal…

dimetron/pi-go · 106 tokens