dxkit-evaluate

dxkit-evaluate is a skill for Claude Code, Codex from vyuh-labs/dxkit. It costs 90 tokens per session (665 once invoked), scanned A, original, MIT.

A trial tool for checking how dxkit, a code-change guardrail, would have judged a repository’s past merged changes. It runs in temporary workspaces and leaves the repository unchanged.

In plain words
What is it for?
Use it to replay recent merged changes, test a selected range, compare security or broader checks, and produce a shareable report.
Why use it?
It answers whether dxkit would have caught real problems before you install or enable it. You can see likely blocks and the work its rules would add without changing your project.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/vyuh-labs/dxkit/dxkit-evaluate
Any agent
npx skills add vyuh-labs/dxkit --skill dxkit-evaluate
Clone the repo
git clone --depth 1 https://github.com/vyuh-labs/dxkit

Made for: Claude Code, Codex.

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 dxkit-evaluate

README.md
[![agentmods](https://agentmods.dev/badge/skills/vyuh-labs/dxkit/dxkit-evaluate.svg)](https://agentmods.dev/skills/vyuh-labs/dxkit/dxkit-evaluate)
Your own site
<a href="https://agentmods.dev/skills/vyuh-labs/dxkit/dxkit-evaluate"><img src="https://agentmods.dev/badge/skills/vyuh-labs/dxkit/dxkit-evaluate.svg" alt="Measured on agentmods" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 665 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00090 $0.00665
Opus 5 $0.00045 $0.00332
Sonnet 5 $0.00018 $0.00133
Haiku 4.5 $0.00009 $0.00067

Measured 5d ago against content hash 0834208c3bac, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

dxkit-evaluate 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 5d 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.

src-templates/.claude/skills/dxkit-evaluate/SKILL.md · 53 lines

How it starts

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

dxkit-evaluate

This skill answers the pre-adoption question honestly: what would dxkit's gate have done on this repo's real history, and at what cost? It runs the real guardrail — the same code path the installed Stop-gate and CI gate use — against historical ref pairs, in disposable temp worktrees. Nothing is written to the repo: no .dxkit/, no baseline, no hooks.

Running the trial

The default replays the last 10 landings (merged PRs / squash commits) of the current branch:

vyuh-dxkit evaluate                      # last 10 landings, security-only posture
vyuh-dxkit evaluate --last-prs 20        # more history
vyuh-dxkit evaluate --preset full-debt   # also gate test gaps + quality regressions
vyuh-dxkit evaluate --base origin/main~5 --head origin/main   # one explicit range
vyuh-dxkit evaluate --json               # the versioned evidence document
vyuh-dxkit evaluate --json --redact      # shareable: file paths + lines stripped

Reading the result

  • Blocked landings list the exact net-new findings the gate would have returned for repair. Dependency findings on old landings carry an anachronism note (advisories are current-day) — say so when summarizing.
  • A clean replay is a positive result, not an empty one: it means the repo's existing debt would be grandfathered and the gate would have stayed out of the way. Present it that way — the gate's value is blocking the regression that hasn't happened yet, and the trial just measured its false-block behavior on real history.
  • The costs section is measured, not modeled: gate latency comes from this trial on this machine, the interruption rate from the repo's own history. Quote those numbers; do not invent others.
  • Some finding classes are structurally excluded from a ref-vs-ref replay (duplication, test gaps, custom checks) — the output discloses this. Do not claim the trial covered them.

Next steps to offer

  • Clean history and the user wants to see a block happen: npx -y @vyuhlabs/dxkit@latest demo loop-guardrail (20 seconds, fixture repo, their repo untouched).
  • Ready to enable: npm init @vyuhlabs/dxkit -- --claude-loop --yes, then vyuh-dxkit baseline create. Everything is reversible via vyuh-dxkit uninstall.

Read the full file on GitHub · 53 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. 5d ago First seen · 53 lines · 90 tokens per session scan A 0834208c3bac

Subscribe to this mod's changes

dxkit-evaluate is a skill published in the GitHub repository vyuh-labs/dxkit (10 stars, last pushed 7d ago), licensed MIT. It adds 90 tokens to every session and 665 once invoked, about $0.0005 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-31.

Related

Other skills, from other repositories

release-habit-hooks

Cut a new release of the habit-hooks packages. Use when asked to release, publish, or bump the version. Reviews what lands, enforces the in-sync versioning rule, validates the changelog, and drives the tag-triggered PyPI publish.

habit-hooks/habit-hooks · 56 tokens

habit-hooks-review

Spawn a reviewer sub-agent to assess a change set against habit-hooks's coding principles. Use AFTER habit-hooks reports clean — habit-hooks catches structural smells; this catches what it cannot (correctness, tests, design, missed edge cases).

habit-hooks/habit-hooks · 51 tokens

habit-hooks-prompting

Write or revise a habit-hooks coaching prompt. Use when a linter / knip / jscpd rule fires and the agent's default fix is wrong or shallow, or when adding a project-local override prompt. Keeps prompts short and outcome-focused using the ROSE pattern.

habit-hooks/habit-hooks · 61 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements, and design before implementation.

HumanBean17/jrag · 38 tokens

writing-plans

Use when you have a spec or requirements for a multi-step task, before touching code.

HumanBean17/jrag · 21 tokens

explore-codebase

MUST BE USED PROACTIVELY. Universal read-only codebase exploration. Combines jrag graph navigation (call chains, routes, service boundaries, impact analysis, FQN resolution) with broad file-system search (grep, glob, file reading). Use for any exploration: locating code, tracing dependencies, finding patterns, 'where…

HumanBean17/jrag · 117 tokens