dxkit-feature

dxkit-feature is a skill for Claude Code from vyuh-labs/dxkit. It costs 0 tokens per session (2,723 once invoked), scanned A, original, MIT.

A feature-development guide that uses a code graph—a map of how parts of a codebase connect—to locate the right places for new code. It then checks the change for security, test, and quality regressions.

In plain words
What is it for?
Use it when adding or implementing a feature in an existing codebase. It helps identify affected modules, follow established project patterns, and run checks before the change is pushed.
Why use it?
It reduces the need to read an entire repository before making a change. It also catches problems that can be missed after implementation, such as vulnerabilities, missing tests, or quality regressions.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it when adding or implementing a feature in an existing codebase.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/vyuh-labs/dxkit/dxkit-feature.svg)](https://agentmods.dev/skills/vyuh-labs/dxkit/dxkit-feature)
Your own site
<a href="https://agentmods.dev/skills/vyuh-labs/dxkit/dxkit-feature"><img src="https://agentmods.dev/badge/skills/vyuh-labs/dxkit/dxkit-feature.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,723 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.
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.00000 $0.02723
Opus 5 $0.00000 $0.01362
Sonnet 5 $0.00000 $0.00545
Haiku 4.5 $0.00000 $0.00272

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

Security

Grade A, and why

dxkit-feature 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 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.

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-feature/SKILL.md · 223 lines

How it starts

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

dxkit-feature

This skill drives forward development — building something new — the way dxkit-action drives the reverse (fixing what's flagged). Its two jobs:

  1. Orient by graph, not by grep. Use the code graph to find where the feature plugs in, what patterns already exist, and what a change will touch — at a fraction of the tokens that repeated whole-file reads cost.
  2. Close the loop a plain coding agent skips. After the edit, run the dxkit analyzers on the change and the guardrail check, so the new feature doesn't quietly ship a vuln, a test gap, or a quality regression.

Defer to a repo-specific feature/architecture skill first

This skill is deliberately generic — it claims the broad "add a feature / implement X" trigger. But many repos define their own skill for building a module or feature (an /add-module, a platform architecture guide, a domain-specific scaffolder) that encodes where code must live and what contract it must satisfy in that codebase. When such a skill exists, it wins on architecture: it decides the shape, the boundaries, the naming, the layering.

The two compose — they don't conflict:

  • The repo skill owns the architecture contract — the "what and where."
  • This skill owns the method — orient by graph instead of grep (step [2]), and verify the change didn't regress security/tests/quality before pushing (step [5]). Offer those as the layer that runs inside the repo's flow.

So when the user's request matches both, follow the repo-specific skill for the design decisions and fold this skill's orientation + verification steps into it — don't override the repo's conventions with the generic loop below. Only when the repo has no feature/architecture skill of its own does this skill drive the whole flow end to end.

The feature loop

[1] Clarify        → what's the feature + what does "done" mean
[2] Orient         → query the graph: where it lives, patterns, blast radius
[3] Plan           → ordered edits, reusing the patterns found in [2]
[4] Build          → read only the files the graph named, then implement
[5] Verify         → run the analyzers on the change; confirm nothing regressed
[6] Decide baseline→ commit, or re-baseline if the change is deliberately accepted

Read the full file on GitHub · 223 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 · 223 lines · 0 tokens per session scan A dd097a6ea9ca

Subscribe to this mod's changes

dxkit-feature is a skill published in the GitHub repository vyuh-labs/dxkit (10 stars, last pushed 9d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,723 tokens. 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

software-code-refactoring

Improve production code quality while preserving all existing test behavior. Commonly used for the Refactor phase of TDD red-green-refactor, but applicable to any codebase with tests. Use when production code works but needs cleanup — reducing duplication, improving naming, simplifying complexity, aligning with…

stencila/stencila · 102 tokens

brooks-test

Test quality review drawing on twelve classic engineering books — with primary focus on xUnit Test Patterns, The Art of Unit Testing, How Google Tests Software, and Working Effectively with Legacy Code — that diagnoses structural problems in an existing test suite: brittleness, mock abuse, coverage illusions, slow…

hyhmrright/brooks-lint · 161 tokens

debug

Run /debug to find and fix a bug's root cause: a test failing for an unclear reason, /check verify finding a failure, or behavior being wrong. Runs a reproduce, localize, hypothesize, test, fix, verify loop, makes the minimal fix, and hands a regression test to /test. No features, no extra refactors.

jsmastery-pro/skills · 74 tokens

recipe-add-integration-tests

Add integration/E2E tests to existing codebase using Design Docs.

shinpr/claude-code-workflows · 19 tokens

test-implement

Implements React/TypeScript unit, integration, and browser E2E tests with the repository's configured runner, mocks, setup, and browser harness. Use when creating or completing frontend tests and generated test skeletons.

shinpr/claude-code-workflows · 48 tokens

ESLint for Test Quality

Enforce test quality with ESLint - eslint-plugin-jest, eslint-plugin-playwright, and eslint-plugin-testing-library rules in flat config, blocking focused tests, missing assertions, and flaky waits via a CI lint gate.

PramodDutta/qaskills · 50 tokens