tessl install github:jdrhyne/agent-skills --skill skill-syncgithub.com/jdrhyne/agent-skills
Sync Clawdbot skills between local installation and the shared skill repository. Use when asked to install, update, list, or push skills.
Review Score
88%
Validation Score
12/16
Implementation Score
88%
Activation Score
90%
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 --all