booboo-deploy

booboo-deploy is a skill for Claude Code, Codex from jessymariau/booboo. It costs 94 tokens per session (1,339 once invoked), scanned A, original, MIT.

A deployment workflow for Booboo, a system that builds a structured data snapshot and exposes it through an API, MCP server, 3D viewer, and panel.

In plain words
What is it for?
Use it to scaffold a Booboo project, configure its data source, build the snapshot, and run its REST API, MCP server, viewer, and panel.
Why use it?
It guides the setup from a starter data source through configuration, building, serving, and connecting the system to real Postgres or Supabase data.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md; mentions Claude Code; mentions AGENTS.md.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is path: ./data/extra.booboo.json.

Good fit Use it to scaffold a Booboo project, configure its data source, build the snapshot, and run its REST API, MCP server, viewer, and panel.

Compare 6 skills from other repositories ↓
Install

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.

Clone the repo
git clone --depth 1 https://github.com/jessymariau/booboo
agentmods
npx agentmods add skills/jessymariau/booboo/booboo-deploy

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for booboo-deploy

README.md
[![agentmods](https://agentmods.dev/badge/skills/jessymariau/booboo/booboo-deploy/github.svg)](https://agentmods.dev/skills/jessymariau/booboo/booboo-deploy)
Your own site
<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.

agentmods 80×15 button for booboo-deploy

Your own site · 80×15
<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>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,339 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 12d ago against content hash 72445c155296, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

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.

skills/booboo-deploy/SKILL.md · 123 lines

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.

Read the full file on GitHub · 123 lines

Changes

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.

  1. 12d ago First seen · 123 lines · 94 tokens per session scan A 72445c155296

Subscribe to this mod's changes

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.

Related

Other skills, from other repositories

bunny

Use when the user asks to integrate Bunny.net.

tamnguyendinh/Anvien · 13 tokens

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-ai/potpie · 75 tokens

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-ai/potpie · 43 tokens

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.

potpie-ai/potpie · 63 tokens

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.

mblode/agent-skills · 72 tokens

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…

LerianStudio/ring · 113 tokens