Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/imMamdouhaboammar/get-fablenpx agentmods add skills/immamdouhaboammar/get-fable/non-storybookWrote 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/immamdouhaboammar/get-fable/non-storybook)<a href="https://agentmods.dev/skills/immamdouhaboammar/get-fable/non-storybook"><img src="https://agentmods.dev/badge/skills/immamdouhaboammar/get-fable/non-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/immamdouhaboammar/get-fable/non-storybook"><img src="https://agentmods.dev/badge/skills/immamdouhaboammar/get-fable/non-storybook.svg" alt="Reviewed on agentmods" width="80" 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.00000 | $0.14226 |
| Opus 5 | $0.00000 | $0.07113 |
| Sonnet 5 | $0.00000 | $0.02845 |
| Haiku 4.5 | $0.00000 | $0.01423 |
Grade A, and why
non-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 12d 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.
This is a copy
98% identical to non-storybook — 238 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
How it starts
The opening of the file, as written. The whole thing — 290 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Package source shape
No Storybook — the component list comes from the package's shipped .d.ts exports, and there is no reference render to verify against. Preview quality therefore comes from two layers: the converter ships every component fully functional (bundle + .d.ts + .prompt.md) with an honest floor card, and rich previews are authored — by you, from the repo's own usage examples — for the components the user scopes in (§4). Authored previews are graded on an absolute rubric (§4.3) and reviewed by the user (§4.4); the floor card is never a failure, just an unauthored component.
2. Explore, then write config (continued)
- The converter needs the built
dist/entry + its.d.tstree. Check whether the entry (frompackage.jsonmodule/main/exports['.']) already exists — install may have built it viaprepare. If missing:- Run
<pm> run build. Nobuildscript → tryprepare/prepack. In a monorepo, build the package and its workspace dependencies from the repo root:turbo build --filter=<pkg>orpnpm -F "<pkg>..." build(the trailing...is required — bare-F <pkg>skips dependencies and you'll seeCannot find module '@scope/tokens'). Some build scripts fork a watcher and exit 0 early — after the command returns,lsthe expected output (dist/, build/esm/, or whateverpackage.jsonmodule/mainpoints at) and confirm it's populated before continuing. If it's empty, check for a--watchflag in the script and use the one-shot variant, or poll the output dir. - Still missing →
AskUserQuestion("What command builds this package?", options = anyscripts.*containingtsc|tsup|rollup|vite build|esbuild|swc, plus freeform). Record the answer asbuildCmdin the config. - User says there's no build → the converter will synthesize an entry from
src/(last resort —.d.tscontracts will be weaker; recommend adding a build).
- Run
- Check what's already in the project.
DesignSync(list_files)on the target (the base skill §1 already picked the upload path: pinned-at-run-start → atomic; otherwise empty → incremental, non-empty → atomic). If it has files, fetch the small verification anchor:DesignSync(get_file, path: "_ds_sync.json")and save it locally (.design-sync/.cache/remote-sync.json) — never download_ds_bundle.jsfor this. The driver run (the "Re-syncs are one command" block,--remotepointing at the saved anchor) diffs it into.sync-diff.jsonwith TWO partitions answering different questions. Verification (unchanged/changed/added): which components need capture + grading —unchangedwere verified at the last upload and skip §4 entirely. Upload (upload.components/upload.deletePaths/upload.bundle/upload.styling): which files the project is missing — sourceHashes-based, so.d.ts/.prompt.md-only edits, regroups (old paths land indeletePaths), and bundle-only changes still ship even when no render changed. Never scope uploads by the verification partition. No sidecar in the project (never synced, or shape change) → no anchor → full first-sync scope; iflist_filesshowed the project NON-empty, deletes can't be derived — review its file list once for files this build doesn't produce; those reviewed paths go into the upload plan'sdeletesat §5. - Confirm the plan AND the preview scope with the user before building.
AskUserQuestionwith: the component list you found (or a count + a few names if it's long), which files the tokens/CSS are coming from, and which build command you'll run. The build can take minutes and burn tokens — aligning now avoids re-running because it was pointed at the wrong package or missed half the components.- Preview scope (this shape's cost slider — all N components import fully functional either way; this only decides which get authored preview cards): (a) author rich previews for the core components — the user picks them, or you propose ~20–40 from docs prominence; (b) author everything (significantly longer — state the estimate from N × a few minutes each); (c) floor cards everywhere for now (fastest; previews can be authored incrementally on any later re-sync — authored files and grades carry forward).
- If the project already has components from a prior sync (step 4), also offer: full re-verify + re-upload (
--force-equivalent) or changed-components-only (the verdict's worklist; default). The precise partition exists only after the driver runs — state it then ("N verified-by-upload, M to verify: [names]") before starting §4 work, and check in with the user if it's surprisingly large.
- Write
.design-sync/config.jsonand commit it — re-sync reuses it so output is reproducible. OnlypkgandglobalNameare required. If the file already exists, read it first and preservedtsPropsFor,libOverrides, andoverrides— only add to those fields, never replace them. They accumulate fixes from prior verify-loop iterations. Also Read.design-sync/NOTES.mdbefore anything else — it holds repo-specific gotchas a prior sync recorded.
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.
- 12d ago First seen · 290 lines · 0 tokens per session scan A 25d65f7889bb
non-storybook is a skill published in the GitHub repository imMamdouhaboammar/get-fable (4 stars, last pushed today), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 14,226 tokens. A static security scan graded it A with 0 findings. It is 98% identical to non-storybook, differing in 238 lines, and is treated as a copy.
Other skills, from other repositories
design-system
DESIGN.md integration for Forge — ensures visual consistency across all UI tasks through standardized design specifications.
html-artifacts
Author the HTML for a plan artifact, dashboard iframe, or Slack attachment — structure, design plan, available runtime, theming, and craft. Read this before writing HTML for saveplan, outputiframe, or slackattachhtml.
widgets
Render rich HTML inline via tags with theme-aware styling. Load when emitting an mcwidget so the iframe inherits the dashboard theme instead of clashing with light / dark / custom palettes.
web-verify
Look at your OWN front-end change before claiming it works -- navigate the loopback URL of a dev server or pod you started, screenshot the surface you changed, read the image to judge it, and embed it in chat. Three capture backends: playwright-cli (the session the dashboard Browser panel shows), the agent-browser CLI…
threejs-interaction
Three.js interaction - raycasting, controls, mouse/touch input, object selection. Use when handling user input, implementing click detection, adding camera controls, or creating interactive 3D experiences.
gsap-core
Official GSAP skill for the core API — gsap.to(), from(), fromTo(), easing, duration, stagger, defaults, gsap.matchMedia() (responsive, prefers-reduced-motion). Use when the user asks for a JavaScript animation library, animation in React/Vue/vanilla, GSAP tweens, easing, basic animation, responsive or reduced-motion…