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.
Package
Section titled “Package”{ "name": "cli", "bin": { "memost": "./dist/index.js" }}Requirements
Section titled “Requirements”The repository targets Node.js 20 or newer.
node --versionpnpm --versionLocal usage
Section titled “Local usage”Run the source entrypoint during development:
pnpm --filter cli dev --helpBuild and run the compiled output:
pnpm --filter cli buildnode apps/cli/dist/index.js --help