Package and share Claude Agent Skills as OCI artifacts.
# Install
go install github.com/cmrigney/skill-share@latest
# Pull a sample skill
skill-share pull crigneydocker/skill-slack-gif-creator
# Auto-extracts to ~/.claude/skills/slack-gif-creatorNow when you run claude, this skill will be available!
Claude Agent Skills are modular capabilities that extend Claude's functionality. Each skill is a directory containing:
- SKILL.md (required) - Instructions with YAML frontmatter
- Additional markdown, scripts, and resources (optional)
Learn more: Claude Agent Skills Documentation
# Install from source
go install github.com/cmrigney/skill-share@latest
# Or from the source repo (requires Task)
task installYou can share your skills with your team easily! You first need to push a skill.
skill-share push [skill-path] [registry/repository:tag]Examples:
# Push a personal skill to Docker Hub
skill-share push ~/.claude/skills/slack-gif-creator username/slack-gif-creator
# Push a project skill
skill-share push ./skills/my-skill username/my-skillOnce someone has pushed a skill, others can pull it.
skill-share pull [registry/repository:tag] [destination-path]Destination is optional - defaults to ~/.claude/skills/<skill-name>.
Examples:
# Pull to default location (~/.claude/skills/my-skill)
skill-share pull username/slack-gif-creator
# Pull to custom location
skill-share pull username/slack-gif-creator ./skills/slack-gif-creatorUpdated as of 12-19-2025: Anthropic's skills can be pulled from crigneydocker/skill-<skill-name>
skill-share pull crigneydocker/skill-algorithmic-art
skill-share pull crigneydocker/skill-brand-guidelines
skill-share pull crigneydocker/skill-canvas-design
skill-share pull crigneydocker/skill-doc-coauthoring
skill-share pull crigneydocker/skill-docx
skill-share pull crigneydocker/skill-frontend-design
skill-share pull crigneydocker/skill-internal-comms
skill-share pull crigneydocker/skill-mcp-builder
skill-share pull crigneydocker/skill-pdf
skill-share pull crigneydocker/skill-pptx
skill-share pull crigneydocker/skill-skill-creator
skill-share pull crigneydocker/skill-slack-gif-creator
skill-share pull crigneydocker/skill-theme-factory
skill-share pull crigneydocker/skill-web-artifacts-builder
skill-share pull crigneydocker/skill-webapp-testing
skill-share pull crigneydocker/skill-xlsx
This project uses Task for build automation.
Available tasks:
task build # Build the binary
task install # Install to GOPATH/bin
task clean # Remove built binaries
task tidy # Tidy Go modulesMIT