SkillsDojo lets you manage private AI agent skill collections that work with skills.sh. Share skills across your team and sync them between applications.
Install the SkillsDojo CLI globally:
npm install -g skillsdRequires Node.js 18 or later. Works alongside the skills.sh CLI.
skillsd auth login --token YOUR_API_KEYGet your API key from Settings → API Keys
skillsd auth whoamiLink your project to a SkillsDojo collection and start adding skills:
# Link current directory to a collection
skillsd link my-account/my-collection --create
# Search for skills on skills.sh
npx skills find "commit"
# Add a skill from skills.sh
npx skills add marcelorodrigo/agent-skills@conventional-commit -y
# Check what changed
skillsd status
# Push to SkillsDojo (creates a PR)
skillsd push -t "Add conventional-commit skill"skillsd link account/collectionCreates .skillsdojo/ config and .agents/skills/ directory. Use --create to create a new collection.
# Search for skills
npx skills find "your query"
# Add a skill
npx skills add owner/repo@skill-name -ySkills are installed to .agents/skills/ and automatically configured for Claude Code, Cursor, and other AI agents.
skillsd statusShows new, modified, and deleted skills compared to the remote collection.
skillsd push -t "Add new skills"Creates a pull request with your changes. Merge via the web UI.
Download an existing collection with all its skills:
# Clone a collection
skillsd clone account/collection
# Work in the cloned directory
cd collection
skillsd status# Interactive search
npx skills find
# Search with query
npx skills find "code review"npx skills add owner/repo -l| Command | Description |
|---|---|
skillsd auth login | Login to SkillsDojo |
skillsd auth whoami | Show current user |
skillsd link <collection> | Link directory to collection |
skillsd clone <collection> | Clone a collection locally |
skillsd status | Show local changes |
skillsd push | Push changes as PR |
skillsd collection list | List your collections |
skillsd collection create | Create new collection |
skillsd skill list | List skills in collection |
skillsd download | Download collection as ZIP |
npx skills find | Search skills.sh |
npx skills add | Add skill from skills.sh |
Run skillsd --help for all commands. Visit skills.sh to browse community skills.