Agent Skills

Install and sync Agentuity Agent Skills from npm

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 install

The command adds:

File or packagePurpose
@agentuity/skillsBundled Agentuity skill content
skills-npmDiscovers npm-bundled skills and symlinks them for coding agents
skills-npm.config.tsLimits sync to @agentuity/skills
prepare scriptRuns skills-npm --yes after install
.gitignore entriesKeeps 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 sync

Sync and List

Re-sync after installs, lockfile changes, or agent directory cleanup:

agentuity skills sync

List installed bundled skills:

agentuity skills list
agentuity --json skills list

New Projects

Skills are enabled by default in new Agentuity projects:

agentuity create --name my-app --framework nextjs

Skip skill wiring:

agentuity create --name my-app --framework nextjs --no-skills

Manual npm Setup

The CLI install command is equivalent to:

npm install -D @agentuity/skills skills-npm
npx skills-npm --yes

Add skills-npm --yes to your prepare script so skills stay synced after installs.

Next Steps