CLI Commands
Run kitpack without arguments to open the interactive terminal UI, or use a specific command:
kitpack init
Scaffold a new skill in the current directory.
kitpack initCreates a .kitpack/ directory with a packs.json metadata file.
kitpack add <file>
Add a file to the skill bundle.
kitpack add cursor/rules.md
kitpack add prompts/system.txt prompts/user.txtCopies files into the .kitpack/files/ directory.
kitpack search <query>
Discover skills from the skills.sh registry.
kitpack search react
kitpack search "testing"
kitpack search vercelReturns up to 20 results with install counts and source repo info.
kitpack install <owner/repo/skill>
Inspect and install a skill.
kitpack install vercel-labs/agent-skills/vercel-react-best-practicesBefore installing, kitpack:
- Fetches the skill files from skills.sh
- Runs a security scan for malicious patterns
- Retrieves audit results from partner providers
- Fetches GitHub stars for the source repo
- Computes a trust score (0–100)
- Shows a full preview with findings and install confirmation
kitpack publish
Publish the current skill to a registry.
kitpack publishPublishes to the local registry by default. Supports npm registry for wider distribution.