Create the Project
Run the scaffold command in a directory where you keep source code.
npm create anyam demo
cd demo
npm installThe command creates a Git repository, an anyam.json manifest, TypeScript source, a test, and a README. The scaffold does not create provider resources or store credentials.
Run the local checks
Run the doctor, compiler, test, and build commands.
npx create-anyam doctor
npm run typecheck
npm test
npm run buildYou should see a passing Project doctor, a successful TypeScript compilation, a passing Node test, and a dist/index.js output file.
Start a Change
Create a stable Change before editing the next feature.
npx create-anyam change start "Add a health route"
git statusEdit the files with your preferred editor or coding agent. Use ordinary Git for source edits. Use Anyam for Change, Workspace, review, Evidence, Release, and Target operations.
Choose an agent
Configure the agent you already use.
anyam agent setup codex
anyam agent start codex
# Restricted source
anyam agent exec codex -- codexReplace codex with claude, cursor, or cli. The agent receives a task-scoped Workspace credential. It cannot write the canonical repository, read secret values, approve its own Change, or promote a production Target.