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.
npx skills add vyuh-labs/dxkit --skill dxkit-allowlistgit clone --depth 1 https://github.com/vyuh-labs/dxkitWrote 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.
[](https://agentmods.dev/skills/vyuh-labs/dxkit/dxkit-allowlist)<a href="https://agentmods.dev/skills/vyuh-labs/dxkit/dxkit-allowlist"><img src="https://agentmods.dev/badge/skills/vyuh-labs/dxkit/dxkit-allowlist.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00180 | $0.03098 |
| Opus 5 | $0.00090 | $0.01549 |
| Sonnet 5 | $0.00036 | $0.00620 |
| Haiku 4.5 | $0.00018 | $0.00310 |
Grade A, and why
dxkit-allowlist 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 7d 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.
How it starts
The opening of the file, as written. The whole thing — 142 lines — stays where its author put it; the contents beside it link to each section on GitHub.
dxkit-allowlist
The allowlist is dxkit's per-finding suppression surface: a reviewed finding that the team has categorized (false-positive, test-fixture, mitigated-externally, accepted-risk, deferred) with a reason, so the guardrail lets it pass on future runs. It's the single source of truth across every scanner — native semgrep/gitleaks and ingested Snyk Code / CodeQL findings alike, all keyed on one fingerprint.
Categories affect the score, not just the guardrail
The category isn't just a label — it decides whether the finding still counts toward the Security score:
false-positive/test-fixturedeclare the finding is not a real finding (a scanner misfire, or throwaway test data). These are lifted from the Security penalties and caps, so a repo that has genuinely triaged its noise scores honestly instead of staying capped on findings it has already reviewed and accepted. This is also why test-file secrets (which dxkit never auto-downgrades by path) should be allowlisted astest-fixtureonce confirmed fake — that's what removes them from the score.accepted-risk/deferred/mitigated-externallyaccept a real exposure. The guardrail stops blocking, but the score keeps counting them — accepting a real risk can't earn an A. (accepted-risk/deferredalso require an expiry so the acceptance ages out.)
So false-positive/test-fixture are the only categories that recover score. Reserve them for findings that genuinely aren't real — miscategorizing a real risk as false-positive to lift the score is exactly the self-deception the typed categories exist to prevent.
This skill manages the allowlist's lifecycle: reviewing what's there, keeping it honest, and propagating decisions outward. For the upstream question — should this be fixed instead of suppressed, and how do I add an entry — that decision and the add path live in dxkit-action. Fix first; suppress second.
The lifecycle at a glance
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.
- 7d ago First seen · 142 lines · 180 tokens per session scan A bffcd96fc8d6
dxkit-allowlist is a skill published in the GitHub repository vyuh-labs/dxkit (10 stars, last pushed 9d ago), licensed MIT. It adds 180 tokens to every session and 3,098 once invoked, about $0.0009 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.
Other skills, from other repositories
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).
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-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.
recipe-front-review
Reviews completed frontend implementation for governing-source compliance, scope economy, repository quality, and security, then applies user-approved React corrections.
dorodango
Polishes working code through successive quality passes in fresh subagents. Use after tests pass when code needs multi-dimension refinement before release.
ring:exploring-codebases
Exploring a codebase across phases: scopes the target, detects architecture, components, and layers, deep-dives each discovered perspective, then synthesizes findings into actionable guidance with file:line evidence. Use to understand how a feature or system works before planning changes, or to orient on an unfamiliar…