canon is a CLI and Claude Code plugin that stops your AI conventions drifting apart across repositories. It keeps one authoritative copy and installs it into each project on demand.
The counts above are read from the catalogs when the image is built, so they're what the repo actually ships today.
If you work across more than one repository and your AI setup has started to drift between them, this is for you. Every AI coding setup accumulates the same assets. Prompts to reuse, rules agents should follow, slash commands, skills, seed docs, sync scripts. Once you have enough projects, your copies drift and your agents stop getting consistent signals.
Three design choices shape the toolkit.
- Agent-first: every command has a non-interactive path and a JSON catalog. If a Claude Code skill or any other agent cannot drive the CLI without prompts, the design is wrong.
- Text-native: conventions, rules, and prompts are authored as markdown that you and your agents read the same way. No hidden behavior, no compiled state.
- One source, many consumers: this repo is the authoritative copy. Your projects install and sync on demand, never author in place.
Two limits worth knowing before you install. Claude Code is the only agent runtime the plugin targets, and the CLI needs Bun on your path.
Add the marketplace, then install the Claude Code plugin.
claude plugin marketplace add https://github.com/erclx/canon
claude plugin install canon@canonThe skills land as /canon:<name>. If your session was already open, run /reload-plugins to pick them up.
Several skills call the canon CLI to read catalogs and run installs, and the plugin doesn't put it on your path. Install it from the registry.
bun install --global @erclx/canonBun is the CLI runtime and has to be on your path first. Confirm the install by resolving canon --help.
Each domain has a canonical source in this repo and a thin install or sync CLI on your side.
- Claude Code plugin: skills that plan a feature, review a diff, sync the planning docs, and run the ship chain from branch through pull request
- Governance rules: coding and authoring rules that load into a Claude session when a matching path is edited, installed per project and refreshed by sync
- Standards: authoring conventions for commits, branches, plans, tasks, and markdown, read by name with
canon standards <name>rather than copied into your project - Snippets: reusable prompts fired by
@reference in a Claude Code session, resolved live from the plugin with no install step - Tooling stacks: golden configs, seeds, and a reference per framework, laid down by
canon initand reconciled bycanon tooling sync - Design system: a
DESIGN.mdtoken format, a skill that drafts one from an existing project or from scratch, and a render command - Slides: a
SLIDES.mdsource format with a layout catalog, rendered to PowerPoint bycanon slides render - Transcripts:
canon transcriptspulls a YouTube transcript with metadata frontmatter into any repo - Sandbox: scenario-based scaffolds that provision an isolated project state for verifying each domain flow
Those domains split on one line: some are copied into your project and become yours to edit, and some are never copied at all.
A tooling stack lands as real files under version control, because a config is something your build reads and your project owns. A standard stays here and is opened by name, so there is no copy in your repo to drift from this one.
Governance is the third shape, and it is worth seeing rather than reading about, because the glob beside each rule is what decides whether it reaches a session at all.
Stacks compose, so a react project inherits node and node inherits base. A rule with a glob loads only when a matching path is edited, and a rule with none loads every session. Both counts and every row above are read from the catalogs when the image is built.
The toolkit tracks its own work the same way, in a task board no catalog can read back.
.canon/tasks/ is gitignored session scratch, so unlike the two frames above, this one is a hand-taken snapshot rather than something the build reads live, and it goes stale the moment the board moves.
Scaffolding your first project? Start with target projects, then the AI workflow loop. Everything else answers questions that arrive later.
- AI workflow: feature-development loop inside a toolkit-managed project
- Operating model: orchestrator, planner, and worker roles for building across parallel sessions
- Visual design workflow: tiered guide for design and wireframe authoring
- Target projects: scaffold, add a domain later, sync upstream drift
- Agents: CLI flags, exit codes, and JSON output shapes
- Docs index: every reference doc in this repo
Nothing refreshes on its own. Claude Code ships auto-update off for third-party marketplaces, so an installed copy serves whatever version it was installed at until you refresh it.
claude plugin marketplace update canon
claude plugin update canon@canon
canon upgradeThe first two update the skills, the third updates the CLI, and they move independently. Restart Claude Code, or run /reload-plugins, to pick the skills up.
canon upgrade reads the package manager off its own install path and reinstalls with that one, so you don't have to remember which put it there. It names what it detected before it runs anything, and it refuses a source checkout rather than reinstalling over your clone.
You don't have to wait until something breaks to find out you're behind. canon sync --check and canon claude skills drift both report the installed version against the newest published one, and neither changes its exit code over it, so an offline machine reads unknown rather than red.
To stop doing this by hand, turn auto-update on once under /plugin in the Marketplaces tab. Confirm what you are running with canon --version and claude plugin list.
Working on the toolkit starts from a clone. Running the CLI doesn't, since it installs from the registry. Skip this section unless you're changing the toolkit itself.
- Bun for the CLI runtime and scripts
- Git with worktree support
- GitHub CLI (optional) for ship flows
- Shell:
zshor bash 4+ (brew install bashon macOS).
Clone the repo, then run the bootstrap script. It installs dependencies, links the CLI globally, and appends a marked block of Claude Code shell aliases to your ~/.zshrc.
git clone https://github.com/erclx/canon.git
cd canon
bun install
bun run bootstrapThe script is idempotent, so re-run it after pulling upstream changes without duplicating anything. That also means it leaves an alias block you already have alone rather than refreshing it, so an alias added upstream needs the block deleted and the script re-run. It confirms the install by resolving canon --help on the last step. See zshrc aliases for what each alias does, how to pick up a new one, and how to opt out of the block.
With the CLI linked, scaffold a fresh project.
mkdir ~/my-project && cd ~/my-project
git init
canon initcanon init installs base tooling configs, Claude seeds, and governance rules in one pass, and scaffolds a .claude/wiki/ stub for your project's own reference pages. Governance defaults to the base stack, so a bare init lands the coding and doc-authoring rules in .claude/rules/. Each rule names the standard it answers to and reads it with canon standards <name>, so no corpus is copied into your project. Pass --stack <name> for a framework stack, or --skip governance to leave rules out. A snippet resolves the same way, reached at its @ reference through the plugin's live claude/snippets symlink rather than a copy. Run canon tooling list --json to see the catalog.
For the full journey from scaffold through adding a domain later to syncing upstream drift, see target projects.
Each domain carries an entry written for someone maintaining the toolkit rather than installing it. These paths resolve in a clone only. The published package ships docs and not .claude, so an installed copy does not carry them.
- Claude Code plugin
- Governance rules
- Standards
- Snippets
- Tooling stacks
- Design system
- Slides
- Transcripts
- Sandbox
Portfolio project. Issues are welcome. Pull requests are accepted by invitation only, so open an issue rather than a branch. Read the contributing guidelines for the local loop, the authoring split, and the commit convention before you file anything.




