Skip to content

This guide shows you how to install and manage Tenzir’s agent skills. You’ll learn how to add skills globally or per project, install individual skills, and keep them up to date.

Tenzir publishes agent skills in the tenzir/skills repository.

Tenzir skills are managed with the skills CLI, which supports 40+ coding agents including Claude Code, Cursor, Codex, GitHub Copilot, and more.

Install all Tenzir skills into the current project:

Terminal window
npx skills add tenzir/skills

The CLI auto-detects which coding agents you have installed and prompts you to select targets.

Append @<skill-name> to install a specific skill:

Terminal window
npx skills add tenzir/skills@ocsf
npx skills add tenzir/skills@tenzir-docs

Skills support two installation scopes:

ScopeFlagLocationUse case
Project(default)./<agent>/skills/Committed with your project, shared with your team.
Global-g~/<agent>/skills/Available across all projects on your machine.

Install globally so skills are available everywhere:

Terminal window
npx skills add -g tenzir/skills

Install a specific skill globally:

Terminal window
npx skills add -g tenzir/skills@ocsf

To install skills for specific agents only, use the -a flag:

Terminal window
npx skills add tenzir/skills -a pi
npx skills add tenzir/skills -a claude-code -a cursor -a codex
Terminal window
npx skills list

Filter by scope or agent:

Terminal window
npx skills list -g
npx skills list -a pi
Terminal window
npx skills check
Terminal window
npx skills update

Remove interactively:

Terminal window
npx skills remove

Remove a specific skill:

Terminal window
npx skills remove ocsf

Remove all installed Tenzir skills:

Terminal window
npx skills remove --all

Browse the community skill directory at skills.sh or search from the command line:

Terminal window
npx skills find

Last updated: