Skip to content

CLI Commands ​

The kick CLI provides commands for project creation, development, code generation, and custom workflows. It is powered by Commander.js and reads project-level configuration from kick.config.ts.

Installation ​

For users (building apps with KickJS) ​

Install the published CLI globally:

bash
# pnpm
pnpm add -g @forinda/kickjs-cli

# npm
npm install -g @forinda/kickjs-cli

# yarn
yarn global add @forinda/kickjs-cli

Verify it's available:

pnpm exec kick --version

Or use npx without a global install:

bash
npx @forinda/kickjs-cli new my-api

For contributors (working on the KickJS monorepo) ​

Important

If you're contributing to KickJS, always link the local CLI instead of using the published npm version. The published version may not include your latest changes, which means scaffolding and generators could be out of sync with the framework.

Link your local build globally so kick always points to your dev version:

bash
# From the repo root — build first, then link
pnpm build
cd packages/cli
pnpm link --global

This makes kick behave like ng for Angular — it's globally available and always runs your local code. After making CLI changes:

bash
# Just rebuild — no need to re-link
pnpm build

The linked kick picks up changes immediately.

To check which version you're running:

bash
kick --version          # Shows the version
which kick              # Shows the linked path — should point to your repo

To unlink and switch back to the published version:

bash
pnpm uninstall -g @forinda/kickjs-cli
pnpm add -g @forinda/kickjs-cli

kick new ​

Create a new KickJS project:

bash
kick new my-app                          # Interactive prompts for everything
kick new my-app --yes                    # Pick all defaults (rest + inmemory)
kick new my-app --yes --template minimal # Minimal template, no prompts
kick new .                               # Scaffold in current directory
kick new my-app --pm pnpm                # Skip PM prompt only
kick new my-app -t rest --pm pnpm --no-git --install  # Fully scriptable

-y, --yes (alias --non-interactive) bypasses every prompt and picks safe defaults — usable in CI pipelines and one-liner shell scripts:

bash
# Single-flag fully non-interactive — no TTY required
kick new my-api --yes

--yes defaults:

SettingDefault value
Templaterest
Repositoryinmemory
Optional packagesnone
Git initenabled
Install depsenabled
Package managerresolved via kick add's chain (config → corepack packageManager → lockfile → npm)

Any explicit flag overrides the matching default — --yes --template minimal --repo postgres scaffolds a minimal project with a postgres custom-repository stub without prompts.

When run without --yes (and without specific flags), the CLI prompts for:

  1. Project template — REST, Minimal, or Fullstack (server + typed web app)
  2. Package manager — pnpm, npm, yarn, or bun
  3. Default repository — In-Memory or a custom DB name (e.g. postgres, mongo)
  4. Optional packages — swagger, ws, queue, devtools
  5. Git init — initialize a git repository with an initial commit
  6. Install deps — run the selected package manager's install command
FlagDescriptionDefault
-t, --template <type>Project template: rest, minimal, fullstackPrompted (or rest with --yes)
-r, --repo <name>Repository name: inmemory (default) or any DB name (e.g. postgres)Prompted (or inmemory with --yes)
-d, --directory <dir>Target directoryProject name
--pm <manager>Package manager: pnpm, npm, yarn, or bunPrompted (or auto-detected with --yes)
--packages <list>Comma-separated optional packagesPrompted (or none with --yes)
--git / --no-gitInitialize git repositoryPrompted (or true with --yes)
--install / --no-installInstall dependenciesPrompted (or true with --yes)
-f, --forceClear non-empty directory without promptingfalse
-y, --yes, --non-interactiveBypass every prompt with safe defaultsfalse

Templates ​

TemplateAdaptersPackages installed
rest (default)Swagger + DevToolskickjs, kickjs-vite, kickjs-swagger
minimalNonekickjs, kickjs-vite
fullstackNone (minimal API)server: kickjs, kickjs-vite · web: kickjs-client, React + Vite

