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 instructions/vmelooo/not-goldfish/claude-mdgit clone --depth 1 https://github.com/vmelooo/not-goldfishWrote 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/instructions/vmelooo/not-goldfish/claude-md)<a href="https://agentmods.dev/instructions/vmelooo/not-goldfish/claude-md"><img src="https://agentmods.dev/badge/instructions/vmelooo/not-goldfish/claude-md.svg" alt="Measured on agentmods" 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.00812 | $0.00812 |
| Opus 5 | $0.00406 | $0.00406 |
| Sonnet 5 | $0.00162 | $0.00162 |
| Haiku 4.5 | $0.00081 | $0.00081 |
Grade A, and why
not-goldfish CLAUDE.md 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 5d 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 — 51 lines — stays where its author put it; the contents beside it link to each section on GitHub.
not-goldfish
Memória universal, cache e higiene de contexto para harnesses de IA (Claude Code, Kimi Code, Gemini CLI, Codex). SQLite (WAL + FTS5) é a fonte de verdade; tudo mais (busca híbrida, grafo de sabedoria, UI web) é derivado dela.
Crates
| Crate | O que é |
|---|---|
ng-core |
Store SQLite (WAL, FTS5), tags léxicas, embeddings (HashEmbedder + busca híbrida), grafo de sabedoria, paths, timeutil. |
ng-hook |
Binário fino chamado pelos hooks do harness (<5ms), injeção proativa de memória, gate de higiene PreCompact. |
ngd |
Daemon: writer único via socket Unix, worker de embedding/grafo em background, UI web (axum, thread própria). |
ng-sessions |
Parsers tolerantes a versão dos transcripts de cada harness + rewrite seguro (backup + rename atômico). |
ng-adapters |
Integração multi-harness pura/testável: instaladores de hooks, registro de MCP, sync de personas, dispatch, watcher de transcripts (Codex). |
ng-cli |
CLI ng (install, search, status, daemon, ui, doctor, mcp, sync, dispatch, wisdom, memory, gain, sync-context). |
Detalhes de uso, variáveis de ambiente e arquitetura completa: README.md.
Comandos
cargo build --release # build de todo o workspace
cargo test --workspace --release # todos os testes (rode -p <crate> para um só)
cargo fmt --all --check # formatação (CI falha se não passar)
cargo clippy --workspace --all-targets -- -D warnings # lints (CI trata warning como erro)
./target/release/ng doctor # diagnóstico de ambiente instalado
SQLite é bundled (feature do rusqlite no Cargo.toml raiz) — compilado a partir de fontes
vendored, sem apt install libsqlite3-dev nem nenhuma dependência de sistema.
Invariantes do projeto
- Captura nunca quebra a sessão do harness.
ng-hooksempre sai com código 0, mesmo em falha de captura — perder uma memória é aceitável, quebrar o fluxo do usuário não é. - Nada capturado é deletado. Eventos são o log de fonte de verdade; higiene/eviction só
substitui conteúdo por um stub recuperável (
[ng-evicted: ...]) ou remove do transcript ativo do harness — nunca do banco not-goldfish nem do backup em disco. - Hot path do hook tem orçamento de <5ms.
ng-hooké o binário mais fino possível: parse do payload, tags léxicas, entrega ao daemon (ou fallback síncrono se o daemon estiver fora). Qualquer trabalho pesado (embeddings, grafo) roda em background emngd, nunca no hook. - A UI web liga só em
127.0.0.1, nunca0.0.0.0. Transcripts contêm prompts, saídas de ferramentas e às vezes segredos — não é uma superfície para expor na rede.
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.
- 5d ago First seen · 51 lines · 812 tokens per session scan A aca339530bae
not-goldfish CLAUDE.md is an instructions file published in the GitHub repository vmelooo/not-goldfish (1 stars, last pushed 1mo ago), licensed MIT. It adds 812 tokens to every session, about $0.0041 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 instructions, from other repositories
Tianshu-harness CLAUDE.md
Claude Code instructions for huiliyi37/Tianshu-harness, covering 天枢 (tianshu) / rivet, build & test, architecture, conventions and known constraints.
open-skill-sunset AGENTS.md
AGENTS.md instructions for ooocooc/open-skill-sunset, a project described as: Local, read-only audit for stale AGENTS.md, CLAUDE.md, and generic SKILL.md instructions.
codex-image-context-runtime AGENTS.md
Instructions for shixinnt/codex-image-context-runtime, covering agents.md, public boundary, runtime contract and changes.
navegador CLAUDE.md
Instructions for ConflictHQ/navegador, covering navegador — claude context, what it is, stack, package layout and falkordb connection.
contextweaver routing.instructions.md
Instructions for dgenio/contextweaver, covering routing engine — agent instructions, choicegraph validation invariants (graph.py), treebuilder grouping strategies (tree.py), router beam-search constraints (router.py) and catalog invariants (catalog.py).
ryzome-mcp-plugins CLAUDE.md
Instructions for 0xPlaygrounds/ryzome-mcp-plugins, covering agents.md, what this is, commands, per-package and architecture.