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 spinspire/pocketbase-sveltekit-starter --skill dockergit clone --depth 1 https://github.com/spinspire/pocketbase-sveltekit-starterWrote 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/spinspire/pocketbase-sveltekit-starter/docker)<a href="https://agentmods.dev/skills/spinspire/pocketbase-sveltekit-starter/docker"><img src="https://agentmods.dev/badge/skills/spinspire/pocketbase-sveltekit-starter/docker.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
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.00027 | $0.01160 |
| Opus 5 | $0.00014 | $0.00580 |
| Sonnet 5 | $0.00005 | $0.00232 |
| Haiku 4.5 | $0.00003 | $0.00116 |
Grade A, and why
docker 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 8d 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 — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Docker Compose conventions
Apply these conventions when creating or modifying docker-compose.yml.
Principles
-
.env(git-ignored) +.env.example(checked in, with doc comments).
All secrets and environment-specific values live in.env. The example file documents each variable. -
No root.
Every service that doesn't need root getsuser: "${UID:-1000}:${GID:-1000}".- Dockerfiles must make the working directory group-writable (
RUN chmod g+w .). - Postgres is exempt — its official image handles user switching.
- Dockerfiles must make the working directory group-writable (
-
No port forwarding in the base compose file.
ports:only appear in override files. The base file exposes nothing to the host. -
Override file (example only).
Writedocker-compose.override-example.ymlwith documented, commented-out options.
Users copy it todocker-compose.override.yml(git-ignored) for their local customisations.
Never writedocker-compose.override.ymlinto the project — only the example. -
Lightweight images.
Prefer-alpineor-slimvariants. -
Named project.
Setname:at the top so volumes and containers are predictable. Or use COMPOSE_PROJECT_NAME env var. -
Mandatory env vars.
Use${VAR:?required}so compose errors immediately when a required variable is missing. -
Short service names.
pg,bun,ml,py,sk(SvelteKit),pb(PocketBase), etc. If there's a "primary" app, their service should be namedapp. -
Restart policy.
restart: unless-stoppedfor long-lived services,on-failure:Nfor batch jobs. Never usealways(it reanimates after intentionaldocker compose stop). -
Read-only root.
read_only: trueon every service that doesn't need to write to its own filesystem. Mounttmpfsfor paths that must be writable (/tmp,/run). Combine withtmpfsfor the writable paths the app actually needs. -
Log rotation.
Every service getslogging.driver: json-filewithmax-size: 10mandmax-file: 3. Prevents disk fills.
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.
- 8d ago First seen · 132 lines · 27 tokens per session scan A 23382a083c7b
docker is a skill published in the GitHub repository spinspire/pocketbase-sveltekit-starter (508 stars, last pushed 16d ago), licensed MIT. It adds 27 tokens to every session and 1,160 once invoked, about $0.0001 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-30.
Other skills, from other repositories
verify
Build/launch/drive recipe for verifying apps/docs changes at runtime (demos, docs pages, llms.txt).
mobile-web-app
Add router-agnostic, native app-like page transitions to mobile web apps with SSGOI. Explore live drill, sheet, slide, and zoom demos at https://ssgoi.dev. Use when building or improving a mobile web app's routed page structure, layouts, or transitions, or when a project uses SSGOI or an @ssgoi package.
infra-conventions
Infrastructure and deployment conventions. Auto-injected into devops-aware agents - not user-invocable.
sveltekit
SvelteKit - Full-stack Svelte framework with file-based routing, SSR/SSG, form actions, and adapters for deployment.
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.