nimbus-mcp: Command for Claude Code

.claude/commands/nimbus-mcp-boundaries.md

nimbus-mcp-boundaries is a command for Claude Code from nimbus-agent/nimbus-mcp. It costs 66 tokens per session (2,293 once invoked), scanned A, original, MIT.

Project guidance for the nimbus-mcp launcher and the Nimbus monorepo, a repository containing multiple related packages. It explains binary lookup, installer contracts, dependencies, and which tests provide real coverage.

In plain words
What is it for?
Use it when changing executable resolution, installer contracts, dependencies, release code, publishing, or related tests.
Why use it?
It shows which safeguards are trustworthy and where changes must be checked across the two repositories.

Command for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions CLAUDE.md.

This is nimbus-agent/nimbus-mcp's own configuration. It tells Claude Code how to work on nimbus-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything nimbus-mcp configures →

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/linuxbrew/.linuxbrew/bin.

Reuse

Borrowing it

Nothing to install: this file belongs to nimbus-agent/nimbus-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/nimbus-agent/nimbus-mcp/main/.claude/commands/nimbus-mcp-boundaries.md
Clone the repo
git clone --depth 1 https://github.com/nimbus-agent/nimbus-mcp

Made for: Claude Code.

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 nimbus-mcp-boundaries

README.md
[![agentmods](https://agentmods.dev/badge/commands/nimbus-agent/nimbus-mcp/nimbus-mcp-boundaries/github.svg)](https://agentmods.dev/commands/nimbus-agent/nimbus-mcp/nimbus-mcp-boundaries)
Your own site
<a href="https://agentmods.dev/commands/nimbus-agent/nimbus-mcp/nimbus-mcp-boundaries"><img src="https://agentmods.dev/badge/commands/nimbus-agent/nimbus-mcp/nimbus-mcp-boundaries/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 nimbus-mcp-boundaries

Your own site · 80×15
<a href="https://agentmods.dev/commands/nimbus-agent/nimbus-mcp/nimbus-mcp-boundaries"><img src="https://agentmods.dev/badge/commands/nimbus-agent/nimbus-mcp/nimbus-mcp-boundaries.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 66 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,293 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.00066 $0.02293
Opus 5 $0.00033 $0.01146
Sonnet 5 $0.00013 $0.00459
Haiku 4.5 $0.00007 $0.00229

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

Security

Grade A, and why

nimbus-mcp-boundaries 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 10d 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.

.claude/commands/nimbus-mcp-boundaries.md · 144 lines

How it starts

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

nimbus-mcp — boundaries, guards, and what the gates miss

CLAUDE.md and CONTRIBUTING.md already carry the rules: zero runtime dependencies, MIT and never importing from the AGPL monorepo, resolution order NIMBUS_BINPATH → known install dirs. Those two files win on doctrine. This one is the part that is expensive to rediscover: which guard is load-bearing, which is theatre, and what a change here has to touch in the other repo.

1. The installer contract is two-sided, and this side is the weak half

src/installer-contract.ts exports two literals vendored from the monorepo's scripts/install/lib/paths.ts (resolveInstallDir). installer-contract.test.ts asserts CANDIDATE_DIRS' first entry per platform is built from them.

That test cannot fail when the installer changes. It compares this repo against its own copy. If someone changes resolveInstallDir in the monorepo tomorrow, everything here stays green and every PATH-less MCP client starts reporting "Could not find the Nimbus CLI" against a working install.

The half that actually catches it is scripts/structure-audit/check-launcher-installer-contract.ts in the monorepo, run by:

  • install-smoke.yml — PR-time, triggered on scripts/install/**. Catches their change.
  • org-drift-sweep.yml — scheduled, clones this repo. The only thing that catches a change made here.

Practical consequences:

  • That script parses the constant names with a regex, and the literal forms (String.raw backtick for win32, double-quoted for posix). Renaming a constant or switching quote style breaks the parser — and a broken parser reports a mismatch, which reads like real drift. Change both sides in one sitting.
  • Editing a value here without a matching monorepo change will not fail this repo's CI. It fails the sweep, later, in another repository.

2. src/index.ts cannot be unit-tested, and that is deliberate

It is a shebang bin entry with top-level side effects: it resolves, spawns a child, and wires exit. Importing it from a test executes it — spawning a process and potentially calling process.exit. That is why it carries sonar.coverage.exclusions and why the monorepo exempted the same file while it lived there.

Read the full file on GitHub · 144 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. 10d ago First seen · 144 lines · 66 tokens per session scan A f2720d9f857c

Subscribe to this mod's changes

nimbus-mcp-boundaries is a command published in the GitHub repository nimbus-agent/nimbus-mcp (0 stars, last pushed yesterday), licensed MIT. It adds 66 tokens to every session and 2,293 once invoked, about $0.0003 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.