Skip to content

CLI

The memo.st CLI lives in apps/cli and publishes the memost executable from the compiled dist/index.js entrypoint.

The package is currently an initialized Commander.js scaffold. It gives the repo a typed CLI surface that can grow into API automation, project setup, and operational commands.

{
"name": "cli",
"bin": {
"memost": "./dist/index.js"
}
}

The repository targets Node.js 20 or newer.

Terminal window
node --version
pnpm --version

Run the source entrypoint during development:

Terminal window
pnpm --filter cli dev --help

Build and run the compiled output:

Terminal window
pnpm --filter cli build
node apps/cli/dist/index.js --help