agentkitx
v0.1.3
Published
Interactive CLI to install portable Agent Skills for Cursor, Claude Code, Copilot, and more.
Downloads
359
Maintainers
Readme
agentkitx CLI
Interactive CLI for installing portable Agent Skills, AI Workflows, Architecture Setup Prompts, and Git Hooks from this repository into Cursor, Claude Code, GitHub Copilot, Windsurf, Antigravity, and other compatible tools.
Usage
npx agentkitx # starting menu: set up, add skills, adapt skills, and more
npx agentkitx setup # install skills, workflows, and/or git hooks
npx agentkitx add # add skills to an existing install
npx agentkitx prompt # copy a prompt (auth, OAuth, layouts, API, theme, ...)
npx agentkitx reference # get a prompt that fills in your stack and file paths
npx agentkitx list # browse catalog (skills, prompts, workflows, templates)
npx agentkitx doctor # check what is installedDevelopment
From this directory:
npm install
npm run dev # run CLI without building (tsx)
npm run build # compile to dist/
npm run sync-assets # copy repo assets → assets/ (skills, prompts, workflows, templates)During local development, the CLI reads assets from the root repo directories when they exist. Published packages use bundled assets/.
Publish checklist
Verify the npm name
agentkitxis available.Bump version in
package.json.Run publish (syncs all assets and builds automatically):
npm publish --access publicSmoke test from a temp project:
npx agentkitx@latest list npx agentkitx@latest setup
Package layout
cli/
├── bin/agentkitx.js # entry point
├── src/ # TypeScript source
├── dist/ # compiled output (gitignored)
├── assets/ # bundled skills, prompts, workflows, templates at publish
└── scripts/sync-assets.mjs# copies repo assets before publish