Sync Clawdbot skills between local installation and the shared skill repository. Use when asked to install, update, list, or push skills.
Overall
score
88%
Does it follow best practices?
If you maintain this skill, you can automatically optimize it using the tessl CLI to improve its score:
npx tessl skill review --optimize ./path/to/skillValidation for skill structure
Manage skills from the shared PSPDFKit clawdbot-skills repository.
🔐 Never commit secrets! Skills are shared code. Keep API keys, tokens, and credentials in local config files, not in SKILL.md or scripts.
# List available skills in the repo
skill-sync list
# Install a single skill
skill-sync install <skill-name>
# Install/update all skills from repo
skill-sync install --all
# Push a local skill to the repo
skill-sync push <skill-name>
# Update the local repo cache
skill-sync updateskill-sync listShows all skills available in the remote repository.
skill-sync install <name>Installs or updates a skill from the repo to your local skills directory.
skill-sync install --allInstalls or updates ALL skills from the repo.
skill-sync push <name>Pushes a local skill to the shared repository via Pull Request.
skill/<name>)gh CLI⚠️ Security Warning: Before pushing, ensure your skill does NOT contain:
Keep credentials in local config files (e.g., ~/.config/) and reference them via environment variables or paths in your skill documentation.
skill-sync updateJust pulls the latest from the repo without installing anything. Useful to see what's new.
The script uses these paths:
~/.clawdbot-skills-repo~/clawd/skills (or $CLAWD_SKILLS_DIR if set)https://github.com/PSPDFKit/clawdbot-skills.gitThe script auto-clones on first run. No manual setup needed.
# See what skills are available
skill-sync list
# Install the buildkite-mcp skill
skill-sync install buildkite-mcp
# You made a cool new skill locally, share it
skill-sync push my-cool-skill
# Get latest updates for all skills
skill-sync install --allIf you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.