Troubleshooting
Recover when create, install, verify, or certify fails.
Stay on the happy path from Quick Start. Use this page only when something breaks.
pnpm create cellas fails
- Confirm Node.js
^22.13.0 || >=24.0.0. - Confirm pnpm 9 / npm / bun is on
PATH. - Retry non-interactively:
pnpm create cellas my-docs --yes --no-install
cd my-docs
pnpm installpnpm install cannot find @cellas/conformance-cli
- Check registry reachability:
npm view @cellas/conformance-cli version - Clear a bad cache if needed:
pnpm store prune - Confirm
package.jsonuses a semver range (notworkspace:*)
verify fails
pnpm exec cellas verify --input examples/execution-record.json --type execution--inputmust be a JSON file, not a directory.- Do not point at immutable monorepo
samples/from a generated project unless you copied those files.
certify is not PASS
pnpm exec cellas certify --target examples/target.json --profile reference- Profile id must exist under
conformance/profiles/(starters shipreference). - Read the CLI findings in the output; fix the named check, then re-run.
Wrong package manager commands
| Manager | Install | Run |
|---|---|---|
| pnpm | pnpm install | pnpm exec cellas … |
| npm | npm install | npx cellas … |
| bun | bun install | bunx cellas … |
create-cellas prints the matching next steps for the detected manager.
Still stuck
- Re-read the generated project
README.md(always lists the next command). - Open FAQ.
- Ask in GitHub Discussions (preferred for Public Beta help).
- File a bug with Node/pnpm versions, full command, and output.