@@ -104,6 +104,7 @@ Starter templates for new projects:
104104| Script | Description |
105105| --------| -------------|
106106| [ ` bin/sync-commands ` ] ( bin/sync-commands ) | Sync commands from this repo into a target project's ` .claude/commands/ ` |
107+ | [ ` bin/sync-skills ` ] ( bin/sync-skills ) | Sync skills from this repo into a target project's ` .claude/skills/ ` |
107108| [ ` bin/chrome-mcp ` ] ( bin/chrome-mcp ) | Launch Chrome with a separate profile for MCP browser debugging |
108109| ` bin/set-review-instructions ` | Initialize file-by-file review with instructions and changed file list |
109110| ` bin/print-git-diff ` | Print diff, before/after, and review instructions for a single file |
@@ -120,9 +121,9 @@ Starter templates for new projects:
120121| [ Claude Code Review] ( .github/workflows/claude-code-review.yml ) | Automatic PR review on open/sync |
121122| [ Claude Code] ( .github/workflows/claude.yml ) | Respond to ` @claude ` mentions in issues/PRs |
122123
123- ## Syncing Commands to Your Project
124+ ## Syncing to Your Project
124125
125- This repo is the canonical source for shared commands like ` /address-review ` . To keep a project in sync:
126+ This repo is the canonical source for shared commands and skills. Use the sync scripts to keep a project up to date.
126127
127128### One-Time Setup
128129
@@ -144,27 +145,33 @@ cp "$BOOSTERS/commands/address-review.md" .claude/commands/
144145
145146### Keeping Up to Date
146147
147- Run ` bin/ sync-commands ` from this repo to pull the latest commands into a target project:
148+ Run the sync scripts from this repo to pull the latest commands or skills into a target project:
148149
149150``` bash
150151# Sync all commands to a project
151152./bin/sync-commands ~ /projects/my-app
152153
153154# Sync a specific command
154155./bin/sync-commands ~ /projects/my-app address-review
156+
157+ # Sync all skills to a project
158+ ./bin/sync-skills ~ /projects/my-app
159+
160+ # Sync a specific skill
161+ ./bin/sync-skills ~ /projects/my-app docs
155162```
156163
157164### For AI Agents in Consuming Repos
158165
159166Add this to your project's ` CLAUDE.md ` or ` AGENTS.md ` so agents know where shared commands come from:
160167
161168``` markdown
162- ## Shared Commands
169+ ## Shared Commands and Skills
163170
164- The ` /address-review ` command is synced from
171+ Commands and skills are synced from
165172[ claude-code-commands-skills-agents] ( https://github.com/shakacode/claude-code-commands-skills-agents ) .
166- Do not edit ` .claude/commands/address-review.md ` directly — update the
167- canonical copy in the boosters repo and re-sync.
173+ Do not edit ` .claude/commands/ ` or ` .claude/skills/ ` directly — update the
174+ canonical copies in the boosters repo and re-sync.
168175```
169176
170177See the [ templates/] ( templates/ ) directory for starter ` CLAUDE.md ` and ` AGENTS.md ` files that include this pattern.
0 commit comments