fullstack scaffolds a pnpm workspace — server/ (KickJS API) + web/ (Vite + React typed against the API via the typed client); pnpm dev runs both.

Use . as the project name to scaffold in the current directory (the folder name becomes the project name).

The init alias also works: kick init my-app.

Non-empty directory safety: If the target directory already contains files, the CLI shows up to 5 existing entries and asks for confirmation before clearing them. Use --force to skip the prompt. Running with --yes without --force aborts cleanly when the directory is non-empty — the non-interactive flag never silently destroys existing work.

kick dev ​

Start the development server with Vite HMR:

bash
kick dev
kick dev -e src/main.ts
kick dev -p 4000
FlagDescriptionDefault
-e, --entry <file>Entry filesrc/index.ts
-p, --port <port>Port number3000 (or PORT env)
--pollingForce chokidar polling (Docker bind mounts / WSL / NFS where fs events get dropped)off
--typecheckRun the project's TypeScript checker after each change (see below)off

Changes to your source files are picked up instantly — database connections, WebSocket state, and port bindings survive reloads.

Errors surface on save ​

kick dev reports problems the moment a save lands, without waiting for a request:

  • Runtime/transform errors — a broken file (syntax error, failed import, bootstrap throw) prints [kickjs] app failed to reload after HMR invalidation: … with a fixed stacktrace.
  • Typegen failures — a scan or plugin pass that fails prints a deduplicated kick typegen: … — types in .kickjs/types may be stale warning (quiet on repeats of the same error; re-arms after a successful pass) and broadcasts a kickjs:typegen-error custom HMR event for DevTools/overlays.

--typecheck — dev-time type checking ​

Opt in via the flag or dev: { typecheck: true } in kick.config.ts. After each debounced change (and once at startup), kick dev runs the project's own checker — tsgo (@typescript/native-preview) preferred, tsc fallback — with --noEmit, timed after the typegen pass so diagnostics always see fresh .kickjs/types:

text
  kick typecheck (tsgo, 412ms):
    src/modules/users/users.controller.ts(14,9): error TS2322: …

A healthy project stays quiet; the first clean run after an error prints kick typecheck: clean again. In-flight checks are killed when a new save lands, and the full output rides the kickjs:typecheck HMR event.

kick dev:debug ​

Start the dev server with the Node.js debugger attached:

bash
kick dev:debug
kick dev:debug -p 4000

Same flags as kick dev. Opens a debug port so you can attach Chrome DevTools or your IDE's debugger.

kick typecheck ​

Type-check the project with its own checker, without spelling out the package manager:

bash
kick typecheck
kick typecheck --cwd server
kick typecheck --no-typegen

Routing this through kick is the point: pnpm -r exec tsc --noEmit and cd server && npx tsc --noEmit do the same job in two incompatible dialects. Same resolver kick dev --typecheck uses — vue-tsc first (plain tsc reports TS18003 on .vue), then tsgo, then tsc.

Typegen runs first. Otherwise the check reports errors from .kickjs/types describing routes that no longer exist — and the most confusing of them point at correct, current source:

text
src/modules/health/health.controller.ts(11,46): error TS2339: Property 'live'
  does not exist on type 'HealthController'

That method does exist; the stale KickRoutes namespace has no entry for it. A pre-commit hook or a fresh clone hits this every time, since neither has run the dev server — and a fresh clone has no generated types at all.

Pass --no-typegen when the caller has just run typegen itself. A typegen failure is reported and does not abort the check, so a typegen problem never masquerades as a type error.

kick build ​

Build the project for production using Vite:

pnpm exec kick build

Runs npx vite build. Configure output in your vite.config.ts.

kick start ​

Start the production server:

bash
kick start
kick start -e dist/main.js
kick start -p 8080
FlagDescriptionDefault
-e, --entry <file>Entry filedist/index.js
-p, --port <port>Port number3000 (or PORT env)

Sets NODE_ENV=production automatically.

kick check ​

Source scans that exit non-zero when they find something that will fail in production, so they fit a CI step.

