Agent Skills Installation
Install skills from the Noma Agent Skills repository using the skills CLI. Installs are project-local by default; use -g when you want global skills.
Prerequisites
- Node.js with
npxavailable - A project directory where your agent should load skills (usually your app repo)
List available skills
npx skills add nomacms/nomacms-agent-skills --listInstall all skills
This installs every skill in the package (13 total):
npx skills add nomacms/nomacms-agent-skills --skill '*'Install specific skills
npx skills add nomacms/nomacms-agent-skills \
--skill noma-sdk-setup \
--skill noma-content \
--skill noma-errorsExample: add a framework skill only:
npx skills add nomacms/nomacms-agent-skills --skill noma-nextjsCursor only
Restrict installation to Cursor’s skill locations:
npx skills add nomacms/nomacms-agent-skills --skill '*' -a cursorGlobal install
npx skills add nomacms/nomacms-agent-skills --skill '*' -gVerify discovery
If you clone the repository locally, you can confirm the CLI sees the skills:
npx skills add . --listRun that from the cloned nomacms-agent-skills root; you should see all Noma skills listed when discovery works.
Authoring note
Each skill directory contains SKILL.md with YAML frontmatter (name, description). Keep skill name values stable and lowercase with hyphens. Optional files such as reference.md and examples.md sit beside SKILL.md per skill.
Related
- Agent Skills Overview - What each skill is for and how to choose them
- AI Code Editors - MCP + skills + SDK quickstart
- JavaScript SDK - What the skills are teaching the agent to use