skillpack 0.13.2

Generate, verify, and maintain AI agent guidance (skills, plugins, AGENTS.md) for Claude Code, Cursor, Codex, Copilot, and 10+ AI coding ecosystems — one command turns any CLI or library into an agent-discoverable skill pack.
Documentation
1
2
3
4
5
6
#!/bin/sh
case "$1" in
  --help) echo "Usage: sample-cpp [--new <entry>] [--verbose]"; exit 0;;
  --version) echo "sample-cpp 0.1.0"; exit 0;;
esac
echo "sample-cpp"