Skip to content
Docs

Everything you need to run Norma

Start with the CLI, then wire it into CI. Each card below is a real guide. Deeper references are on the way.

A

One command. Or one workflow.

terminal# install once, then run on any repo with a spec
$ npm i -g @norma-sh/norma
$ export ANTHROPIC_API_KEY=sk-...
$ norma check
# no install needed: npx @norma-sh/norma check

  Spec Fidelity Score  55/100
  drift located, per requirement
.github/workflows/norma.ymlon: pull_request
steps:
  - uses: norma-sh/norma@v1
    with:
      threshold: "80"
      anthropic-api-key: ${{ secrets... }}
▲ scores every PR, comments the result, fails below threshold
Did the build keep its promises?

AI can write the code.
Who verifies the intent?