pnpm exec kick check --deploy
pnpm exec kick check --di
FlagWhat it scans
--deployProduction readiness — weak JWT_SECRET, cors origin '*', missing rate limiting and helmet
--diA REQUEST-scoped dependency injected through the constructor of a SINGLETON (controllers included)

Both can be passed together.

--di — scope mismatches before the first request ​

A controller is always a SINGLETON. If its constructor injects something registered with Scope.REQUEST, the container refuses when it first builds the controller — which happens on the first request that reaches it, as a 500. Both scopes are written in your source, so --di reports the mismatch with its file and line instead:

text
src/modules/reception/reception.controller.ts:6 ReceptionController (SINGLETON) injects
REQUEST-scoped RECEPTION_REPOSITORY through its constructor — the first request that resolves
it answers 500. @Controller() is always SINGLETON, so inject RECEPTION_REPOSITORY with
@Autowired() instead of the constructor.

It reads scopes from @Service / @Repository / @Component / @Injectable({ scope }) and from container.register(token, …, scope) / registerFactory(token, …, scope). Constructor parameters resolve through @Inject(token), or through the parameter's class type when there is no @Inject.

The scan is conservative. It reports nothing it cannot pin down: a scope held in a variable, a name declared in more than one file, or a token registered under two different scopes. A finding is a request that will fail; a clean run is not proof that none will. Test files are skipped.

kick doctor ​

Pre-flight checks for your KickJS project's dev environment. Catches the common "doesn't work on my machine" misconfigs before they bite — missing decorator flags, env-wiring footguns, stale typegen, wrong Node version.

pnpm exec kick doctor

Sibling to kick check --deploy (which scans for production-readiness — JWT secrets, CORS, rate limits, etc.). Doctor is the dev-setup counterpart.

Sample output:

text
KickJS Doctor

✔  Node version  (v22.7.0)
✔  @forinda/kickjs installed  (^5.12.0)
✔  express installed  (^5.1.0)
✔  reflect-metadata installed  (^0.2.2)
✔  tsconfig: experimentalDecorators
✔  tsconfig: emitDecoratorMetadata
⚠  env wiring  (env-init imported AFTER bootstrap() — should be before)
   → Move the env import above the bootstrap() call so the schema
   → runs before any service reads from ConfigService.
✔  typegen freshness  (2m ago)

8 passed, 1 warning, 0 errors — review the warnings

Exit code is 0 on pass-or-warn, 1 on any error.

What it checks ​

