booboo-query

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

Instructions for querying a Booboo brain, a connected knowledge graph that stores facts, relationships, memories, and reports.

In plain words
What is it for?
Use it to search and read knowledge-graph nodes, inspect nearby information, follow paths between items, and write back memories or reports.
Why use it?
It gives agents a consistent way to orient themselves, find the right records, trace connections, and save durable findings.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to search and read knowledge-graph nodes, inspect nearby information, follow paths between items, and write back memories or reports.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jessymariau/booboo/booboo-query
Install

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.

Any agent
npx skills add jessymariau/booboo --skill booboo-query
Clone the repo
git clone --depth 1 https://github.com/jessymariau/booboo

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-query

README.md
[![agentmods](https://agentmods.dev/badge/skills/jessymariau/booboo/booboo-query/github.svg)](https://agentmods.dev/skills/jessymariau/booboo/booboo-query)
Your own site
<a href="https://agentmods.dev/skills/jessymariau/booboo/booboo-query"><img src="https://agentmods.dev/badge/skills/jessymariau/booboo/booboo-query/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-query

Your own site · 80×15
<a href="https://agentmods.dev/skills/jessymariau/booboo/booboo-query"><img src="https://agentmods.dev/badge/skills/jessymariau/booboo/booboo-query.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,006 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.00074 $0.01006
Opus 5 $0.00037 $0.00503
Sonnet 5 $0.00015 $0.00201
Haiku 4.5 $0.00007 $0.00101

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

Security

Grade A, and why

booboo-query 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 11d 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-query/SKILL.md · 96 lines

How it starts

The opening of the file, as written. The whole thing — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Query a brain

Read RULES.md first — rules 5 and 6 govern every write you make here.

Boot first. Every session.

booboo_boot('<agent-id>')

Returns identity, authority chain, inherited rules, bucket reach, skills and children. Call it before deciding anything, not after — the rules it returns are binding on the work you are about to do, and reading them afterwards is how an agent discovers it just violated one.

Needs the server started with --org. If booboo_boot is missing from the tool list, the org file was not passed.

The read path

Search before you fetch. booboo_node needs an exact id, and ids are rarely what a human said. booboo_search ranks exact > prefix > substring; take the id from the result and fetch with it.

booboo_search("payment webhook")   →  pick the id from the ranked hits
booboo_node("<that exact id>")     →  all fields + data

Neighbors versus path. They answer different questions:

  • booboo_neighbors(id, depth)what is around this? Use to understand a thing's context, find what feeds it, spot orphans. Depth 1 first; depth 3 on a dense graph returns more than you can reason about.
  • booboo_path(a, b)how do these two connect? Returns the shortest chain, or null if unreachable. Use to answer "does X actually depend on Y" — and treat a null as a real answer, not a failed call.

Counts before payloads. booboo_stats gives node and link counts by layer; booboo_count gives counts without pulling the data. Reach for these when sizing a query — pulling a whole layer to count it is how a session runs out of context.

booboo_org returns the full organigram when you need the whole fleet rather than one agent's slice.

The REST surface

Same graph, when MCP is not available:

/graph  /stats  /search  /nodes/:id  /neighbors/:id  /path/:a/:b

Default port 8787. booboo serve --snapshot my.booboo.json --port 8787.

Writing back

Two write tools, both live — they append to the journal beside the snapshot, are queryable the same session, and survive every rebuild. No rebuild needed.

Read the full file on GitHub · 96 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. 11d ago First seen · 96 lines · 74 tokens per session scan A 97a6d0c5cccf

Subscribe to this mod's changes

booboo-query is a skill published in the GitHub repository jessymariau/booboo (1 stars, last pushed 27d ago), licensed MIT. It adds 74 tokens to every session and 1,006 once invoked, about $0.0004 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

potpie-graph

Use when the task can read or write the project-memory graph through the potpie CLI: discover the contract with graph catalog, read named views with graph read, resolve entity identity with graph search-entities, create validated plans with graph propose, commit plans with graph commit --verify, inspect quality with…

potpie-ai/potpie · 94 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-debug-memory

Use while debugging or troubleshooting failures, flaky tests, incidents, production alerts, CI failures, local dev setup issues, repeated bugs, prior fixes, failed attempts, and verification history.

potpie-ai/potpie · 41 tokens

engraphis-memory

Give the agent durable, scoped, explainable memory across sessions and repositories through the Engraphis MCP tools. Use when you learn a convention, decision, bug cause/fix, or user preference worth keeping; when prior context would help before you answer or act (to avoid re-asking or re-deriving); when asked "why is…

Coding-Dev-Tools/engraphis · 134 tokens

mistakes

List past mistakes engram has learned in this project — failures, regressions, broken assumptions. Use before starting a non-trivial change to surface relevant prior failures, or when debugging to check if this issue has been seen before.

NickCirv/engram · 46 tokens

query

Query engram's local knowledge graph for structural context — function calls, imports, type relationships, mistake history, ADRs. Use when the user asks "how does X work in this project", "what calls Y", "where is Z used", or any structural question that doesn't need file content.

NickCirv/engram · 60 tokens