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 agentmods add skills/rob-balfre/dryui/dryui-initnpx skills add rob-balfre/dryui --skill dryui-initgit clone --depth 1 https://github.com/rob-balfre/dryuiWrote 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/rob-balfre/dryui/dryui-init)<a href="https://agentmods.dev/skills/rob-balfre/dryui/dryui-init"><img src="https://agentmods.dev/badge/skills/rob-balfre/dryui/dryui-init.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.00039 | $0.03306 |
| Opus 5 | $0.00019 | $0.01653 |
| Sonnet 5 | $0.00008 | $0.00661 |
| Haiku 4.5 | $0.00004 | $0.00331 |
Grade A, and why
dryui-init 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 5d 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 — 136 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/dryui:init
Bootstrap DryUI in the current project, or scaffold a new SvelteKit app when the user asks for a new project.
Install Or Refresh This Skill
The durable install path for DryUI skills is:
npx skills add rob-balfre/dryui
Skill Discipline
This is a short, linear flow. Do not create per-step TaskCreate items — the bookkeeping costs more than the work it tracks. One intent line up front and one summary line at the end is enough.
First tool call is always the script. Do not run an explicit pre-triage ls/[ -f X ] call — the script self-triages and routes via exit code:
bash <skill-base-dir>/scripts/bare-skeleton.sh "$PWD"
- Exit 0 → done. Print one summary line and stop.
- Exit 2 with
route=existing-sveltekit→ follow Apply Setup below. - Exit 2 with
route=ambiguous→ ask the user one question (scaffold over / integrate / abort), then act on the answer. - Any other non-zero → read the message, fix the specific issue, do not re-run the whole thing manually.
Do not Read any file you just copied from templates/ to verify it — those files are validated by bun run check at the end of the script. Do not run bunx sv@latest create into a temp dir. Do not overwrite package.json with Write — the script uses jq to merge so user-set keys (especially overrides) are preserved.
What The Script Does
scripts/bare-skeleton.sh is the single entry point. It self-triages and either bootstraps a bare skeleton or exits 2 with a routing hint. Steps in order:
- Triage — exits 2 with
route=existing-sveltekitifsvelte.config.*is present, orroute=ambiguousifsrc/exists without a config. - Removes
index.ts/index.jsfrom thebun initskeleton. - Copies every file in
templates/into the project root, including localAGENTS.md/CLAUDE.mdinstructions that force UI agents throughdryui-build. - Merges scripts,
lucide-svelteintodependencies, devDependencies, andtype: "module"intopackage.jsonviajq. Preserves existingoverridesand any other dependency keys. - Appends SvelteKit/Vite ignores to
.gitignore(idempotent — checks for/.svelte-kitfirst). - Detects a local dryui workspace at
$DRYUI_LOCAL,../dryui,~/dryui,~/src/dryui, or~/code/dryui. If found, runsbun linkin eachpackages/{ui,lint,primitives,feedback,feedback-server}and writes overrides withlink:@dryui/<pkg>so the consumer pulls the local workspace. If not found, falls back tobun add @dryui/ui+bun add -d @dryui/lint @dryui/feedback @dryui/feedback-serveragainst npm. - Runs
scripts/setup-feedback-agents.sh "$PWD"to copy project-local DryUI skills, detect installed feedback agents, merge project-local MCP config files where possible, and writedryui.config.json. - Runs
bun run checkto validate the contract end-to-end.
What ships with it
13 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- scripts/bare-skeleton.sh 5.0 KB runs code
- scripts/setup-feedback-agents.sh 6.9 KB runs code
- templates/AGENTS.md 1.0 KB
- templates/CLAUDE.md 772 B
- templates/src/app.css 370 B
- templates/src/app.d.ts 232 B runs code
- templates/src/app.html 249 B
- templates/src/layout.css 783 B
- templates/src/routes/+layout.svelte 206 B
- templates/src/routes/+page.svelte 152 B
- templates/svelte.config.js 375 B runs code
- templates/tsconfig.json 348 B
- templates/vite.config.ts 550 B runs code
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.
- 5d ago First seen · 136 lines · 39 tokens per session scan A 89267b18a350
dryui-init is a skill published in the GitHub repository rob-balfre/dryui (9 stars, last pushed 3mo ago), licensed MIT. It adds 39 tokens to every session and 3,306 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.
Other skills, from other repositories
svelte-expert
Expert knowledge in Svelte framework, SvelteKit, reactivity system, compiled approach, and building performant web applications. Use when the user mentions SvelteKit, reactivity, compiler, frontend, performance, or JavaScript, or when the task involves Svelte Fundamentals, Reactivity System, Installation and Setup, or…
svelte
Svelte 5 - Reactive UI framework with compiler magic, Runes API, SvelteKit full-stack framework, SSR/SSG, minimal JavaScript.
svelte-components
Build reusable Svelte components with best practices for composition and state management.
svelte-docs
Svelte 5.x + SvelteKit 2.x — runes, components, stores, transitions, SSR, routing, TypeScript.
sveltekit
SvelteKit - Full-stack Svelte framework with file-based routing, SSR/SSG, form actions, and adapters for deployment.
svelte
Svelte 5 - Reactive UI framework with compiler magic, Runes API, SvelteKit full-stack framework, SSR/SSG, minimal JavaScript.