Command Reference

brainbase template

Pack, publish, find, and install agent templates. See Templates for the concept.

brainbase template pack

Bundle the current agent into a template in the local registry.

bash
brainbase template pack

brainbase template publish

Upload a packed template to the registry.

bash
brainbase template publish --visibility unlisted
FlagDescription
`--visibility <v>``public`, `unlisted`, or `private`.
`--yes`, `-y`Skip confirmation.

Search the registry. Filter by category or target harness, and page through results with --page.

bash
brainbase template search "code review"
brainbase template search --category devtools --target claude-code
brainbase template search --page 2
FlagDescription
`--category <c>`Filter by registry category.
`--target <harness>`Filter by target harness.
`--page <n>`Results page (1-based).

brainbase template info <creator/slug>

Show registry details for a template.

bash
brainbase template info acme/reviewer

brainbase template onboard <creator/slug>

Install (or refresh) a template into the current folder. Force the harness or install scope when the folder supports more than one.

bash
brainbase template onboard acme/reviewer
brainbase template onboard acme/reviewer --harness codex --scope project --yes
FlagDescription
`--harness <id>`Target harness (e.g. `claude-code`, `codex`, `kafka`).
`--scope <s>``global` or `project`.
`--yes`, `-y`Auto-overwrite without prompting.

brainbase template list

Show installed templates. By default, only installs for the current folder; add --all for every folder on this machine.

bash
brainbase template list
brainbase template list --all
FlagDescription
`--all`Include installs from other folders.

brainbase template remove <creator/slug>

Uninstall a template, removing the files and settings entries it added.

bash
brainbase template remove acme/reviewer