The connective tissue between your projects.
Chaparral manages shared Claude Code skills and brand identity across every repo in an organization. One brand repo holds the truth. Chaparral links it everywhere it needs to go.
Built for people who work across multiple orgs and clients. Multi-org by default.
You have an org directory β say ~/code/manzanita-research/ β with a dozen repos inside. They share a design language, a brand voice, a set of Claude Code skills that shape how AI works with your code. But Claude Code discovers skills per-project (.claude/skills/) or globally (~/.claude/skills/). There's no org level.
So you copy things around. You forget. Projects drift. The new repo never gets the frontend design skill. The brand voice doc is three versions behind in half your projects.
Claude Code has a plugin marketplace now, but it solves a different problem β distribution to other people and machines. Plugins copy to a cache, require per-repo configuration, and need manual updates after changes. When you're actively developing shared skills across sibling repos, you need something faster.
Put a chaparral.json manifest in your brand repo. Chaparral finds it, reads it, and symlinks your shared skills and org-level CLAUDE.md into every sibling repo. Edit a skill in the brand repo and it's instantly live everywhere. No reinstalls, no cache invalidation, no per-repo setup.
~/code/manzanita-research/
βββ CLAUDE.md β symlink, managed by chaparral
βββ brand/
β βββ chaparral.json β manifest
β βββ org/
β β βββ CLAUDE.md β org-wide Claude instructions
β β βββ skills/
β β βββ frontend-design/
β β βββ brand-voice/
β βββ ...
βββ toyon/
β βββ .claude/skills/
β βββ frontend-design/ β symlink
β βββ brand-voice/ β symlink
βββ ceanothus/
β βββ .claude/skills/
β βββ frontend-design/ β symlink
β βββ brand-voice/ β symlink
βββ ...
go install github.com/manzanita-research/chaparral/cmd/chaparral@latestOr build from source:
git clone https://github.com/manzanita-research/chaparral.git
cd chaparral
go build -o chaparral ./cmd/chaparralchaparralLaunch the interactive dashboard. Toggle between skills view and repos view with tab. Navigate with j/k, sync with s or enter, install marketplace plugins with i from the repos view.
chaparral syncDiscovers all org directories, finds brand repos (by chaparral.json), and links skills into every sibling. Idempotent β safe to run anytime.
chaparral statusShows what's linked, what's stale, what's new and unlinked. Also shows installed marketplace plugins per repo.
chaparral validateChecks skill structure for errors and warnings β missing SKILL.md, bad frontmatter, etc.
chaparral generate
chaparral generate --marketplaceGenerates plugin.json manifests for each skill (dry run to stdout). With --marketplace, also generates the marketplace.json catalog.
chaparral publish
chaparral publish --check
chaparral publish --write-onlyWrites plugin manifests and pushes your marketplace to GitHub. Use --check to see if local skills are newer than published. Use --write-only to write manifests without pushing.
chaparral unlinkRemoves all chaparral-managed symlinks. Only touches symlinks it created.
Your brand repo needs a chaparral.json at its root:
{
"org": "manzanita-research",
"claude_md": "org/CLAUDE.md",
"skills_dir": "org/skills",
"exclude": ["brand"]
}| Field | What it does |
|---|---|
org |
Human-readable org name (for display) |
claude_md |
Path to the org-level CLAUDE.md, relative to brand repo root |
skills_dir |
Directory containing shared skills, relative to brand repo root |
exclude |
Repos to skip when linking (the brand repo itself, forks, archives) |
Chaparral looks for org directories in ~/code/. Any subdirectory that contains a repo with a chaparral.json is treated as an org. This means you can manage multiple orgs β different clients, different brands, all from one tool:
~/code/
βββ manzanita-research/ β org (brand/ has chaparral.json)
βββ temple-of-silicon/ β org (identity/ has chaparral.json)
βββ cosmic-computation-lab/ β org (brand/ has chaparral.json)
βββ personal-projects/ β not an org (no chaparral.json anywhere)
Chaparral and Claude Code's plugin marketplace are complementary:
| Local skills (chaparral) | Marketplace plugins | |
|---|---|---|
| Propagation | Symlinks β instant | Cache copies β requires update |
| Setup | One manifest, auto-discovered | Per-repo .claude/settings.json |
| Best for | Active development, fast iteration | Stable distribution to others |
| Scope | Org directory | Per-user or per-project |
Chaparral is your workbench. The marketplace is your storefront. Develop locally with symlinks, then run chaparral publish to push them to your marketplace when they're stable.
- No file copying for sync. Symlinks only. One source of truth.
- No global installs into
~/.claude/. Everything stays org-scoped. - No magic. It creates symlinks and tells you what it did. Publishing is the one exception β
publishwrites manifests and pushes to GitHub, but only when you ask.
The chaparral β dense, fire-adapted brushland that covers California's coastal hills. Manzanita, ceanothus, sage, toyon β they grow together in this ecosystem, their roots intertwined beneath the surface. Different plants, same soil. That's the idea.
With love from California.