brancher-spinup

brancher-spinup is a skill for Claude Code from ProxiBlue/pb-hypernode-mcp. It costs 54 tokens per session (3,940 once invoked), scanned A, original, Apache-2.0.

A workflow for creating a temporary Hypernode Brancher preview copied from production. It removes personal data and disables live payment and API connections before providing access.

In plain words
What is it for?
Use it to create a sanitized preview environment for client review before a change is released.
Why use it?
It lets teams preview changes against a realistic copy without exposing production information or accidentally contacting real services.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the pb-hypernode-mcp plugin — 4 skills, 1 MCP server shipped together

Good fit Use it to create a sanitized preview environment for client review before a change is released.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/proxiblue/pb-hypernode-mcp/brancher-spinup
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 ProxiBlue/pb-hypernode-mcp --skill brancher-spinup
Clone the repo
git clone --depth 1 https://github.com/ProxiBlue/pb-hypernode-mcp

Made for: Claude Code.

Or install pb-hypernode-mcp, the plugin that ships this one along with the rest of its 4 skills, 1 MCP server.

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 brancher-spinup

README.md
[![agentmods](https://agentmods.dev/badge/skills/proxiblue/pb-hypernode-mcp/brancher-spinup.svg)](https://agentmods.dev/skills/proxiblue/pb-hypernode-mcp/brancher-spinup)
Your own site
<a href="https://agentmods.dev/skills/proxiblue/pb-hypernode-mcp/brancher-spinup"><img src="https://agentmods.dev/badge/skills/proxiblue/pb-hypernode-mcp/brancher-spinup.svg" alt="Measured on agentmods" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,940 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.00054 $0.03940
Opus 5 $0.00027 $0.01970
Sonnet 5 $0.00011 $0.00788
Haiku 4.5 $0.00005 $0.00394

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

Security

Grade A, and why

brancher-spinup 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 7d 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/brancher-spinup/SKILL.md · 281 lines

How it starts

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

Brancher Spinup

Creates a Brancher node, waits for it to become SSH-reachable, sanitizes it (anonymize PII, reset admin credentials, sandbox payment gateways/API keys), and only then reports it ready with its access URL. All of this happens in a single MCP tool callbrancher_create — because the underlying create -> wait -> sanitize -> report-ready sequence is non-bypassable by design: brancher_create IS the gated flow, not a raw/unsanitized creation call. It is structurally impossible to get an access URL back for a node that has not finished sanitizing, and there is no other tool that creates a node — brancher_create is the sole node-creation entry point this plugin exposes.

Flow

  1. Identify which Hypernode/app. Hypernode API tokens are scoped per app, not account-wide — if the user's request doesn't say which app to target, call brancher_apps first and show the configured list before calling any other tool. Never guess an appname. If exactly one app is configured, it's fine to proceed with it — just tell the user which one you're using rather than asking a pointless confirmation question.

  2. Ask for a label if the user hasn't given one. brancher_create requires at least one label (e.g. a ticket number like ticket-123 or a short description) — it is not optional, and the call will fail without one. Don't invent a label on the user's behalf; if they haven't mentioned a ticket/reason, ask.

  3. Call brancher_create with appname, labels, and optionally clear_services (defaults to clearing cron if omitted). This one call covers the entire create -> wait -> sanitize -> ready sequence — do not poll or call other tools in between.

    • This call can take up to ~20 minutes (Hypernode's own Control Panel states node setup can take up to 15 minutes before the node even becomes SSH-reachable, before sanitization runs on top of that). Because of this, run brancher_create via a background Agent/Task call rather than blocking the current session inline — tell the user you're spinning it up in the background, then report back with the result (ready, or a clear failure) when the background agent completes. Do not poll for progress in the foreground; the background agent's single completion notification is the signal.
    • Run the background agent on the cheapest available model (e.g. Haiku), not the session's default model. This task is a single deterministic tool call plus reporting the structured result back verbatim — no real reasoning, judgment, or code-writing happens in that agent, so there's no reason to spend a larger model's tokens on it just because it runs a long time. If a background-agent invocation doesn't expose a model override, pick the smallest/cheapest agent type or model setting available rather than defaulting silently to whatever the session is already running.
    • If the calling session ends before the background agent completes, do not blindly retry brancher_create next session. Check brancher_list(appname) first — a real node may already exist and still be provisioning (or already sanitized-and-ready, if you're very unlucky with timing) from the interrupted attempt. There is no way to "resume" just the wait+sanitize step on an existing node (by design — brancher_create is the only entry point so sanitization can never be skipped), so if a stale node is found, delete it first (brancher_delete, confirming) rather than leaving it to accrue cost indefinitely, then start a fresh brancher_create call.
    • If the app has no configured token (HYPERNODE_API_TOKENS), or is not on a Falcons-eligible plan, or no label was provided, the call fails immediately before anything is created. Surface that error message to the user verbatim — it already explains which guardrail was tripped.

Read the full file on GitHub · 281 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. 7d ago First seen · 281 lines · 54 tokens per session scan A afe21b3494c7

Subscribe to this mod's changes

brancher-spinup is a skill published in the GitHub repository ProxiBlue/pb-hypernode-mcp (0 stars, last pushed 10d ago), licensed Apache-2.0. It adds 54 tokens to every session and 3,940 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.

Related

Other skills, from other repositories

gke-compute-classes

Configures, optimizes, and troubleshoots GKE ComputeClasses. Use when configuring Spot VMs with on-demand fallback, targeting specific accelerators (GPUs/TPUs) or machine families, restricting ComputeClass access, or debugging pending pods related to node pool auto-creation. Do not use for cluster-level Node Auto…

google/skills · 83 tokens

gke-reliability

Improves GKE workload reliability, using PDBs, health probes, and topology spread constraints. Use when configuring GKE workload reliability, setting up PDBs, or configuring GKE health probes (liveness, readiness, startup). Don't use for disaster recovery setup or full cluster backups (use gke-backup-dr instead).

google/skills · 73 tokens

gke-workload-security

Audits, configures, and hardens workload-level security controls for Google Kubernetes Engine (GKE) applications and namespaces. Covers running cluster security audits (auditcluster.sh), configuring Workload Identity Federation (impersonation, KSA/GSA binding, and pod setup), enforcing Network Policies (default-deny…

google/skills · 181 tokens

nemo-automodel-launcher-config

Configure NeMo AutoModel job launches for interactive runs, Slurm clusters, and SkyPilot cloud execution.

NVIDIA/skills · 30 tokens

azure-mgmt-botservice-dotnet

Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".

microsoft/skills · 78 tokens

cloud-architect

Designs cloud architectures, creates migration plans, generates cost optimization recommendations, and produces disaster recovery strategies across AWS, Azure, and GCP. Use when designing cloud architectures, planning migrations, or optimizing multi-cloud deployments. Invoke for Well-Architected Framework, cost…

Jeffallan/claude-skills · 71 tokens