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/jessymariau/booboonpx agentmods add skills/jessymariau/booboo/booboo-deployWrote 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/jessymariau/booboo/booboo-deploy)<a href="https://agentmods.dev/skills/jessymariau/booboo/booboo-deploy"><img src="https://agentmods.dev/badge/skills/jessymariau/booboo/booboo-deploy/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/jessymariau/booboo/booboo-deploy"><img src="https://agentmods.dev/badge/skills/jessymariau/booboo/booboo-deploy.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.00094 | $0.01339 |
| Opus 5 | $0.00047 | $0.00669 |
| Sonnet 5 | $0.00019 | $0.00268 |
| Haiku 4.5 | $0.00009 | $0.00134 |
Grade A, and why
booboo-deploy 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.
How it starts
The opening of the file, as written. The whole thing — 123 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Deploy a brain, end to end
Read RULES.md in this pack first. The walls rule and the verify rule both bite
during deployment.
The path
npx create-booboo my-brain # scaffold: config + org + AGENTS.md + ONBOARDING.md
cd my-brain && npm install
npm run build # booboo.config.yaml → the snapshot
npm run serve # REST on :8787
npm run mcp # MCP over stdio
The scaffold ships a JSON starter with a commented Postgres upgrade path, so a brain exists before any database is involved. Prove the loop on the starter, then repoint it — debugging a config and a connection string at the same time is how deployments stall.
Shape the config
title: "My System"
root: { id: core, type: root, label: "MY SYSTEM" }
layers: # order is Z-order, first is back
- { name: agents, color: "#c9a04a", label: "AGENTS" }
- { name: memory, color: "#a78bd0", label: "MEMORY" }
- { name: knowledge, color: "#4ECDC4", label: "KNOWLEDGE" }
walls: [private, sealed] # filtered IN THE BUILDER, before anything exists
sources:
- adapter: postgres
url: ${DATABASE_URL}
nodes:
- { table: agents, layer: agents, id: slug, label: name, parent: core, weight: 0.6, icon: emoji }
- { table: observations, layer: memory, id: id, label: title, cluster: project, where: "kind <> 'noise'" }
- { table: kg_entities, layer: knowledge, id: id, label: name, weight_from: degree }
links:
- { table: edges, source: src, target: dst, type: rel }
- adapter: json
path: ./data/extra.booboo.json
output:
snapshot: ./build/booboo.json
${VAR} reads from the environment or a .env. Nothing secret belongs in this
file — it is committed, and a connection string with a password in it is a
credential in git history forever.
Layers are yours to choose. The three above are a sensible default, not a schema. Pick planes that match how the system actually stacks.
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 · 123 lines · 94 tokens per session scan A 72445c155296
booboo-deploy is a skill published in the GitHub repository jessymariau/booboo (1 stars, last pushed 28d ago), licensed MIT. It adds 94 tokens to every session and 1,339 once invoked, about $0.0005 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
bunny
Use when the user asks to integrate Bunny.net.
potpie-repo-baseline
Use when establishing, refreshing, or deeply understanding a repository's baseline memory in Potpie: purpose, application type, features, services/modules, environments, deploy shape, dependencies, API contracts, datastores, integrations, ownership, and explicit preferences. The harness reads authored and…
potpie-infra-architecture
Use for project infra and architecture context: environments, adapters, runtime configuration, deployments, service dependencies, datastores, API contracts, ownership, incidents, and dependency blast radius.
potpie-project-preferences
Use before writing, modifying, reviewing, refactoring, or testing code so repo/project preferences surface: error handling, file structure, frameworks, logging, dependency choices, testing, security, API style, and naming. Also use after code work when a reusable project preference should be recorded.
multi-tenant-architecture
Designs tenant isolation, hostname routing, custom-domain lifecycle, and plan limits on Cloudflare or Vercel. Use when asked to "isolate tenant data", "support custom domains", "build a white-label platform", or assess PSL registration. For general module structure use codebase-architecture; for SEO content use seo.
ring:migrating-to-lib-systemplane
Migrating Lerian Go services from .env/YAML operational knobs (log levels, feature flags, rate limits, timeouts) to the lib-systemplane hot-reloadable runtime config client, wiring the migration-only make systemplane-ddl pipeline (runtime DDL forbidden in v1.6.0+). Orchestrates an 11-gate cycle dispatching…