Use agentuity skills to wire Agentuity's npm-distributed Agent Skills into a project. New Agentuity projects include this wiring by default unless created with --no-skills.
You can also install the same skill catalog with the skills CLI from the Git source at agentuity/sdk/skills.
Install Skills in a Project
Run install in a project that has a package.json:
agentuity skills installThe command adds:
| File or package | Purpose |
|---|---|
@agentuity/skills | Bundled Agentuity skill content |
skills-npm | Discovers npm-bundled skills and symlinks them for coding agents |
skills-npm.config.ts | Limits sync to @agentuity/skills |
prepare script | Runs skills-npm --yes after install |
.gitignore entries | Keeps generated skill symlinks out of git |
It also runs the detected package manager install and syncs skills to local agent directories.
Use setup when you only want to edit project files and run dependency installation yourself:
agentuity skills setup --no-sync
npm install
agentuity skills syncInstall Skills Globally
Install Agentuity skills for all projects on your machine:
agentuity skills install --globalThis installs into ~/.agents/skills.
Without the Agentuity CLI, use the same Git source with the skills CLI:
npx skills add agentuity/sdk/skills --global --yes --agent clineUse --agent cursor to install into ~/.cursor/skills instead, or pass other --agent values supported by the skills CLI.
Sync and List
Re-sync after installs, lockfile changes, or agent directory cleanup:
agentuity skills syncList installed bundled skills:
agentuity skills list
agentuity --json skills listNew Projects
Skills are enabled by default in new Agentuity projects:
agentuity create --name my-app --framework nextjsSkip skill wiring:
agentuity create --name my-app --framework nextjs --no-skillsManual npm Setup
The CLI install command is equivalent to:
npm install -D @agentuity/skills skills-npm
npx skills-npm --yesAdd skills-npm --yes to your prepare script so skills stay synced after installs.
Manual Git Setup with skills
Install from the Git catalog into the current project:
npx skills add agentuity/sdk/skills --yesInstall a specific skill:
npx skills add agentuity/sdk/skills --skill agentuity-ai --yesTarget a specific coding agent in the project:
npx skills add agentuity/sdk/skills --agent cursor --yes
npx skills add agentuity/sdk/skills --agent claude-code --yesList available skills without installing:
npx skills add agentuity/sdk/skills --listNext Steps
- Agentuity CLI: install and authenticate the CLI
- Project lifecycle: build and deploy registered projects
- Agent Skills package: npm package once published