provisioning-wizard

provisioning-wizard is a skill for Claude Code from martineserios/thebrana. It costs 14 tokens per session (927 once invoked), scanned A, original, MIT.

A Bash-based wizard for creating human-only setup procedures from a structured process.

In plain words
What is it for?
It is for scoping a provisioning task, mapping its stages, generating an executable scaffold, and verifying the finished handoff.
Why use it?
It gives setup work a repeatable sequence and requires the relevant project instructions to be read before the procedure is created.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the brana plugin — 56 skills, 4 commands, 14 agents, 13 hooks shipped together

Good fit It is for scoping a provisioning task, mapping its stages, generating an executable scaffold, and verifying the finished handoff.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/martineserios/thebrana/provisioning-wizard
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 martineserios/thebrana --skill provisioning-wizard
Clone the repo
git clone --depth 1 https://github.com/martineserios/thebrana

Made for: Claude Code.

Or install brana, the plugin that ships this one along with the rest of its 56 skills, 4 commands, 14 agents, 13 hooks.

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 provisioning-wizard

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/martineserios/thebrana/provisioning-wizard"><img src="https://agentmods.dev/badge/skills/martineserios/thebrana/provisioning-wizard.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 927 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.00014 $0.00927
Opus 5 $0.00007 $0.00464
Sonnet 5 $0.00003 $0.00185
Haiku 4.5 $0.00001 $0.00093

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

Security

Grade A, and why

provisioning-wizard 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 6d 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.

system/skills/provisioning-wizard/SKILL.md · 28 lines

How it starts

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

Provisioning Wizard (adapter)

ADR-084 vendor+wrap, expanded per ADR-084 §7a on t-2834's pilot (t-2836). Thin adapter, not a copy — the discipline lives in the vendored organ, read fresh every invocation:

  1. Read the vendored skill: Skill(skill: "wizard").agents/skills/wizard/SKILL.md, verbatim upstream, pinned v1.2.3, tracked in skills-lock.json. Follow its four-step process (scope → map each stage's journey → author → verify and hand off) as written.
  2. While following it, remap:
    • "Read the repo first" (upstream §1) → for a brana provisioning flow this usually means a skill's own SKILL.md "Prerequisites" section (e.g. system/skills/meta-templates/SKILL.md's WhatsApp BSP onboarding), a client's docs/ under clients/<slug>/, or .github/workflows/* secrets.*/vars.* references — read whichever the caller names, don't invent a scope.
    • The example Stripe procedure in template.sh → always replaced; never ship the example stage.
    • "scratch or scripts/ path" (upstream §1's ephemeral-by-default framing) → build-composable step: call system/scripts/wizard-scaffold.sh to get the scaffolded, executable script instead of hand-copying the template. With no --out, it writes to a fresh /tmp/wizard-<rand>.sh (per system/rules/cwd-discipline.md's "/tmp/ is the only handoff zone" convention) — ephemeral by default. Pass --out <path-under-scripts/> only when the human has explicitly said they want a repeatable, in-repo setup path; pass --title "<Setup name>" to seed the banner.
  3. Author stages by editing the scaffolded file directly (it's a plain, already-executable bash file) — replace the example stage block between the STAGES marker and finish with one stage per step, using the vendored library helpers (stage, say/step, open_url, ask/ask_secret, write_env, set_secret/set_var, pause/confirm) exactly as the vendored SKILL.md §3 describes. Never hand-edit anything above the STAGES marker — that's the pinned library; changes belong upstream.
  4. Verify before hand-off (upstream §4, non-negotiable): bash -n <script> — and shellcheck <script> if it's installed — before telling the human it's ready. Never execute the generated script yourself — by design it blocks on human input and opens a browser; trace it statically instead (walk the stages, confirm every captured value from step 1 lands where step 1 said, and every set_secret/set_var name matches something the target actually consumes).
  5. Hand off: tell the human the script's path and how to run it (bash <path> or ./<path> after the chmod +x the scaffold already applied). If it was scaffolded to a scratch path and the human now wants it repeatable, move/commit it under scripts/ and link it from the relevant README or client doc — don't leave that as an unstated follow-up.

Read the full file on GitHub · 28 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 6d ago First seen · 28 lines · 14 tokens per session scan A 1cd43bc56701

Subscribe to this mod's changes

provisioning-wizard is a skill published in the GitHub repository martineserios/thebrana (3 stars, last pushed 2d ago), licensed MIT. It adds 14 tokens to every session and 927 once invoked, about $0.0001 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-09-03.