CheckSeverity if failingDetects
Node versionerrorNode version below the framework's minimum (20+)
@forinda/kickjs installederrorWrong directory, or fresh repo without kick new
express installederrorRequired peer dep missing (@forinda/kickjs's peer)
reflect-metadata installederrorDecorator runtime polyfill missing
tsconfig: experimentalDecoratorserrorDecorators won't compile
tsconfig: emitDecoratorMetadataerrorDI container can't read constructor types
env wiringerror / warnenv-init file calls loadEnv(...) but the app entry doesn't import it (or imports it AFTER bootstrap())
typegen freshnesswarn.kickjs/types/ last touched > 60 minutes ago

The env-wiring check looks at multiple common locations — src/env.ts, src/env/index.ts, src/config/env.ts, src/config/index.ts — and accepts both relative and @/ aliased imports.

Extending with custom checks ​

Add your own checks via kick.config.ts. Adopter-supplied checks run after the built-ins and use the same DoctorContext / DoctorResult shape. The CLI exports defineDoctorExtension and defineDoctorCheck as identity helpers — they give you type inference and autocomplete without an explicit type annotation, mirroring the defineConfig pattern.

Inline — quickest path ​

ts
// kick.config.ts
import { existsSync } from 'node:fs'
import { join } from 'node:path'
import { defineConfig, defineDoctorExtension } from '@forinda/kickjs-cli'

export default defineConfig({
  doctor: defineDoctorExtension({
    checks: [
      // Project-specific: only emits a result when this project has migrations
      (ctx) => {
        if (!existsSync(join(ctx.cwd, 'migrations'))) return null
        const applied = join(ctx.cwd, '.migrations-applied')
        return existsSync(applied)
          ? { name: 'Migrations applied', status: 'pass' }
          : {
              name: 'Migrations applied',
              status: 'fail',
              fix: 'Run: kick db migrate',
            }
      },
    ],
  }),
})

Shared extension — published or workspace-shared ​

When you want the same extension across multiple projects in a monorepo (or want to publish it as a package), put the extension in its own module:

ts
// doctor-checks/migrations.ts
import { defineDoctorExtension } from '@forinda/kickjs-cli'
import { existsSync } from 'node:fs'
import { join } from 'node:path'

export const migrationsDoctor = defineDoctorExtension({
  checks: [
    (ctx) => {
      if (!existsSync(join(ctx.cwd, 'migrations'))) return null
      const applied = join(ctx.cwd, '.migrations-applied')
      return existsSync(applied)
        ? { name: 'Migrations applied', status: 'pass' }
        : {
            name: 'Migrations applied',
            status: 'fail',
            fix: 'Run: kick db migrate',
          }
    },
  ],
})
ts
// kick.config.ts
import { defineConfig } from '@forinda/kickjs-cli'
import { migrationsDoctor } from './doctor-checks/migrations'

export default defineConfig({
  doctor: migrationsDoctor,
})

Single-check helper ​

For one-off checks scattered across modules, defineDoctorCheck provides the same type-inference convenience:

ts
import { defineDoctorCheck } from '@forinda/kickjs-cli'

export const checkJwtSecretLength = defineDoctorCheck((ctx) => {
  const v = process.env.JWT_SECRET
  if (!v || v.length < 32) {
    return {
      name: 'JWT_SECRET ≥ 32 chars',
      status: 'warn',
      fix: 'Generate a strong secret: openssl rand -hex 32',
    }
  }
  return { name: 'JWT_SECRET ≥ 32 chars', status: 'pass' }
})

The framework stays ORM-agnostic on purpose — database- or ORM-specific checks belong in adopter config (or in adapter packages that ship doctor extensions), never in core.

kick info ​

Print system and framework information:

pnpm exec kick info

Output — the CLI's own version, plus every @forinda/kickjs* dependency the nearest project declares with the version actually installed in node_modules (declared range shown when not installed):

text
  KickJS CLI v8.0.0

  System:
    OS:       linux 6.x.x (x64)
    Node:     v22.x.x

  Packages:
    @forinda/kickjs          8.0.0
    @forinda/kickjs-cli      8.0.0
    @forinda/kickjs-db       8.0.0
    @forinda/kickjs-vite     8.0.0

A package the kick add catalog marks deprecated is flagged [DEPRECATED — see \kick add --list --all`]`. Nothing in the catalog carries that mark today.

kick --version / -V / -v print just the CLI version.

kick list ​

List the core KickJS packages every project ships with. Alias: kick ls. Pair with --all to dump the full optional catalog (which churns between releases — packages added, deprecated, removed — so the default view stays stable).

bash
kick list                 # core only
kick list --all           # full catalog
kick ls                   # alias

Default output (3 core packages):

  Core packages (always installed by `kick new`):

    kickjs           Unified framework: DI, decorators, routing, middleware (+ express)
    vite             Vite plugin: dev server, HMR, module discovery (+ vite)
    cli              CLI tool and code generators

  Plus N optional packages (swagger, db, queue, …).
  Run `kick list --all` for the full catalog.

kick list --all adds the Optional packages section beneath the core list — what's actually shipped in the kick add registry at this CLI version. Names there are stable, but membership rotates as the framework evolves, so we do not enumerate them in this guide.

kick add ​

Add KickJS packages with their required peer dependencies automatically resolved.

bash
kick add swagger          # installs @forinda/kickjs-swagger
kick add db ai            # installs multiple packages at once
kick add queue:bullmq     # installs queue package + bullmq + ioredis
kick add --list           # show core packages (alias: kick list)
kick add --list --all     # full optional catalog

auth, drizzle and prisma were removed from the catalog in v8 along with their packages — kick add auth now reports an unknown package. Replacements: BYO auth composed from context decorators, and @forinda/kickjs-db (kick add db / pg / sqlite / mysql) for the ORM adapters.

Core packages ​

kick add --list defaults to the three core packages every project always installs. The optional catalog moves between releases (packages added, deprecated, removed) so the live list lives behind --all:

text
  Core packages (always installed by `kick new`):

    kickjs           Unified framework: DI, decorators, routing, middleware (+ express) [express engine]
    vite             Vite plugin: dev server, HMR, module discovery (+ vite)
    cli              CLI tool and code generators

  Plus N optional packages (swagger, db, queue, …).
  Run `kick add --list --all` for the full catalog.

Engine peers follow your runtime ​

The HTTP engine is chosen at bootstrap({ runtime }), so which engine package a project needs is not a fixed dependency. kick add resolves it from your project's runtime — kick.config.ts's runtime field, or the engine already in package.json — and the listing names the engine it resolved:

RuntimeInstalled with @forinda/kickjs
expressexpress
fastifyfastify, @fastify/middie, serve-static
h3h3, serve-static

These match what kick new scaffolds for the same engine, so adding the framework to an existing Fastify project no longer pulls in Express. kick add upload resolves its multipart driver the same way.

Resolution order: --runtime <engine> → runtime in kick.config.ts → the engine in dependencies → the engine in devDependencies. A production dependency outranks a dev one, since that is what you deploy on.

If two engines sit at the same level and nothing settles it — Fastify and h3 both in dependencies, say — kick add stops rather than guessing:

text
  Cannot tell which HTTP engine this app boots on: found fastify, h3 in package.json.

  Installing engine peers for the wrong one is worse than not installing them, so:
    • set `runtime: '<engine>'` in kick.config.ts (permanent, also fixes kick doctor), or
    • pass --runtime <fastify|h3> for this command

Installing writes package.json and node_modules, so a wrong guess is work to undo — refusing costs one flag.

The framework runtime (@forinda/kickjs), the dev/build/HMR layer (@forinda/kickjs-vite), and the CLI (@forinda/kickjs-cli) are the only members of the core set. Everything else — auth, swagger, db, ws, queue, devtools, mcp, testing — is opt-in via kick add.

Package manager resolution ​

kick add picks the package manager from this chain (highest priority first):

  1. --pm flag
  2. packageManager field in kick.config.ts
  3. packageManager field in the nearest ancestor package.json (corepack)
  4. Nearest ancestor lockfile (pnpm-lock.yaml → yarn.lock → bun.lock → package-lock.json)
  5. npm fallback

The "nearest ancestor" climb means a workspace sub-package inherits the workspace root's pm, even when the sub-package's own package.json omits packageManager. Run kick add <pkg> from any directory under a pnpm workspace and it picks pnpm. The output prints the resolved source so the path is visible:

text
  Using pnpm (resolved from package.json)

Flags ​

FlagDescription
--pm <manager>Package manager override (auto-detected via the chain above)
-D, --devInstall as dev dependency
--listList packages (core only by default)
--allWhen paired with --list, include the full optional catalog

kick generate (kick g) ​

Generate code scaffolds. See the Generators page for full details.

bash
kick g --list            # List all available generators
kick g module user       # Structure depends on pattern in kick.config.ts
kick g module user --pattern rest  # Force flat REST structure
kick g scaffold Post title:string body:text:optional  # CRUD from fields
kick g controller auth
kick g service payment
kick g middleware logger
kick g guard admin
kick g adapter websocket
kick g dto create-user
kick g config
kick g agents -f                 # Refresh .agents/* + CLAUDE.md

kick g scaffold ​

Generate a full CRUD module from field definitions. Fields use name:type format. Append :optional for optional fields (shell-safe).

bash
kick g scaffold Post title:string body:text:optional published:boolean:optional
kick g scaffold User name:string email:email:optional role:enum:admin,user,guest

Field Types ​

TypeTypeScriptZodExample
stringstringz.string()title:string
textstringz.string()body:text
numbernumberz.number()price:number
intnumberz.number().int()age:int
floatnumberz.number()rating:float
booleanbooleanz.boolean()active:boolean
datestringz.string().datetime()createdAt:date
emailstringz.string().email()email:email
urlstringz.string().url()website:url
uuidstringz.string().uuid()externalId:uuid
jsonanyz.any()metadata:json
enum:a,b,c'a' | 'b' | 'c'z.enum(['a','b','c'])status:enum:draft,published

Scaffold Flags ​

FlagDescriptionDefault
--no-entitySkip entity + value object generationfalse
--no-testsSkip test file generationfalse
--no-pluralizeUse singular namesfrom config
--modules-dir <dir>Modules directorysrc/modules

Shell-safe optional syntax

Use name:type:optional instead of "name:type?" — the ? character is a shell glob in bash/zsh and needs quoting.

See Generators — kick g scaffold for full details.

kick g config ​

Generate a kick.config.ts at the project root. Useful for existing projects created before the CLI included this file.

bash
kick g config                        # Interactive — prompts if file exists
kick g config --force                # Overwrite without prompting
kick g config --modules-dir src/mods # Custom modules directory
kick g config --repo postgres        # Default repo name
FlagDescriptionDefault
-f, --forceOverwrite existing config without promptingfalse
--modules-dir <dir>Modules directory pathsrc/modules
--repo <name>Repository name: inmemory (default) or any DB name (e.g. postgres)inmemory

If kick.config.ts already exists, the CLI prompts for confirmation before overwriting.

kick g agents ​

Regenerate the AI-agent documentation from the latest CLI templates: .agents/AGENTS.md, .agents/GEMINI.md, .agents/COPILOT.md, one .agents/skills/<slug>/SKILL.md per skill, and CLAUDE.md at the project root. Use after a KickJS upgrade to pull in new conventions and gotchas without copy-pasting between projects.

bash
kick g agents                      # Everything (prompts before overwrite)
kick g agents -f                   # Everything, no prompt
kick g agents -f --only skills     # Just .agents/skills/<slug>/SKILL.md
kick g agents -f --only claude     # Just CLAUDE.md
kick g agents -f --only agents     # Just .agents/AGENTS.md
kick g agents -f --only gemini     # Just .agents/GEMINI.md
kick g agents -f --only copilot    # Just .agents/COPILOT.md
kick g agents -f --only both       # .agents/AGENTS.md + CLAUDE.md (skip skills)

Aliases: kick g agent-docs, kick g ai-docs. Auto-detects project name (from package.json), package manager (corepack packageManager field), and template (from kick.config.ts pattern).

FlagDescriptionDefault
--only <which>agents | claude | skills | gemini | copilot | both | allall
--name <name>Project name overridefrom package.json
--pm <pm>Package manager overridefrom package.json
--template <template>rest | minimal | fullstackfrom kick.config.ts
-f, --forceOverwrite without promptingfalse

See Generators — kick g agents for what each file contains and how to keep local customisations from being overwritten.

Custom Commands ​

Project-specific commands defined in kick.config.ts appear alongside built-in commands. See Custom Commands for project-local commands, or CLI Plugins for shipping commands, generators, and typegens as installable packages.

bash
kick db:migrate
kick db:seed
kick proto:gen

kick inspect ​

Inspect a running KickJS application and display diagnostic information including registered routes, middleware, adapters, and DI container state.

bash
kick inspect                      # Inspect localhost:3000
kick inspect http://localhost:4000  # Inspect a specific URL
kick inspect --port 4000          # Shorthand for custom port
kick inspect --watch              # Re-inspect on changes (live reload)
kick inspect --json               # Output as JSON
FlagDescriptionDefault
--port <port>Port of the running app to inspect3000
--watchContinuously re-inspect when the app reloadsfalse
--jsonOutput raw JSON instead of formatted tablesfalse

Example output:

  KickJS Inspector — http://localhost:3000

  Routes (12):
    GET     /health
    GET     /api/users
    POST    /api/users
    GET     /api/users/:id
    PUT     /api/users/:id
    DELETE  /api/users/:id
    GET     /api/posts
    WS      /chat             [WsAdapter]

  Adapters (2):
    WsAdapter          /chat
    DevToolsAdapter    /_debug

  Middleware (5):
    cors, helmet, csrf, rateLimit, session

  DI Container:
    Services:    8
    Controllers: 4

Port Configuration ​

Port resolution order:

  1. -p / --port CLI flag
  2. PORT environment variable
  3. port option in bootstrap() / ApplicationOptions
  4. Default: 3000

If the chosen port is in use, the server retries up to 3 times on consecutive ports (3001, 3002, etc.).

kick.config.ts Reference ​

The kick.config.ts file at your project root controls CLI behavior, generators, and build steps. Generate one with kick g config or create it manually.

ts
// kick.config.ts
import { defineConfig } from '@forinda/kickjs-cli'

export default defineConfig({
  pattern: 'rest',
  modules: {
    dir: 'src/modules',
    // repo is deprecated — the name no longer changes the generated code
    repo: { name: 'postgres' },
    pluralize: true,
    schemaDir: 'src/db/schema',
  },
  copyDirs: ['src/views', 'src/emails'],
  commands: [
    {
      name: 'db:migrate',
      description: 'Run database migrations',
      steps: 'kick db migrate',
    },
  ],
})

pattern ​

Controls the default generator behavior and project template style.

ValueDescription
'rest'Express + Swagger, flat module layout (default)
'minimal'Bare Express with no scaffolding (module + controller only)

(kick new additionally offers the fullstack workspace template — it scaffolds a rest/minimal-style server plus a typed web app; the pattern config above applies to the server side.)

copyDirs ​

Directories to copy into dist/ after kick build. Useful for template files, email templates, static assets, and any non-TypeScript resources that Vite does not bundle.

Each entry can be a simple string (copied to the same relative path under dist/) or an object with explicit source and destination:

ts
copyDirs: [
  'src/views', // copies to dist/src/views
  { src: 'src/views', dest: 'dist/views' }, // custom destination
  'src/emails', // copies to dist/src/emails
  'public/assets', // copies to dist/public/assets
]

If a source directory does not exist, the CLI logs a warning and skips it.

modules ​

Module generation settings — controls how kick g module produces code.

OptionTypeDefaultDescription
modules.dirstring'src/modules'Where generators place module files
modules.repostring | { name: string }'inmemory'Repository name. Built-in: 'inmemory' (working in-memory impl). Any other name (e.g. { name: 'postgres' }) scaffolds a generic custom-repository stub
modules.pluralizebooleantrueWhether to pluralize module folder and route names
modules.schemaDirstringundefinedSchema output directory (e.g. 'src/db/schema')

Other Options ​

OptionTypeDefaultDescription
pluginsKickCliPlugin[][]CLI plugins contributing commands, generators, and typegens (see CLI Plugins)
commandsKickCommandDefinition[][]Project-local custom CLI commands (see Custom Commands)
styleobjectauto-detectedCode style overrides (semicolons, quotes, trailingComma, indent)
Deprecated top-level aliases

modulesDir, defaultRepo, schemaDir, and pluralize are still accepted at the top level for backward compatibility but are deprecated. Use the modules block instead.

Error Handling ​

All commands show help text after errors (program.showHelpAfterError()). The CLI loads kick.config.ts at startup to register custom commands before parsing arguments.

Released under the MIT License. Built with TypeScript — runs on Express, Fastify, or h3.