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 pproenca/dot-skills --skill storybookgit clone --depth 1 https://github.com/pproenca/dot-skillsWrote 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/pproenca/dot-skills/storybook)<a href="https://agentmods.dev/skills/pproenca/dot-skills/storybook"><img src="https://agentmods.dev/badge/skills/pproenca/dot-skills/storybook/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/pproenca/dot-skills/storybook"><img src="https://agentmods.dev/badge/skills/pproenca/dot-skills/storybook.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 2 findings, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium MCP Rug Pull · line 26 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
- medium MCP Rug Pull · line 59 npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.Fix: Pin the version: npx @scope/[email protected]
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.00242 | $0.03716 |
| Opus 5 | $0.00121 | $0.01858 |
| Sonnet 5 | $0.00048 | $0.00743 |
| Haiku 4.5 | $0.00024 | $0.00372 |
Grade A, and why
storybook 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.
How it starts
The opening of the file, as written. The whole thing — 156 lines — stays where its author put it; the contents beside it link to each section on GitHub.
dot-skills Storybook Best Practices
Comprehensive guide for using Storybook 9+ as the workshop and test bench for a TypeScript/React component library. 52 rules across 8 categories, ordered by the lifecycle of a component in your design system: a wrong .storybook/main.ts cascades into every story; a malformed CSF Meta blocks autodocs, controls, tests, and the a11y panel for that file.
What this skill covers
- Setup —
main.ts,preview.ts, framework selection (Vite vs Webpack, Next.js vs React-only), addon installation via the CLI,staticDirs. - Story authoring (CSF3) —
satisfies Meta<typeof Component>, named exports = stories,tags: ['autodocs']placement, whenrenderis appropriate, story naming conventions. - Args, argTypes, controls — when to rely on inference, when to declare
control: 'select',fn()fromstorybook/testfor callbacks, args vs parameters vs globals. - Decorators & composition — global providers in
preview.ts, MSW for network mocks, subpath-import module mocking (Storybook 9+), decorator signature pitfalls. - Interaction testing —
playfunctions, thestorybook/testimport path (NOT@storybook/test), destructuredcanvas/userEvent,findBy*overwaitFor,addon-vitestfor CI, portable stories. - Accessibility (
axe-corevia@storybook/addon-a11y) —parameters.a11y.test = 'error'as a real gate, per-rule disables,runOnlyscoped to your WCAG target, portalcontext,globals.a11y.manualfor intentional-violation fixtures. - Documentation & design system — autodocs vs MDX, MDX referencing stories with
<Canvas of={...} />, status tags, design tokens as stories, Figma links viaparameters.design. - Build & deployment — Vite over Webpack, on-demand bundling for large libraries, deploy to Chromatic/Vercel for designer review, CI cache configuration.
When to Apply
Reach for this skill when:
- Editing or creating a
*.stories.tsx,*.mdx,.storybook/main.ts,.storybook/preview.ts, orvitest.config.tsthat loadsstorybookTest. - Setting up Storybook on a new project (framework choice,
npx storybook initfollow-up). - Adding or upgrading an addon (a11y, vitest, designs, msw).
- Wiring component tests through
playfunctions and the Vitest addon. - Investigating "Storybook is slow", "controls show text instead of select", "a11y panel shows nothing for my dialog", "play function is flaky in CI".
What ships with it
57 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.
- AGENTS.md 15 KB
- assets/templates/_template.md 2.2 KB
- gotchas.md 2.0 KB
- metadata.json 2.7 KB
- references/_sections.md 3.8 KB
- references/args-derive-from-component-props.md 2.4 KB
- references/args-explicit-control-for-unions.md 2.3 KB
- references/args-no-jsx-in-args.md 2.5 KB
- references/args-pick-args-vs-parameters-vs-globals.md 3.1 KB
- references/args-use-fn-for-callbacks.md 2.0 KB
- references/axe-context-for-portals.md 2.6 KB
- references/axe-disable-rules-not-stories.md 2.4 KB
- references/axe-globals-manual-for-intentional-violations.md 2.7 KB
- references/axe-restrict-runonly-to-wcag-aa.md 2.7 KB
- references/axe-set-test-error-globally.md 2.5 KB
- references/build-cache-storybook-in-ci.md 3.0 KB
- references/build-chromatic-modes-multi-theme.md 5.7 KB
- references/build-deploy-static-build-to-shareable-host.md 2.5 KB
- references/build-manager-brand.md 5.3 KB
- references/build-prefer-vite-over-webpack.md 2.5 KB
- references/build-storybook-composition-refs.md 5.6 KB
- references/build-trim-test-bundle.md 3.3 KB
- references/config-add-addons-via-cli.md 1.9 KB
- references/config-narrow-stories-glob.md 1.8 KB
- references/config-pick-the-right-framework-package.md 2.5 KB
- references/config-static-dirs-not-bundler-imports.md 2.3 KB
- references/config-story-sort-for-large-libraries.md 4.5 KB
- references/config-tokens-css-vars-in-preview.md 4.7 KB
- references/config-typed-main-config.md 1.8 KB
- references/config-typed-preview.md 2.0 KB
- references/csf-co-locate-stories-with-component.md 2.7 KB
- references/csf-default-export-is-the-meta.md 2.3 KB
- references/csf-name-stories-by-state.md 2.5 KB
- references/csf-prefer-args-over-render.md 2.5 KB
- references/csf-satisfies-meta-not-typed.md 2.1 KB
- references/csf-set-meta-component-explicitly.md 1.9 KB
- references/csf-tags-autodocs-on-meta.md 2.4 KB
- references/csf-title-hierarchy-for-design-systems.md 4.7 KB
- references/deco-context-aware-decorators.md 2.8 KB
- references/deco-decorator-component-not-call.md 2.3 KB
- references/deco-global-providers-in-preview.md 2.9 KB
- references/deco-mock-modules-with-subpath-imports.md 3.0 KB
- references/deco-msw-for-network-mocks.md 2.7 KB
- references/deco-rtl-direction-toggle.md 4.7 KB
- references/deco-themes-addon-for-multi-brand.md 5.6 KB
- references/docs-autodocs-vs-mdx.md 3.7 KB
- references/docs-component-status-tags.md 3.4 KB
- references/docs-design-tokens-as-stories.md 3.2 KB
- references/docs-figma-link-via-design-addon.md 2.6 KB
- references/docs-mdx-references-stories.md 2.6 KB
- references/test-await-every-userevent-call.md 2.2 KB
- references/test-findby-over-waitfor.md 2.8 KB
- references/test-fn-for-spied-callbacks.md 2.8 KB
- references/test-import-from-storybook-test.md 2.1 KB
- references/test-portable-stories-for-rtl.md 3.2 KB
- references/test-use-canvas-from-play-arg.md 2.4 KB
- references/test-vitest-addon-for-ci.md 3.3 KB
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.
- 6d ago First seen · 156 lines · 242 tokens per session scan A 61706c61ab39
storybook is a skill published in the GitHub repository pproenca/dot-skills (205 stars, last pushed 24d ago), licensed MIT. It adds 242 tokens to every session and 3,716 once invoked, about $0.0012 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-09-03.
Other skills, from other repositories
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-dev-loop
Verify Next.js runtime behavior after editing app code. Use this skill to confirm a change actually works in a running app — not just that it compiles or type-checks. Combines /next/mcp (Next.js's view) with agent-browser (the browser's view). Requires a running next dev.
compiler-commit
Use when you want to verify compiler changes and commit with the correct convention. Runs tests, lint, and format, then commits with the [compiler] or [rust-compiler] prefix.
compiler-port
Port a compiler pass from TypeScript to Rust. Gathers context, plans the port, implements in a subagent with test-fix loop, then reviews.
compiler-verify
Use when you need to run all compiler checks (tests, lint, format) before committing. Detects whether TS or Rust code changed and runs the appropriate checks.
shipwright-pipeline
Autonomous app builder that converts plain-English descriptions into fully built, tested applications. Use when the user wants to build a new app, scaffold a project, generate a full-stack application, or create an app from a description. Trigger with "build me an app", "create a new app", "shipwright build"…