kumiko new
kumiko new app <kebab-name> [--dest <dir>]Creates a standalone app with kumiko.config.ts, src/run-config.ts,
bin/main.ts, and the usual .env.example — ready to bun install and
bun run boot.
Use this when you’re starting a new product. For a single feature inside
an existing app or the framework repo, use kumiko create
(recipes) or kumiko add (in-app feature).
Arguments
Section titled “Arguments”app— required subject. Onlyappis supported today.<kebab-name>— app slug (my-shop,billing-portal).--dest <dir>— output directory. Defaults to./<kebab-name>/under CWD.
Example
Section titled “Example”kumiko new app my-shopcd my-shopbun installcp .env.example .env # edit JWT_SECRET + KUMIKO_SECRETS_MASTER_KEY_V1bun run bootScaffolded @cosmicdrift/* deps are pinned to the dev-server version you’re
running — reproducible installs, not "*".
See also
Section titled “See also”kumiko add feature— add a feature to an existing appkumiko init-deploy— Dockerfile + migrate step- Quickstart — first boot checklist