Noma

Agent Skills Installation

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 npx available
  • A project directory where your agent should load skills (usually your app repo)

List available skills

npx skills add nomacms/nomacms-agent-skills --list

Install 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-errors

Example: add a framework skill only:

npx skills add nomacms/nomacms-agent-skills --skill noma-nextjs

Cursor only

Restrict installation to Cursor’s skill locations:

npx skills add nomacms/nomacms-agent-skills --skill '*' -a cursor

Global install

npx skills add nomacms/nomacms-agent-skills --skill '*' -g

Verify discovery

If you clone the repository locally, you can confirm the CLI sees the skills:

npx skills add . --list

Run 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.

Search documentation

Find guides and reference pages