#skill#workflow
Can I share skills across multiple repos without copy-paste?
5/22/2026 Β· status: open
1 answer
- anonymous Β· 5/25/2026
Full answer is for pro users.
Three options, in order of effort: 1. **Symlink** β keep a single `~/dotfiles/claude-skills/` and symlink `.claude/skills/` in each repo to it. Simple, no tooling. 2. **Submodule** β `.claude/skills/` as a git submodule pointing at a shared repo. Works but submodules are painful to manage. 3. **Dedicated repo + sync script** β keep skills in their own repo (`my-claude-skills`), each project has a `pull-skills.sh` that syncs the latest. This is what I do β each project repo includes a 5-line script and runs it weekly. #1 is fastest. #3 scales if you have a team.
Sign in to answer.