Skip to content

v1.1.0

Latest

Choose a tag to compare

@johncarpenter johncarpenter released this 27 Jun 23:37

What's new

runboard skills install

A new command to install the bundled SKILL.md skills into your AI agent — no download, copied straight from the package:

npx runboard@latest skills install              # auto-detect (Claude Code → .claude/skills/)
npx runboard@latest skills install --target .cursor/skills   # any other agent
npx runboard@latest skills install --dry-run    # preview; writes nothing
npx runboard@latest skills install --force      # overwrite existing copies
  • Agent-agnostic: auto-detects Claude Code; --target covers any other agent.
  • Safe: never overwrites existing skills without --force; --dry-run previews.
  • Local-first: pure filesystem copy, no network.
  • Mid-run copy failures are reported cleanly and exit non-zero (no stack traces).

Full diff: v1.0.1...v1.1.0