besimple-tiny-broccoli

besimple-tiny-broccoli is a skill for Claude Code, Codex from besimple-oss/broccoli. It costs 30 tokens per session (1,271 once invoked), scanned A, original, MIT.

A workflow for small, clearly defined code changes: implement them, run the repository's checks, make one commit, and compare the result for duplicate work. A repository is the project's shared codebase.

In plain words
What is it for?
Use it for focused tasks in a clean Git repository when you can work directly without a design or planning phase.
Why use it?
It provides a short repeatable path for completing a small change while checking that the code works and the final diff does not repeat existing logic.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: positional $N argument; mentions Codex.

Good fit Use it for focused tasks in a clean Git repository when you can work directly without a design or planning phase.

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

Made for: Claude Code, Codex.

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 besimple-tiny-broccoli

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/besimple-oss/broccoli/besimple-tiny-broccoli"><img src="https://agentmods.dev/badge/skills/besimple-oss/broccoli/besimple-tiny-broccoli.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,271 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.00030 $0.01271
Opus 5 $0.00015 $0.00635
Sonnet 5 $0.00006 $0.00254
Haiku 4.5 $0.00003 $0.00127

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

Security

Grade A, and why

besimple-tiny-broccoli 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 9d 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.

prompt-templates/skills/besimple-tiny-broccoli/SKILL.md · 130 lines

How it starts

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

Tiny Broccoli: Implement → Check → Commit → Dedup

Use this when the user request is already clear and you can safely implement directly (no plan docs), but you still want:

  1. repo checks to be green, and
  2. a dedupe pass over the resulting diff.

Not for

  • Big/ambiguous work that needs research, design decisions, or a multi-phase plan.
  • “Refactor the whole repo” style requests.

Preconditions (hard stop if missing)

  • Confirm you are in the intended repo: git rev-parse --show-toplevel
  • Start from a clean working tree: git status --porcelain is empty
  • Ensure git can create commits (user.name / user.email configured)
  • Ensure required CLIs exist (dedup requires distinct vendors): codex, claude

Required subskills

  • dedup

Workflow

0) Record BASE_SHA (required)

Capture the base ref before any changes (used later for dedup):

BASE_SHA="$(git rev-parse HEAD)"

1) Choose the repo check command(s) once (required)

Do a one-time tooling detection + configuration so the per-step “build/lint” commands match the target repo.

Detect languages and entrypoints

  • Node/TS: look for package.json in repo root and common subprojects (for example functions/package.json).
  • Python: look for pyproject.toml, uv.lock, poetry.lock, requirements.txt. Pick build/lint/typecheck commands (prefer repo-native scripts)
  • Prefer existing package scripts when present (e.g. npm run build, npm run lint, npm test).
  • Prefer the repo’s configured Python toolchain:
    • If uv is clearly in use: use uv-based commands.
    • If Poetry is clearly in use: use poetry run ....
    • If neither: use the repo’s documented commands (README/CONTRIBUTING) if available.
  • If multiple options exist or it’s unclear, ask the user once for the canonical build/lint/typecheck commands, then reuse them for every step. Write down a “Tooling config” block and reuse it for every step
  • Example format (adapt to the repo):
    • Root (Node): build=..., lint=...
    • functions/ (Node): build=..., lint=...
    • Root (Python): build=..., typecheck=..., lint/format=...
  • From now on, only run the commands from this block after each step (instead of hard-coded defaults). If the repo has no build/lint tooling
  • Explicitly record “No build/lint configured” and skip build/lint steps (do not invent tooling). Call this out in the final summary.

Read the full file on GitHub · 130 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. 9d ago First seen · 130 lines · 30 tokens per session scan A 217da48dee92

Subscribe to this mod's changes

besimple-tiny-broccoli is a skill published in the GitHub repository besimple-oss/broccoli (285 stars, last pushed 4mo ago), licensed MIT. It adds 30 tokens to every session and 1,271 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

submit-review

Reference for how a finished ticket reaches human review in the Gaffer factory. Submission is RUNNER-OWNED — the agent commits its work and evidences the ACs, then stops; the runner records the delivery, pushes, opens the PR, and submits for review. Invoke when you think your work is ready to hand off, to confirm what…

tmj-90/gaffer · 95 tokens

commit-and-push

Create a well-formatted git commit and push to remote repository.

jmagly/aiwg · 17 tokens

customize-contribute-back

Contribute a user's AIWG customization back upstream as a PR — reviews for general applicability, creates branch, opens PR.

jmagly/aiwg · 29 tokens

create-branch

Use at the start of work on any claimed Dispatch ticket, before editing files, to create the working branch with the required prefix. Invoke whenever a ticket needs code changes and you are not yet on a non-protected feature branch.

tmj-90/gaffer · 50 tokens

changelog-generator

Use when producing release notes from Conventional Commits, computing the next semantic version from a commit stream, generating CHANGELOG.md, or automating release notes in CI. Triggers on "generate the changelog", "what version bump do these commits require", "release notes", "CHANGELOG", or "semantic version".

tmj-90/gaffer · 68 tokens

cc-autopilot

Run cc-autopilot, a perpetual autonomous AUDIT/GENERATE→TRIAGE→BATCH→FIX→VERIFY→REVIEW→COMMIT loop that holds every change to a configured quality bar through a judge panel. Its fixers each own a file-disjoint slice of the tree so no two can ever touch the same file, and nothing unverified reaches git. Works on a web…

gbotev1/cc-autopilot · 155 tokens