dxkit-fix

dxkit-fix is a skill for Claude Code from vyuh-labs/dxkit. It costs 99 tokens per session (2,879 once invoked), scanned B, original, MIT.

A guided repair tool for broken dxkit installations. It reads dxkit's diagnostic report and walks through the fixes one at a time.

In plain words
What is it for?
Use it to repair an existing dxkit setup, confirm each proposed shell command, and run the diagnostic check again to verify the repairs.
Why use it?
It helps resolve installation problems such as missing commands, inactive hooks, incomplete scanner tools, or a missing baseline without guessing which repair is needed.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions Claude Code; mentions AGENTS.md.

Good fit Use it to repair an existing dxkit setup, confirm each proposed shell…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vyuh-labs/dxkit/dxkit-fix
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.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/vyuh-labs/dxkit/dxkit-fix.svg)](https://agentmods.dev/skills/vyuh-labs/dxkit/dxkit-fix)
Your own site
<a href="https://agentmods.dev/skills/vyuh-labs/dxkit/dxkit-fix"><img src="https://agentmods.dev/badge/skills/vyuh-labs/dxkit/dxkit-fix.svg" alt="Measured on agentmods" height="20"></a>
Per session 99 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,879 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.00099 $0.02879
Opus 5 $0.00049 $0.01439
Sonnet 5 $0.00020 $0.00576
Haiku 4.5 $0.00010 $0.00288

Measured 6d ago against content hash 6701c127ccc5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade B, and why

dxkit-fix scanned grade B with 1 finding 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 6d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

3. **Suggest a manual workaround** if there's an obvious one (e.g. for global install failures, suggest `sudo npm install -g` on systems where the npm prefix isn't user-writable)
src-templates/.claude/skills/dxkit-fix/SKILL.md · 180 lines

How it starts

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

dxkit-fix

This skill repairs broken dxkit installs. It does NOT install dxkit from scratch (that's dxkit-init) and it does NOT triage code findings (that's dxkit-action). Use it when something about the install itself is wrong — hooks not firing, vyuh-dxkit not on PATH, scanner toolchain missing pieces, baseline absent, etc.

How dxkit-fix works

The skill consumes npx vyuh-dxkit doctor --json output. Doctor returns a structured DoctorReport with a summary.fixable[] array — every failing check carries:

  • label — the problem in one line
  • fix.hint — the human-readable explanation
  • fix.command — the shell command that repairs it (optional)
  • fix.skill — a more specific dxkit-* skill that can deep-dive (optional)

The skill iterates summary.fixable[], asks the customer for confirmation on each fix (with the command shown), runs it, then re-runs doctor at the end to verify everything closed.

Doctor also carries an optional top-level flow field when the repo has a UI→API surface — a diagnosis of the integration contract (unresolved client calls with reasons + suggestions, served routes nobody consumes, and how the served side is resolved). This is diagnostic, not an install fix: it does not appear in summary.fixable[], and dxkit-fix leaves it alone. It surfaces contract health (e.g. a call to a route no backend serves) rather than a broken-install signal.

The repair loop

[1] Run doctor in JSON mode    → npx vyuh-dxkit doctor --json
[2] Read summary.fixable[]     → enumerate broken signals + fix commands
[3] For each fixable:
      [3a] Show the customer: label + hint + command
      [3b] Confirm (default Y)
      [3c] Run the command in their shell
      [3d] Note success/failure
[4] Re-run doctor              → verify the previously-fixable list is now empty
[5] Report what remains        → any non-fixable failures + which dxkit-* skill handles them

Steps

1. Snapshot the broken state

npx vyuh-dxkit doctor --json > /tmp/dxkit-doctor.json

Read the full file on GitHub · 180 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. 6d ago First seen · 180 lines · 99 tokens per session scan B 6701c127ccc5

Subscribe to this mod's changes

dxkit-fix is a skill published in the GitHub repository vyuh-labs/dxkit (10 stars, last pushed 9d ago), licensed MIT. It adds 99 tokens to every session and 2,879 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it B with 1 finding (asks for root). 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

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

explore-codebase-cli

MUST BE USED PROACTIVELY. Universal JVM (Java + Kotlin) codebase exploration (CLI surface): graph navigation (jrag callers/callees/routes/impact/flow/…) plus jrag search (locate code/config by meaning or keywords) and file-system search. Use for any exploration task: locating code, tracing dependencies, finding…

HumanBean17/jrag · 129 tokens

investigate

Manage structured investigations with multi-agent evidence collection, synthesis, tagging, and PHI sanitization. Use when user says "start an investigation", "root cause analysis", or "collect evidence about X". Subcommands: new, run, collect, synthesize, close, status, list, search. Do NOT use for casual debugging or…

john-wilmes/claude-agentic-coding-playbook · 82 tokens