reuse-audit

A read-only review skill for finding existing reusable web components and shared code before creating a new component.

In plain words
What is it for?
Use it when planning a web component to compare its needed properties, events, and states with composables, utility components, theme code, and nearby components.
Why use it?
It helps prevent duplicate logic, such as separate loading spinners or notification code, which can later behave differently and require repeated fixes.

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/aziontech/webkit/reuse-audit
Any agent
npx skills add aziontech/webkit --skill reuse-audit
Clone the repo
git clone --depth 1 https://github.com/aziontech/webkit

Made for: Claude Code, Codex.

Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 651 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.00031 $0.00651
Opus 5 $0.00015 $0.00326
Sonnet 5 $0.00006 $0.00130
Haiku 4.5 $0.00003 $0.00065

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

Security

Grade A, and why

reuse-audit 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 2d 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/reuse-audit/SKILL.md · 70 lines

How it starts

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

Skill: reuse-audit

Purpose

Before scaffolding, prove whatever logic the new component needs does not already exist somewhere. Duplicating useToast, Spinner, or Currency causes drift; this skill catches that.

When to invoke

  • Step 2 (parallel discovery) of /component-create.

Inputs

  • The full text of .specs/<name>.md (to know what props/events/states the component needs).
  • Read-only access to:
    • packages/webkit/src/composables/
    • packages/webkit/src/components/webkit/utils/
    • packages/webkit/src/components/webkit/<category>/ (siblings of the new component)
    • packages/theme/src/ (animations, transitions)

Workflow

  1. Index existing reusables. List every directory under composables/, every utils/<name>/, every same-category sibling. For each, read package.json to get the export name and the .vue's defineOptions.name.
  2. Match by intent. For each props/events/state in the spec, search for keywords:
    • loading / spinnerwebkit/utils/spinner
    • toast / notificationcomposables/use-toast
    • dialog open/close → composables/use-dialog
    • currency / pricewebkit/content/currency
    • tagwebkit/content/tag
    • and so on.
  3. Emit suggestions as a JSON array:
    [
      {
        "spec_needs": "loading state",
        "reuse": "@aziontech/webkit/utils/spinner",
        "rationale": "Existing utility used in button.vue and card-pricing.vue"
      }
    ]
    
  4. Empty array is a valid output (nothing to reuse).

Outputs

  • A JSON array (possibly empty). Nothing else.

Rules

  • Do not suggest a path that does not exist. If composables/use-toast is not in the filesystem, do not name it.
  • Do not invent new utility locations. If a need cannot be satisfied by what exists, omit the row — the scaffolder will write the logic inline, and a follow-up PR can extract it.
  • Do not edit any file. This is read-only.

Fallbacks

  • A target directory does not exist → silently skip it (do not emit an error).

Read the full file on GitHub · 70 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. 2d ago First seen · 70 lines · 31 tokens per session scan A eae873b9be89

Subscribe to this mod's changes

reuse-audit is a skill published in the GitHub repository aziontech/webkit (2 stars, last pushed 5d ago), licensed MIT. It adds 31 tokens to every session and 651 once invoked, about $0.0002 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

monorepo-management

Sets up or audits a monorepo workspace: tool selection, package naming, shared tooling, inter-package dependencies, selective CI, and versioning strategy. Invoked when the user asks to set up a monorepo, add a workspace, or manage multiple packages in a single repository.

soulcodex/agentic · 63 tokens

bazel-monorepo-expert

Expert knowledge for managing large-scale Bazel monorepos with multiple services, shared libraries, and cross-cutting concerns. Use for workspace structure, visibility, and dependency management.

kinhluan/rules-quarkus-skills · 43 tokens

pnpm

Skill "pnpm" from pledgeandgrow/pledge-skills, covering pnpm documentation skill, key benefits, file index, quick start and install pnpm.

pledgeandgrow/pledge-skills · 31 tokens

fast-typescript-check

Keep www-sacred's TypeScript fast to type-check and fast to run. Use when touching the ASCII/canvas animation components (the only real per-frame code here), tightening type-check wall-clock, or auditing a change for runtime or compiler regressions. Scoped to this repo — a React 19 / Next.js 16 component library plus…

internet-development/www-sacred · 84 tokens

port-sacred-terminal-ui-to-react-using-same-conventions

Take a CLI screen written for Simulacrum — the sacred CLI framework (scripts/cli/templates/.ts or scripts/python/templates/.py) — and produce a React component that lives inside components/examples/ (or components/) using only sacred's existing primitives — Window, Card, SimpleTable, ActionButton, RowSpaceBetween…

internet-development/www-sacred · 0 tokens

tinyvue-develop-spec

在当前仓库进行组件的开发,主题开发,国际化开发,测试脚本开发时,必须遵守以下规范。.

opentiny/tiny-vue · 12 tokens