Installation
Install the CLI
Section titled “Install the CLI”Installation of the vally CLI is easy - just use NPM:
npm install -g @microsoft/vally-cliVerify installation
Section titled “Verify installation”vally --versionYou should see the version number printed. If you used npx, prefix all commands with npx:
npx vally --versionUse as a library
Section titled “Use as a library”If you want to use Vally programmatically (custom graders, pipeline integration), install the core package:
npm install @microsoft/vallyThen import what you need:
import { discoverSkills, runLint, runEval, gradeTrajectory } from "@microsoft/vally";What’s included
Section titled “What’s included”| Package | Description |
|---|---|
@microsoft/vally | Core library — discovery, parsing, grading, scoring |
@microsoft/vally-cli | Command-line tool — lint, eval, grade |
Next steps
Section titled “Next steps”- Run your first eval — execute an agent and grade the results
- How it works — understand the pipeline model