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/asgeirtj/system_prompts_leaks/non-storybooknpx skills add asgeirtj/system_prompts_leaks --skill non-storybookgit clone --depth 1 https://github.com/asgeirtj/system_prompts_leaksWhat 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 | $0.00000 | $0.14234 |
| Opus 5 | $0.00000 | $0.07117 |
| Sonnet 5 | $0.00000 | $0.02847 |
| 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 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- non-storybook — 98% identical, 238 lines differ
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.
- yesterday First seen · 290 lines · 0 tokens per session scan A 0155bf3c611b
non-storybook is a skill published in the GitHub repository asgeirtj/system_prompts_leaks (63,837 stars, last pushed 2d ago), licensed CC0-1.0. It costs nothing until one of its globs matches a file; then it loads 14,234 tokens. 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-30.
Other skills, from other repositories
gh-issues
Fetch GitHub issues, spawn sub-agents to implement fixes and open PRs, then monitor and address PR review comments. Usage: /gh-issues [owner/repo] [--label bug] [--limit 5] [--milestone v1.0] [--assignee @me] [--fork user/repo] [--watch] [--interval 5] [--reviews-only] [--cron] [--dry-run] [--model glm-5]…
codebase-classification
Classify codebases before modification to choose appropriate development approach.
canvas
Display HTML content on connected OpenClaw nodes (Mac app, iOS, Android).
peekaboo
Capture and automate macOS UI with the Peekaboo CLI.
gog
Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
himalaya
CLI to manage emails via IMAP/SMTP. Use himalaya to list, read, write, reply, forward, search, and organize emails from the terminal. Supports multiple accounts and message composition with MML (MIME Meta Language).