Install
Install @merekit/cli when you want the public mere command, bundled app adapters, docs, and the repo-local mere-cli skill.
Requirements
- Node.js
>=24 <26. - npm or pnpm.
- Mere workspace access for workspace-scoped product reads.
- App auth where the target product requires it.
Install From npm
npm install -g @merekit/cli
mere --helpWith pnpm:
pnpm add -g @merekit/cli
mere --helpConfirm the installed package can resolve app adapters:
mere apps list --json
mere ops doctor --jsonInstalled users should normally see app CLI entries with source: "bundled".
Use This Repository
For development inside this repo:
pnpm install
pnpm build
node dist/run.js --help
node dist/run.js help onboardThe npm package ships compiled runtime files under dist/ and bundled app adapters under adapters/. Public contributors do not need to rebuild app adapters for normal root CLI development.
App CLI Resolution
When mere delegates to an app CLI, it resolves the adapter in this order:
- Explicit environment override, such as
MERE_PROJECTS_CLI=/path/to/run.js. - Bundled adapter inside
@merekit/cli/adapters/. - Local Mere repository paths under
MERE_ROOT. - App binaries on
PATH, such asmere-projects,mere-zone, ormerefi.
Use MERE_CLI_SOURCE=auto|bundled|local|path to force a source while debugging install behavior.
The media adapter is resolved the same way, but local media processing has extra runtime dependencies: mere media process ... --transcribe --embed calls the public mere.run executable and needs local ASR/embedding models. Run mere setup mere-run --json to orchestrate the runtime install, then mere setup mere-run models --app media --json to pull app-requested models. In a local Mere checkout, it builds from ~/mere/run-public; installed users can download https://public.stereovoid.com/mere-run-releases/mere-run.dmg by providing a verified checksum with MERE_MEDIA_MERE_RUN_DOWNLOAD_SHA256 or --sha256.
Check The Command Plane
mere --help
mere help onboard
mere apps list --json
mere ops doctor --jsonIf those work, continue to First Run.