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.
Install Skills
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 syncSync 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.
Next Steps
- Agentuity CLI: install and authenticate the CLI
- Project lifecycle: build and deploy registered projects
- Agent Skills package: npm package once published