Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Sets up Caliber for automatic AI agent context sync. Installs pre-commit hooks so CLAUDE.md, Cursor rules, and Copilot instructions update automatically on every commit. Use when Caliber hooks are not yet installed or when the user asks about keeping agent configs in sync.
Dynamic onboarding for Caliber — automatic AI agent context sync. Run all diagnostic steps below on every invocation to determine what's already set up and what still needs to be done.
Run these checks in order. For each step, check the current state first, then only act if something is missing.
command -v caliber >/dev/null 2>&1 && caliber --version || echo "NOT_INSTALLED"
If a version prints → Caliber is installed globally. Set CALIBER="caliber" and move to Step 2.
If NOT_INSTALLED → Install it globally (faster for daily use since the pre-commit hook runs on every commit):
npm install -g @rely-ai/caliber
Set CALIBER="caliber".
If npm fails (permissions, no sudo, etc.), fall back to npx:
npx @rely-ai/caliber --version 2>/dev/null || echo "NO_NODE"
CALIBER="npx @rely-ai/caliber". This works but adds ~500ms per invocation.npx skills add caliber-ai-org/ai-setup --skill setup-caliberHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Very clear and well structured, with almost no room for misunderstanding.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Highly actionable with clear, concrete steps that an agent can follow directly.