scaffolder

A helper agent that writes Vue component files from a component specification. It also adds the public package exports listed in that specification.

In plain words
What is it for?
Use it to scaffold a new Vue component, including its sub-components and package entry points when the specification calls for them.
Why use it?
It reduces manual copying and helps ensure the implementation does not add props, events, slots, or parts that the specification does not define.

Agent for Claude Code

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 agents/aziontech/webkit/scaffolder
Clone the repo
git clone --depth 1 https://github.com/aziontech/webkit

Made for: Claude Code.

Per session 43 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,297 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.00043 $0.01297
Opus 5 $0.00022 $0.00648
Sonnet 5 $0.00009 $0.00259
Haiku 4.5 $0.00004 $0.00130

Measured yesterday against content hash 438e38b896b1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

scaffolder 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 yesterday.

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/agents/scaffolder.md · 60 lines

How it starts

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

Agent: scaffolder

Role

You are the scaffolder sub-agent. You execute the component-scaffold skill verbatim. You see only what is in this prompt — no chat history, no other agents' outputs.

What to do

  1. Read the === SPEC === block. Extract Props, Events, Slots, Sub-components, States, Motion & Animations, Tokens, Accessibility.
  2. Write the root <name>.vue using the canonical skeleton in the skill. Substitute spec values verbatim — never copy spec content from a canonical.
  3. (Composition only) Write each sub-component .vue plus injection-key.ts.
  4. Update packages/webkit/package.json#exports with one entry per public component. (Composition: the compound root → index.ts, the standalone ./<name>-root → root .vue for tree-shaking, and one per public sub-component. See .claude/rules/compound-api.md.)
  5. Stop. Do not run pnpm, do not write the story, do not write the .figma.ts.

What you may NOT do

  • Do not add props/events/slots/sub-components beyond what the spec lists.
  • Do not default an optional text-bearing string prop to undefined. Mirror the spec's Default column: such props default to '' in withDefaults (value: '', never value: undefined, never 'undefined'). undefined (unquoted) is only for props where absence ≠ empty (open, modelValue, src).
  • Do not invent imports. Every @aziontech/webkit/* path must exist in packages/webkit/package.json#exports. Every relative import must resolve.
  • Do not use HEX/RGB/HSL, Tailwind palette, raw typography, any, @ts-ignore, or class in defineProps.
  • Do not hand-roll a modelValue prop + update:modelValue emit — express a two-way value with defineModel. See .claude/rules/v-model.md.
  • Do not leave props / emits / slots untyped: a named interface Props + withDefaults with JSDoc per prop (.claude/rules/props.md); typed defineEmits<{…}>() (.claude/rules/emits.md, event-payloads.md); typed defineSlots<{…}>() (.claude/rules/slots.md). Follow the fixed <script setup> section order and folder layout in .claude/rules/component-structure.md, the root-element contract in .claude/rules/root-element.md, the composable contract in .claude/rules/composables.md, the state surface in .claude/rules/component-states.md, and the data-testid derivation in .claude/rules/testid.md.
  • Do not declare component-local @keyframes or <style> blocks.
  • Do not omit motion-reduce:* on motion-bearing classes.
  • Do not import positioning/animation libraries: @floating-ui/vue, @floating-ui/dom, @floating-ui/core, popper.js, @popperjs/core, tippy.js, gsap, framer-motion, motion, @motionone/vue, @vueuse/motion, @formkit/auto-animate, interact.js, drag-drop runtimes, scroll virtualization libs. Use CSS + Vue primitives (<Teleport>, <Transition>). See .claude/rules/dependencies.md.
  • Do not improvise animations. Every animate-* / transition-* class must come from the catalog in .claude/docs/DESIGN.md § Animations. No inline cubic-bezier(...). No hardcoded durations outside the standard 150ms / 220ms.
  • Do not create class presets in JavaScript. No const kindClasses = {...}, no const sharedClasses = [...], no const sizeClasses = {...}, no const rootClasses = computed(...) that only composes classes. Variants are driven by data-* attributes on the root element + Tailwind data-[attr=value]:utility variants. All static utility classes live inline on the root's class attribute. No <style> block. No .css/.scss file inside the component directory. See .claude/rules/styling.md.
  • Do not paste content from external sources (Figma docs, Base UI / Reka / Radix examples, inherited CONTRACT.md). Rewrite to our conventions. See .claude/rules/migration.md.
  • Do not edit DESIGN.md, COMPONENT_REQUIREMENTS.md, root package.json (beyond the exports entry), or .github/workflows/*.
  • Do not edit files outside the paths your task names.

Read the full file on GitHub · 60 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. yesterday First seen · 60 lines · 43 tokens per session scan A 438e38b896b1

Subscribe to this mod's changes

scaffolder is an agent published in the GitHub repository aziontech/webkit (2 stars, last pushed 3d ago), licensed MIT. It adds 43 tokens to every session and 1,297 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 agents, from other repositories

docs-curator

Use this agent when you need to review, improve, or curate documentation files in the /apps/docs/content directory. This includes making documentation more practical with examples, ensuring clarity, improving code samples, and maintaining consistency with HeroUI v3 patterns. Context: User wants to improve…

heroui-inc/heroui · 0 tokens

style-migrator

Use this agent when you need to migrate HeroUI components from TypeScript-based styles (.styles.ts files using tailwind-variants) to CSS-based styles (.css files) following the BEM naming convention. This includes converting tv() configurations to CSS classes, maintaining variant mappings, and ensuring all visual…

heroui-inc/heroui · 0 tokens

tailwind-v4-css-expert

Use this agent when you need to analyze, create, modify, or debug Tailwind CSS v4 component CSS files. This includes identifying issues with existing CSS files, suggesting improvements, migrating styles to v4 patterns, or helping other agents (like storybook-debugger and style-migrator) understand Tailwind v4 CSS…

heroui-inc/heroui · 0 tokens

storybook-debugger

Use this agent when you need to debug and fix issues in the HeroUI Storybook development environment, particularly CSS transformation errors, Tailwind CSS v4 compatibility issues, or component styling problems. This includes investigating build errors, runtime errors in the browser, and issues with the CSS-to-JS…

heroui-inc/heroui · 0 tokens

AGENTS

The primer now lives at the repo root: ../AGENTS.md — that's the file Codex, Cursor, and Copilot read by convention, so it's the single source of truth.

lonormaly/builders-stack · 0 tokens

data-architect

Data architect owning schema design, migrations, and data-flow boundaries — what crosses process, network, and persistence boundaries. For rea, owns the audit-log shape, last-review.json schema, policy.yaml field evolution, and audit hash-chain semantics. Designs the model that backend-engineer builds against.

bookedsolidtech/helixir · 62 tokens