
Defaults
- Updated August 3, 2026
- maguerrieri/claude-toolbox
defaults is a Claude Code skill in the AI & Agent Building category. Meta-plugin that pulls in the full default set via dependencies
Key points
- defaults
- AI & Agent Building
- AI-coding skill
Defaults by the numbers
- Data as of Aug 4, 2026 (Skillselion catalog sync)
/plugin marketplace add maguerrieri/claude-toolbox/plugin install defaults@maguerrieri-toolboxAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Last updated | August 3, 2026 |
|---|---|
| Repository | maguerrieri/claude-toolbox ↗ |
What it does
Meta-plugin that pulls in the full default set via dependencies
README.md
claude-toolbox
Portable Claude Code conventions, packaged as a plugin marketplace. One repo, declared per-project, works in local and cloud sessions alike.
Plugins
- defaults — meta-plugin with no content of its own; its
dependencieslist pulls in every plugin below. Install this one to get the full set. New plugins added to this repo should also be added to its dependencies. - conventions — cross-repo development conventions. Currently: commit message format. Candidates to move in later: merge policy, issue/epic structure, the ticket-workflow skills.
- spawn — generic background-session fan-out: the
spawnskill plus the/spawncommand, for firing off one or more independentclaude --bgsessions and handing back without blocking. - generate — diverse bulk ideation: the
generateskill plus the/generatecommand. Runs a judgment-OFF morphological-analysis loop (frame → diversity-prompted parallel passes → axis-tag → cluster) that fights LLM mode-collapse, with the decision handoff behind a pluggable Promotion adapter (inline/github-issue/adr, or point it at your own).
Usage
Per repo, in .claude/settings.json:
{
"extraKnownMarketplaces": {
"maguerrieri-toolbox": {
"source": { "source": "github", "repo": "maguerrieri/claude-toolbox" }
}
},
"enabledPlugins": {
"defaults@maguerrieri-toolbox": true
}
}
Enabling defaults auto-installs and enables its dependencies, so the
settings file stays one line no matter how many plugins land here. To pick
plugins à la carte instead, enable them individually
("conventions@maguerrieri-toolbox": true).
Or user-wide: claude plugin marketplace add maguerrieri/claude-toolbox && claude plugin install defaults@maguerrieri-toolbox.
Org-specific playbooks (deploy processes, review-bot cycles, ticket rules) deliberately do not live here — they stay in org work config; these conventions are the portable layer underneath.