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/nimblebraininc/synapse/claude-mdgit clone --depth 1 https://github.com/NimbleBrainInc/synapseWhat 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 | $0.03046 | $0.03046 |
| Opus 5 | $0.01523 | $0.01523 |
| Sonnet 5 | $0.00609 | $0.00609 |
| Haiku 4.5 | $0.00305 | $0.00305 |
Grade C, and why
synapse CLAUDE.md scanned grade C with 1 finding 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 2d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf src/_iife-entry.ts src/_shims How it starts
The opening of the file, as written. The whole thing — 197 lines — stays where its author put it; the contents beside it link to each section on GitHub.
@nimblebrain/synapse
Agent-aware app SDK for the MCP ext-apps protocol (2026-01-26).
Verification
npm run ci # lint → typecheck → build → test
Run npm run ci before declaring any change complete. No exceptions.
Releasing
@nimblebrain/synapse publishes to npm via GitHub Actions trusted publishing on v* tag push. There is no static npm token; auth is OIDC (id-token: write) under the npm environment. The workflow is .github/workflows/publish.yml.
To cut a release:
- Bump
versioninpackage.jsonand add a CHANGELOG entry on the release branch. A### Breakingentry means the minor moves. Nothing enforces this: the workflow checks the tag matchespackage.jsonand that a## [<version>]heading exists, and neither tells a minor from a patch. Consumers pin caret on0.x, which does not cross a minor — so cutting a breaking change as a patch carries it to every pinned consumer silently, which is the opposite of what the CHANGELOG's migration note promises. - Merge the PR.
- Tag the merge commit on
mainand push the tag:git checkout main && git pull git tag v<version> -m "v<version>" git push origin v<version> - Watch the Publish to npm workflow run. It re-runs lint/typecheck/build/test, then verifies the tag string matches
package.json(catches a stale bump), then runsnpm publish --provenance --access public, then creates a matching GitHub Release with the body extracted from the## [<version>]section ofCHANGELOG.md.
The version-match check at workflow time is the load-bearing safety: a tag of v0.8.0 against package.json at 0.7.0 aborts before publishing instead of publishing the wrong contents under a misleading tag. The CHANGELOG-extraction step is the second tripwire — it fails the workflow if the version has no ## [<version>] heading, so a release can't ship without notes.
Releases are public and provenance-attested — published artifacts carry a signed link back to the workflow run that produced them. Don't run npm publish from a local machine; do it through tags so provenance is preserved. Don't create the GitHub Release by hand either; the workflow handles it (and skips cleanly if the Release already exists, so manual reruns are safe).
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.
- 2d ago First seen · 197 lines · 3,046 tokens per session scan C 432e04951d1f
synapse CLAUDE.md is an instructions file published in the GitHub repository NimbleBrainInc/synapse (2 stars, last pushed 1mo ago), licensed MIT. It adds 3,046 tokens to every session, about $0.0152 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
ironcurtain CLAUDE.md
Instructions for provos/ironcurtain, covering claude.md, general workflow, git & worktrees, git workflow and platform considerations.
ironcurtain copilot-instructions.md
Instructions for provos/ironcurtain, covering ironcurtain copilot review instructions, platform support, security invariants, ai sdk v6 api (breaking changes) and code conventions.
ironcurtain security-boundary.instructions.md
Instructions for provos/ironcurtain, covering security boundary review rules, mandatory checks and structural invariant order.
ironcurtain sandbox.instructions.md
Instructions for provos/ironcurtain, covering sandbox review rules and mandatory checks.
ironcurtain pipeline.instructions.md
Instructions for provos/ironcurtain, covering pipeline review rules and mandatory checks.
ironcurtain session.instructions.md
Instructions for provos/ironcurtain, covering session review rules and mandatory checks.