GET STARTED / INTRODUCTION
Your first conformant program
A Score Networks program is a score: a set of staves (lanes of execution) carrying notes (units of work), separated by barlines (gates where state commits). This guide composes a minimal Vendor Onboarding program and performs it to Class A.
# install the CLI
$ npm i -g @score/cli
# scaffold a score
$ score init vendor-onboarding
→ created score.signet SIGNET 1.0
# perform & request conformance
$ score perform --class A
✓ CONF-2026-0481 · CONFORMANT
$ npm i -g @score/cli
# scaffold a score
$ score init vendor-onboarding
→ created score.signet SIGNET 1.0
# perform & request conformance
$ score perform --class A
✓ CONF-2026-0481 · CONFORMANT
The anatomy of a score
Every score declares its staves, the tempo of each movement, and the conformance class it targets. Notes reference typed tasks; barlines define the conditions under which state may advance.
← QuickstartYour first score →