Bundles
A bundle is the unit Octopus uses to ship coherent slices of
configuration. When you run octopus update in a repo and choose a
bundle, the CLI installs the skills, roles, rules, and hooks that
belong to it — and stops there. Picking the right bundle is how you
control how much Octopus shows up in a given codebase.
Bundles exist because the alternative is worse. Without them, every team would have to scroll a list of 36 skills, 37 commands, and 15 hooks and decide each one individually. That choice gets made wrong under time pressure, and people end up either installing too much (noise) or too little (Octopus doesn’t help). A small set of curated bundles takes the choice from “decide 80 things” to “pick the closest archetype to your team”.
The nine bundles
- starter — the foundation every
repo should have. Doc lifecycle skills, the
implementanddebugprotocols, the TDD loop, the prototyping discipline, the session-handoff and review-feedback skills, and the lifecycle hooks that enforce them. - quality — the audit composer.
Security, money, multi-tenant scope, cross-stack contracts,
configuration freshness, architecture-depth refactors. Picks up
what
starterdoesn’t cover for pre-merge audits. - guardrails — deterministic
enforcement against code-assistant drift. Adds
enforce-precommitandenforce-ideskills that ship pre-commit hooks and editor configs alongside the loop-level Octopus hooks, so coding style, commit-msg lint, and formatter behaviour become git-level gates instead of PR review nits. - docs — the documentation lifecycle. Specs, ADRs, plans, PRDs, the interview / grilling discipline, triage, per-module CLAUDE.md authoring, and skill authoring.
- backend — backend-specific
patterns and end-to-end test conventions. Pairs with the
backend-developerrole. - growth — launch + retention tooling. Multi-channel feature launches, release announcements, content image generation.
- tech-lead — the engineering-leadership kit. Mentor-driven review, onboarding, a team Definition of Done, self-serve standards, team-level learning, and cross-repo audit + fleet bootstrap. The manager’s one-stop install; excluded from the fleet baseline (it carries the control-plane tools).
- frontend — frontend-specific
component patterns, component-level tests (RTL), and end-to-end
conventions. Pairs with the
frontend-developerrole. The mirror ofbackendfor UI repos. - fullstack — for monorepos that
hold both an API and a frontend:
backend∪frontendplus cross-stack contract drift detection (audit-contracts).
How bundles compose
Bundles are designed to stack. Most teams ship with one or two:
- Just
starter— solo or two-person teams who want the foundation without the audit overhead. starter+docs— teams that maintain living documentation (RFC / Spec / ADR / PRD culture).starter+quality— teams shipping to production with pre-merge audit gates (security, billing, multi-tenant).starter+backend— backend-only repos with deep framework patterns.starter+quality+docs+growth— a fully-equipped product team across the spectrum.
The combinations are not enforced — you can stack any bundles you
want in .octopus.yml. The recommendations above are starting
points, not rules.
What lives in a bundle definition
Each bundle is a single YAML file at bundles/<name>.yml with:
name: starterdescription: <one sentence — shows in the setup wizard>category: foundation # foundation | intent | stackpersona_question: <only on intent/stack bundles>persona_default: falseskills: [...]roles: [...]rules: []mcp: []hooks: nullThe category field carries weight:
foundationbundles (currently juststarter) install by default — the setup wizard offers them as “the baseline”.intentbundles install when the user opts in to a workflow (docs,quality,growth). Each carries apersona_questionthe wizard asks.stackbundles install when the user identifies a stack (backend). Samepersona_questionpattern.
When to author a new bundle
You probably shouldn’t. The eight existing bundles cover the clearest team archetypes, and adding more dilutes the “pick the closest archetype” mental model that makes bundles useful.
Reasons to add a bundle anyway:
- A coherent workflow involves 4+ skills that don’t fit any existing bundle’s archetype
- The skills compose into a recognisable team activity (not just a random grouping)
- The bundle’s persona question would actually help users decide
If you’re tempted to add a bundle for one or two skills, the better move is to add them to an existing bundle.
Reference
Bundle definitions live in bundles/
in the source repo. Each file is short — the rationale per bundle
lives in the pages linked above.