init

init is a command for coding agents from AleksandarBisevac/claude-plugins. It costs 92 tokens per session (6,152 once invoked), scanned A, original, MIT.

A command that creates a structured plan for auditing a codebase. It asks about the audit's goals, has several read-only reviewers inspect the code in parallel, and proposes phases and tasks for approval.

In plain words
What is it for?
Use it to start an audit of an unfamiliar or complex repository. It helps define the scope, collect findings, and prepare an approved manifest—a file listing the audit phases and tasks.
Why use it?
A large code review can otherwise become an unstructured list of findings with no agreed order of work. This command turns the review into an actionable plan without writing changes before approval.

Command

Installs and runs on its own, but its text points at files inside its plugin — anything it tells you to read at a ${CLAUDE_PLUGIN_ROOT} path is only there once the plugin is installed. Installing the plugin gets both.

Part of the audit plugin — 2 skills, 20 commands, 4 agents, 4 hooks shipped together

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.

agentmods
npx agentmods add commands/aleksandarbisevac/claude-plugins/init
Clone the repo
git clone --depth 1 https://github.com/AleksandarBisevac/claude-plugins

Or install audit, the plugin that ships this one along with the rest of its 2 skills, 20 commands, 4 agents, 4 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 init

README.md
[![agentmods](https://agentmods.dev/badge/commands/aleksandarbisevac/claude-plugins/init.svg)](https://agentmods.dev/commands/aleksandarbisevac/claude-plugins/init)
Your own site
<a href="https://agentmods.dev/commands/aleksandarbisevac/claude-plugins/init"><img src="https://agentmods.dev/badge/commands/aleksandarbisevac/claude-plugins/init.svg" alt="Measured on agentmods" height="20"></a>
Per session 92 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 6,152 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00092 $0.06152
Opus 5 $0.00046 $0.03076
Sonnet 5 $0.00018 $0.01230
Haiku 4.5 $0.00009 $0.00615

Measured 4d ago against content hash 8a428ecea6c1, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

init 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 4d 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.

plugins/audit/commands/init.md · 406 lines

How it starts

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

/audit:init — generate the audit manifest

Produces the manifest that the /audit:* execution commands run. Generation is multi-agent: parallel read-only explorers audit the codebase, the orchestrator (you) synthesizes their findings into phases/tasks. $ARGUMENTS (free text) seeds the interview answers.

0. Conventions

Read ${CLAUDE_PLUGIN_ROOT}/reference/manifest-conventions.md FIRST. Resolve manifestPath from .claude/audit.config.json (default docs/audit/audit-plan.json).

1. Preflight

If a file already exists at manifestPath, first print any parked proposals it carries (proposals[] entries with status: "proposed"): N parked proposal(s) — /audit:propose materialize <id>|--all — the user may be re-running init when what they actually want is to materialize what the last run parked. Then ask (AskUserQuestion):

  • Abort (default) — keep the existing manifest; suggest /audit:status.
  • Regenerate — back it up to <manifestPath>.bak-<UTC timestamp> first (the backup includes any proposals).
  • Append phases — keep existing phases; new phases continue the id sequence, counting BOTH live phases and any proposals[].payload reserved phase ids (see manifest-conventions.md → ID allocation). New proposal ids continue the PROP-<n> sequence the same way.

On Regenerate or Append, take the concurrency lock (see manifest-conventions.md → Concurrency lock) BEFORE touching the file: refuse while another session holds the index lock, so a generation never clobbers an in-flight run, and hold it through write + validate (released in step 8).

2. Interview (BEFORE any exploration)

Merge $ARGUMENTS with answers to (ask only what $ARGUMENTS doesn't cover):

  1. Dimensions (multi-select, and ALL SIX are offered): security · correctness · test coverage · performance · architecture · DX/build health.

    Ask them as TWO questions inside ONE AskUserQuestion call — that tool takes at most four options per question, and six do not fit. This is not cosmetic. Asked as one question the last two are cut, and the only route left to them is typing their exact name into the automatic "Other" field, so a reader who has never opened this file cannot know they exist. That is the silent cap this command forbids for areas further down — "a silent cap would read as 'that is all of them'" — applied to its own list first.

  2. Scope: directories to include/exclude (default: whole repo minus vendored/generated code).

  3. Development branch (default main) → meta.developmentBranch.

  4. Known pain pointsfree text. Never a list you synthesize.

Read the full file on GitHub · 406 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. 4d ago First seen · 406 lines · 92 tokens per session scan A 8a428ecea6c1

Subscribe to this mod's changes

init is a command published in the GitHub repository AleksandarBisevac/claude-plugins (4 stars, last pushed 3d ago), licensed MIT. It adds 92 tokens to every session and 6,152 once invoked, about $0.0005 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.