Examples for real repo workflows.

Copy these patterns for local projects, pull requests, and team review handoffs.

Local project boot

forgelens scan --root . --out .forgelens --format all

Use when starting a new repo session with any coding agent.

Baseline workflow

forgelens baseline save --name current

forgelens drift --from current

PR risk check

forgelens drift --git main..HEAD

Attach `DRIFT_REPORT.md` to review notes before merge.

Release readiness

pnpm release-check

Runs typecheck, tests, build, and npm pack dry run before publish.