Guide/guides

CLI Reference

Guren ships with two companion CLIs:

CLI Reference

Guren ships with two companion CLIs:

  • bunx guren for generating controllers, models, views, and running framework utilities inside an existing project.
  • bunx create-guren-app for scaffolding a brand-new application.

Basic Usage

# No global install required—run directly from the project root.
bunx guren --help

Commands follow a subcommand pattern such as bunx guren make:controller UserController.

High-Level Scaffolds

Use bunx guren add ... when you want the standard vNext path instead of low-level file generators:

bunx guren add auth
bunx guren add admin
bunx guren add resource posts --fields "title:string,body:text,published:boolean"
bunx guren add queue
bunx guren add mail
bunx guren add events
bunx guren add cache
bunx guren add notifications
bunx guren add storage
bunx guren add attachments
bunx guren add session
bunx guren add broadcasting
bunx guren add schedule
bunx guren add lint

Golden path: Start with bunx guren add auth and bunx guren add resource, then add more features as your app grows.

bunx guren plugin @acme/guren-plugin-audit

plugin (also available as add plugin) installs the package with bun add when missing (pass --no-install to skip), verifies the plugin's declared Guren compatibility (--ignore-compatibility to override), wires the provider into src/app.ts, and applies any config stubs and env keys the plugin declares in its gurenPlugin manifest. --force overwrites already-published files.

These commands patch src/app.ts, create the matching provider/runtime files, and keep the generated app aligned with the reference starter.

Apps scaffolded by create-guren-app 1.12 or later already carry this setup; add lint is for apps created before that. It is the one that touches no application code: it writes .oxlintrc.json (oxlint with the Guren rules from @guren/cli/oxlint: guren/await-async-assertion as an error, the guren/comment-* rules as warnings), adds lint and lint:fix scripts, and adds oxlint as a dev dependency on a tilde range (patch updates only: oxlint's JS plugin API is alpha); run bun install afterwards. bunx oxlint runs under Bun, so no Node install is needed.

bunx guren add admin scaffolds:

  • app/Http/Controllers/Admin/AdminDashboardController.ts
  • resources/js/pages/admin/Dashboard.tsx
  • routes/admin.ts (and auto-wires routes/web.ts when present)

The dashboard is authenticated by default: routes/admin.ts attaches requireAuthenticated({ redirectTo: '/login' }) to /admin, and the controller calls this.auth.userOrFail(). Unlike make:feature --public, which only affects mutating actions, --public here opens the whole dashboard:

bunx guren add admin --public

You can run add admin before add auth. The guard still holds — an app with no authentication configured has no signed-in user, so every request is redirected to /login, a route that only exists once you run bunx guren add auth. Add authentication first if you want a usable dashboard, or pass --public and add your own check later.

add admin needs a fullstack app. The dashboard is an Inertia page, so on an app scaffolded from the api blueprint — no @guren/inertia-client dependency and no web routes entry (routes/web.ts or routes/web.js) — the command refuses and writes nothing rather than scaffolding a controller that does not typecheck and a routes file nothing mounts. Scaffold an admin endpoint with make:controller instead, and register it in routes/api.ts.

add auth needs a fullstack app for the same reason, and refuses on the same two signals — as does make:auth, which reaches the same scaffold. Auth also patches db/schema.ts and generates a migration, so the refusal comes before all of that, not just before the first file: the app is left exactly as it was. For a token-based API, guard routes/api.ts with createBearerTokenMiddleware from @guren/core and issue tokens with createApiToken — see the API tokens guide.

add resource refuses on those same two signals, and for the same reason: it scaffolds React page components and a controller that returns Inertia responses. Its refusal likewise comes before the table it would otherwise append to your db/schema.ts. So does make:feature, which reaches the same scaffold directly. Scaffold a JSON controller with make:controller instead, and wire it into routes/api.ts.

make:controller reads the same two signals but adapts instead of refusing: on an app they identify as API-only, the generated controller returns JSON (this.json(...)) rather than an Inertia page, so it typechecks as written and can be wired into routes/api.ts as-is. Whenever the signals cannot confirm an API-only app, you get the usual Inertia template — installing @guren/inertia-client is enough to switch back.

make:view refuses on those signals like the scaffolds above, because a page has no JSON shape to adapt to and the app has no way to render one. guren codegen (which bun run dev runs for you) leaves such components out of .guren/pages.gen.ts rather than folding them in — that file imports the @guren/inertia-client an API-only app never installs — so the refusal is about saying so at the command that caused it, not about preventing a broken typecheck. Install @guren/inertia-client first when taking an API app fullstack, and the command works again.

add resource also needs the two files it patches to be there, whatever shape the rest of your app is: it appends its table to db/schema.ts and registers the CRUD routes in routes/web.ts, and unless those routes are registered already, routes/web.ts must export a route registrar it can patch. When one of those is missing, the command names it and writes nothing — rather than leaving a scaffold behind and a table appended for routes that were never registered. Use bunx guren make:feature instead if you want the files without the two patches; it prints the route block to paste and tells you which schema file to add the table to.

Core Commands

Command Description Example
key:generate Generate a new APP_KEY value. Use --write to save it to .env bunx guren key:generate --write
deploy Generate deployment recipe files for Docker/Fly.io/Railway/Vercel bunx guren deploy --target all --app my-app --port 3333
make:controller <Name> Generates a controller in app/Http/Controllers (returns JSON instead of an Inertia page on an API-only app) bunx guren make:controller PostController
make:model <Name> Generates a minimal model class and type definition in app/Models (imports camelCase(Name)s from db/schema) bunx guren make:model Post
make:view <path> Generates a React component in resources/js/pages (refuses on an API-only app) bunx guren make:view posts/Index
make:auth Scaffolds login/logout, registration, and password reset controllers, providers, views, migration, seeder, and routes (--minimal skips registration and password reset, --verify also scaffolds email verification, --oauth <providers> also scaffolds OAuth login buttons for the given comma-separated providers, --oauth-only drops password login entirely and makes those providers the only way in) bunx guren make:auth --oauth github,google
make:middleware <Name> Generates a middleware file in app/Http/Middleware bunx guren make:middleware Auth
make:policy <Name> Generates an authorization policy in app/Policies with owner-based defaults bunx guren make:policy Post
make:validator <Name> Generates Zod validation schemas (route params, list query, payload) in app/Http/Validators; --fields uses the same syntax as make:feature bunx guren make:validator Post --fields "title:string,body:text"
make:adr "<Title>" Records an architecture decision as a numbered file under docs/adr/ with linkable frontmatter; --entity <Model> prefills the entities:/related: links, --issue <ref> (comma-separated for several) the issues: link to a GitHub issue or PR bunx guren make:adr "Billing cycle is end-of-month" --entity Invoice --issue 412
make:seeder <Name> Generates a database seeder file bunx guren make:seeder UserSeeder
make:job <Name> Generates a queueable job class bunx guren make:job SendEmail
make:event <Name> Generates an event class bunx guren make:event UserRegistered
make:listener <Name> Generates an event listener class bunx guren make:listener SendWelcomeEmail
make:notification <Name> Generates a notification class bunx guren make:notification InvoicePaid
make:mail <Name> Generates a mailable class bunx guren make:mail WelcomeEmail
make:command <Name> Generates a console command in app/Console/Commands; --command <name> sets the invocation name. Register it in src/console.ts — see the console commands guide bunx guren make:command SendDigest --command reports:digest
make:agent <Name> Scaffolds a durable agent in app/Agents, registers it in config/agents.ts, adds the guren.arch.ts rule that keeps it off your models and ORM, and writes the config/env.ts and tsconfig types entry its class needs — see Durable Agents bunx guren make:agent Triager

Note: make:* commands avoid overwriting existing files. Use --force if you need to replace them.

Inspection & Audit Commands

Validate your app before shipping — these commands are also designed for AI coding agents (add --json for machine-readable output):

Command Description Example
check Validate integrity across routes, controllers, pages, and models — including whether every file in routes/ is actually reached from your entry registrar (and every file in a module's routes/ from that module's own registrar) — plus the durable-agent registry in config/agents.ts, doc links, spec-view freshness, architecture boundaries, and (for an app that declares a deploy plugin or the Lambda adapter) the deploy-runtime verdicts guren doctor reports, as advisory results bunx guren check --json
audit Security audit: missing input validation or authentication on mutating routes, raw SQL with interpolation, hardcoded credentials, disabled security defaults, mass-assignment configuration, sensitive columns not listed in hidden, emailed links built from the request host, CSRF exemptions declared by the app or by an installed package bunx guren audit --json
gate Every verification stage the scaffolded CI runs — codegen, typecheck, lint, check (the --ci rule), audit, tests — reported together; exits non-zero if any stage fails, and a stage that cannot run fails rather than skips bunx guren gate --changed
doctor Project health report (env, config, generated files) with actionable next steps bunx guren doctor --next
context [Entity] Project context map — or, with an entity name, everything about one model: table, relationships, routes with schemas, pages with Props, resource, policy, linked docs and issues (--module disambiguates, "app" = project root; --live asks gh for issue state, --repo owner/name overrides the origin remote) bunx guren context User --json
docs:graph The OKF docs relation graph: documents, entities, and code paths as nodes, verified relations as edges. --entity <Model> or --path <file> narrows to a neighborhood — ask "what governs this?" before renaming bunx guren docs:graph --path app/Http/Controllers/PostController.ts
spec:generate Regenerates the derived spec views in docs/spec/ (ER diagram, domain model, screens, module map) — see Spec-Anchored Development bunx guren spec:generate

audit exits with a non-zero status when it finds failures. Plain check is informational — its suite flags each exit non-zero on failures in that suite, and gate (below) is what the scaffolded CI workflow runs:

bunx guren audit
bunx guren check --arch    # architecture boundaries (guren.arch.ts + module rules)
bunx guren check --docs    # doc links: OKF frontmatter (type/entities/related) + body links + @docs tags
bunx guren check --spec    # docs/spec/ views match a fresh regeneration

Combining suite flags runs their union. --changed restricts any of them to files changed against the merge base with main — the fast path the agent-harness edit hook uses.

gate is the one command that answers "is this change done?". It runs codegen, typecheck, lint (when the app has an .oxlintrc.json), check under the --ci rule, audit, and the test suite — the stages the scaffolded CI workflow runs — reports every stage, and exits non-zero if any failed. A stage that cannot run is a failure, not a skip: an .oxlintrc.json with no oxlint installed, a missing typecheck script, a routes entry that will not load. Only an app with no .oxlintrc.json skips lint.

bunx guren gate            # every stage, in full
bunx guren gate --changed  # check and lint on changed files only; typecheck, audit, tests still in full
bunx guren gate --deps     # add the dependency scan to the audit stage
bunx guren gate --json     # the per-stage report, for tools

The scaffolded .github/workflows/ci.yml is one bunx guren gate --deps step, so a change that passes the gate locally passes CI. The Claude Code harness runs it from a Stop hook (see AI Agent Harness), the MCP server exposes it as guren_gate, and AGENTS.md tells other agents to run it before declaring a change done.

Routes wrapped in named middleware (for example router.middleware('auth').group(...)) are recognized as protected. Guest flows such as /login and /register are excluded from authentication checks.

Agent-exposed routes

Routes that declare .agent() metadata (see Routing) are checked by check and treated more strictly by audit. The rules run in the normal check suite and are content-activated: an app with no agent routes contributes no findings, and no controller is scanned.

check fails on:

Finding key Rule
agent-route-name:* The route declares agent metadata but has no .name(). The tool name is the tool's identity, so a nameless route cannot become a tool.
agent-route-tool-name:* The tool name (agent.toolName, or the route name) falls outside the MCP grammar ^[A-Za-z0-9._-]{1,128}$. A client rejects the whole tool list, not just the one tool.
agent-route-reserved-name:* The tool name is reserved by the framework — guren.preflight is a meta-tool the MCP endpoint adds itself. A route claiming it is not exposed at all.
agent-route-duplicate:* Two or more routes resolve to the same tool name.
agent-route-authorization:* A non-read-only tool whose middleware chain carries no authorization capability and whose controller action never calls this.authorize(...). Authentication is not authorization: this.auth.userOrFail() or an API-token check satisfies neither, and produces its own message saying so.

check warns on:

Finding key Rule
agent-route-output:* The route declares neither an output schema nor a resource hint, so a tool derived from it advertises no output shape. Applies to write tools as much as read tools.
agent-route-inertia:* The action answers with this.inertia(...) and declares no output shape — such a tool returns whatever the page happens to pass its component. Replaces the finding above for that route.
agent-route-input:* A body-carrying route with no body schema, so the derived input schema is built from the path and query alone. On an inline handler that schema is also what validates at request time, so nothing checks the payload either.
agent-route-annotation:* The tool is read-only but its action deletes, updates, or force-writes records — either an explicit readOnlyHint: true on a mutating verb, or a GET/QUERY route, which is read-only by default. Read-only is what exempts a route from the authorization rule, so it is checked against the action.
agent-route-authorization:* The verdict could not be reached: the handler is an inline function, or the controller action is not among the sources the check reads.
agent-route-controller-collision:* Two controller classes share a name and an agent route uses one of them, so a verdict drawn from a controller body may describe the other class.
agent-route-controller-unreadable:* A controller file could not be read at all, so any agent route whose action lives there was checked against no body.
route-graph The routes file failed to load, so neither the route-contract nor the agent-route checks ran.

audit adds two rules for the same routes:

  • A body-validation finding that is a warning for an ordinary route becomes a failure when the route is agent-exposed, under the same validation:* key — so an existing config/audit.ts entry keeps applying.
  • agent-annotation:* warns when destructiveHint: false is declared on an action that deletes, updates, or force-writes records, and also when that claim could not be checked because the action body was unreadable.
  • controller-unreadable:* warns when a controller file could not be read, since every rule above saw no body for the actions it declares.

Suppress a false positive by placing // guren-audit-ignore on the flagged line or the line above it:

// guren-audit-ignore -- documented example value
const apiKey = 'example-not-a-real-key'

Route- and model-level findings (authz:*, validation:*, agent-annotation:*, mass-assignment:*, hidden-columns:*) have no single line to attach a comment to — they come from executing your route registrar and inspecting your models. Ignore those with config/audit.ts instead, keyed by the finding's key (copy it straight from --json output) and a required reason:

// config/audit.ts
export default {
  ignore: [
    { key: 'authz:POST /webhooks/stripe', reason: 'HMAC signature verified in the controller' },
  ],
}

Ignored findings stay in the report with status: "ignored" and an ignoreReason — nothing is silently dropped. An entry with a missing key/reason, or one that never matches a finding, produces its own warning so stale rules don't rot unnoticed.

config/audit.ts only accepts findings that have no source line — the route- and model-level ones above. Line-scoped findings (hardcoded secrets, raw SQL, disabled security toggles) already have // guren-audit-ignore for that; an entry targeting one is rejected with a warning pointing you back to the inline comment, rather than becoming a second, less visible way to silence them.

Architecture boundaries

Drop a guren.arch.ts file at your project root and guren check starts enforcing it — no flag required:

// guren.arch.ts
import { defineArchRules } from '@guren/cli/arch'

export default defineArchRules({
  layers: {
    domain: 'app/Domain/**',
    http: 'app/Http/**',
  },
  rules: [
    // Domain logic must not depend on the HTTP layer.
    { from: 'domain', disallow: ['http'] },
    // Controllers should query through Models, not the ORM directly.
    { from: 'http', disallowPackages: ['drizzle-orm'] },
  ],
})

Each rule's from and disallow accept either a layer name declared above or an inline glob. Add severity: 'warn' while rolling out a new boundary on an existing codebase, then drop it (defaulting to 'fail') once violations reach zero.

Rules analyse runtime dependencies. Type-only imports (import type { X } from '...', export type { X } from '...', and import('...').X in a type position) compile away, so they are skipped by default — sharing a DTO or a props interface across layers is usually fine. For a boundary that should hold at the type level too, set includeTypeImports: true on the rule (or once on the whole set; a rule's own setting wins):

rules: [
  // Even a type dependency on the query layer is one refactor away from a runtime one.
  { from: 'frontend', disallow: ['queries'], includeTypeImports: true },
]

includeTypeImports covers the rules you declare in guren.arch.ts. The zero-config module boundary rules that activate for a modules/ directory take no options and always analyse runtime imports only.

Two flags make this practical for AI coding agents and large apps:

bunx guren check --arch      # architecture checks only — fast path for an edit hook
bunx guren check --changed   # restrict checks to files changed vs. the merge base with main

An import Guren can't resolve to a project file is reported as a warning, never a failure — an unresolved path shouldn't block your build.

Application Modules

As an app grows past a couple dozen routes, guren make:module gives you a self-contained slice of the app instead of piling everything into one flat app/, routes/, and db/schema.ts:

bunx guren make:module Billing

This scaffolds modules/billing/{index.ts, routes.ts, db/schema.ts} and wires it in automatically: db/schema.ts gets export * from '../modules/billing/db/schema', and src/app.ts gets billingModule imported and added to createApp({ modules: [...] }).

Most make:* commands accept --module <name> to scaffold inside a module instead of the project root:

bunx guren make:controller Invoice --module billing   # modules/billing/app/Http/Controllers/InvoiceController.ts
bunx guren make:model Invoice --module billing        # modules/billing/app/Models/Invoice.ts

guren check, guren audit, guren context, model:list, and doctor all scan modules/*/ automatically — no extra configuration needed. Two exceptions: make:auth (authentication is an app-wide concern, not a per-module one) and make:migration (drizzle-kit driven; migrations are generated from whichever schema paths drizzle.config.ts points at, module or not).

A module's public API is its index.ts — the defineModule() descriptor it exports — plus db/schema.ts for table definitions shared across modules. Once a modules/ directory exists, guren check enforces this automatically, with no guren.arch.ts required: a file inside one module reaching into another module's internals (anything other than its index.ts or db/schema.ts) is a failure, and so is top-level app code doing the same.

// modules/billing/index.ts
import { defineModule } from '@guren/core'
import { registerBillingRoutes } from './routes'

export const billingModule = defineModule({
  name: 'billing',
  prefix: '/billing',            // optional URL prefix for every route the registrar declares
  routes: registerBillingRoutes,
  providers: [BillingServiceProvider],  // optional — appended to the app's provider list
})

Inertia pages are not colocated inside modules/<name>/ — they stay under the top-level resources/js/pages/, namespaced by module name instead (resources/js/pages/billing/Invoices/Index.tsx). make:feature Invoice --module billing follows this convention automatically.

AI Agent Harness

Apps scaffolded with create-guren-app include an AI agent harness out of the box. The scaffolder asks which coding agents you use — Claude Code, Codex, Cursor, GitHub Copilot, OpenCode — and installs the files each one reads natively (answer non-interactively with --agents codex,cursor, or skip the harness with --agents none).

What each selection writes:

  • Claude Code: a CLAUDE.md project guide, verified API rules, skills, and subagents under .claude/, an .mcp.json pointing at the dev server's MCP endpoint (the scaffolded dev script enables it via GUREN_MCP=1), and hooks that close the feedback loop — the guren context project map loads at session start, guren check re-runs automatically after edits to routes, controllers, models, schema, or pages, reporting failures straight back to the coding agent, and guren gate runs from a Stop hook when a turn ends with uncommitted changes, blocking the stop once with the findings of any failing stage so the fix lands in the same turn rather than in CI.
  • Codex, Cursor, GitHub Copilot, OpenCode: an AGENTS.md project guide plus the same rules and skills under .agents/rules/ and .agents/skills/ (skills follow the cross-agent SKILL.md standard). Cursor additionally gets the rules in its native format (.cursor/rules/guren-*.mdc), Copilot as path-scoped instructions (.github/instructions/guren-*.instructions.md), and Codex a command-approval allowlist for the harness's own commands (.codex/rules/guren.rules). MCP client configs land where each tool looks: .codex/config.toml, .cursor/mcp.json, .vscode/mcp.json, or the mcp entry in opencode.json. Cursor and Codex also get the guren gate stop hook (.cursor/hooks.json + .cursor/hooks/gate-on-stop.ts, .codex/hooks.json + .codex/hooks/gate-on-stop.ts): when a turn ends with uncommitted changes and a stage fails, Cursor receives the findings as an automatic follow-up message (bounded by loop_limit) and Codex blocks the stop once with them (Codex runs a project hook only after you trust it once with /hooks), the same loop Claude Code gets. The hooks gate the app they are installed in, so a monorepo app is gated on its own tree; Cursor reads .cursor/hooks.json from the workspace root, so open the app as its own workspace. Cursor can also load .claude/settings.json hooks when its third-party setting is on; the Claude hook steps aside there so the gate runs once. Copilot and OpenCode have no turn-end hook that can feed output back, and none of these agents run the edit hook, so AGENTS.md instructs them to run guren context at session start, guren check after edits, and guren gate before declaring a change done.

Before you have an app: install the Guren skills from a catalog

The harness above lives inside an app's @guren/cli, so it only exists once an app does. For the step before that — an agent that has never seen Guren, in a directory with nothing in it — Guren publishes two on-ramp skills to the agent catalogs from gurenjs/agent-skills:

# Claude Code
claude plugin marketplace add gurenjs/agent-skills
claude plugin install guren@gurenjs --scope user

# Cursor, Codex, Copilot, OpenCode, Gemini CLI and others (Agent Skills CLI)
npx skills add gurenjs/agent-skills

Install it at user scope: these skills are for the step before a project exists, and they are the same two skills whatever you are building — project scope would write them into whichever repository you happened to be standing in, and share an on-ramp with collaborators of an app that already has the harness. The plugin also conforms to Agent Plugins v1, so any client that reads a root plugin.json can install it from that repository directly. It ships guren-new-app (explains Guren, scaffolds an app with bunx create-guren-app, hands off) and guren-harness (runs bunx guren agent:init --target <agents> and explains the guren context → edit → guren checkguren audit loop). It deliberately does not copy the harness's rules or skills: those are installed by the app's own CLI and stay version-matched to it. The repository is generated from packages/cli/templates/agent-catalog/ on each release; send changes there, not to gurenjs/agent-skills.

Command Description Example
agent:init Install the agent harness for the selected agents into an existing app (skips files that already exist; --force overwrites) bunx guren agent:init --target codex,cursor
agent:sync Refresh framework-managed files (rules, skills, subagents, hooks) for every agent detected on disk bunx guren agent:sync

agent:init --target accepts claude (the default), codex, cursor, copilot, opencode, and all. agent:sync never overwrites user-owned files — CLAUDE.md, AGENTS.md, .claude/settings.json, and the MCP client configs — so your customizations survive framework updates (a user-owned file you deleted is recreated). When an MCP config already exists, agent:init leaves it alone and prints the snippet to merge by hand.

Framework-managed files (rules, skills, subagents, hooks) are overwritten by agent:sync — that is its job — so keep project-specific rules in files of your own instead of appending to the shipped ones. The sync makes every overwrite visible: files that already match the latest version are skipped, and any file that held different contents is called out as replaced. Run agent:sync --dry-run first to see what a sync would write, replace, or prune without changing anything — agent:init accepts --dry-run too, as the preview for --force.

When a framework rule or skill is renamed or removed in a release, the old copies stay behind in every root that received them — and Cursor and Copilot keep auto-loading stale .cursor/rules/guren-*.mdc / .github/instructions/guren-*.instructions.md files. agent:sync lists any files in the framework-managed locations that are no longer part of the harness; agent:sync --prune deletes them. Everything is claimed by name: the rules roots (.claude/rules/, .agents/rules/) only for the rule filenames the harness ships or used to ship, the native rules only for the guren- prefix, and the skills roots (.claude/skills/, .agents/skills/) only for the skill directories the harness ships or used to ship. So a rules file of your own next to the shipped ones (in a subdirectory too), or a skill you added yourself (or one npx skills add and Agent Plugins clients install into those same directories), is never listed and never deleted — as long as its name is not one the harness itself ships: dev-workflow, db-manage, scaffold, feature, guren-api, plugin-authoring, agent-interface, github-projects for skills, the rule filenames listed in your entry document for rules (compared ignoring case), and any guren-prefixed file for Cursor and Copilot, where the claim is the prefix rather than a list of names. Keep your own Cursor/Copilot rules under a different prefix, and review the report before --prune: a file of your own under a claimed name is the one case it removes.

Deployment Recipes

Generate deployment config files directly from the CLI:

# Dockerfile only
bunx guren deploy

# Fly.io (Dockerfile + fly.toml)
bunx guren deploy --target fly --app my-app

# Railway (Dockerfile + railway.json)
bunx guren deploy --target railway

# Vercel (vercel.json)
bunx guren deploy --target vercel

# Generate all recipes at once with a custom port
bunx guren deploy --target all --app my-app --port 4000

Supported targets are docker, fly, railway, vercel, and all.

Vercel and Bun Vercel supports deploying Bun applications. For Bun projects consider either:

  • Using vercel.json with Bun commands (recommended for simple apps):

    {
      "installCommand": "bun install",
      "buildCommand": "NODE_ENV=production bun run build",
      "devCommand": "bun run dev"
    }
  • Deploying a Docker image (recommended when you need exact Bun version, native dependencies, or long-running processes).

Recommendation: If your app relies on a specific Bun version or needs long-lived processes, prefer Docker deployment for reproducibility. The generated vercel.json is a starting point; adjust commands, routes, and runtime strategy to your project.

OpenAPI Commands

Command Description Example
openapi:generate Generate an OpenAPI 3.1 document from route definitions bunx guren openapi:generate

Requires the optional @guren/openapi package (bun add @guren/openapi).

openapi:generate Options

# Generate with defaults (reads routes/web.ts, writes .guren/openapi.gen.json)
bunx guren openapi:generate

# Custom title, version, and description
bunx guren openapi:generate --title "Blog API" --version "1.0.0" --description "My blog"

# Custom routes file and output path
bunx guren openapi:generate --routes routes/api.ts --out docs/openapi.json

# Include a server URL
bunx guren openapi:generate --server "https://api.example.com"

# Overwrite existing file
bunx guren openapi:generate --force
Flag Default Description
--routes routes/web.ts Path to the route registration file
--out .guren/openapi.gen.json Output path for the generated document
--title package.json name or "Guren API" OpenAPI document title
--version package.json version or "1.0.0" OpenAPI document version
--description package.json description OpenAPI document description
--server Server URL to include
--app Current directory Application root directory
--force false Overwrite existing files

The command extracts Zod schemas and OpenAPI metadata (summary, description, tags, operationId, deprecated) from route contracts and produces an OpenAPI 3.1 JSON document. See Routing — OpenAPI for details on annotating routes.

Route Commands

Command Description Example
route:list List all registered routes bunx guren route:list

route:list Options

Display all application routes with filtering and sorting capabilities:

# List all routes
bunx guren route:list

# Filter by HTTP method
bunx guren route:list --method GET

# Filter by path pattern
bunx guren route:list --path users

# Filter by route name
bunx guren route:list --name admin

# Sort routes
bunx guren route:list --sort path
bunx guren route:list --sort method
bunx guren route:list --sort name

# Reverse sort order
bunx guren route:list --sort path --reverse

# Output formats
bunx guren route:list --format table   # Default table format
bunx guren route:list --format json    # JSON output
bunx guren route:list --format compact # Compact single-line format

Agent Tool Commands

Routes that declare .agent() metadata are exposed to AI agents as MCP tools (see Routing — Agent tools). These commands report what an agent would see, derived live from your route graph — not read from .guren/agents.gen.ts, so they answer correctly even when that manifest is missing or stale.

Command Description Example
tool:list List the agent tools this application exposes bunx guren tool:list
tool:inspect Show one tool's full derivation bunx guren tool:inspect posts.store
tool:call Invoke one tool the way an agent would bunx guren tool:call posts.index
tool:dev Serve the tools locally with a throwaway token bunx guren tool:dev
tool:log Read the agent audit trail bunx guren tool:log --tail
# Every exposed tool, with its method, path, protocol exposure,
# authorization ability and MCP annotation hints
bunx guren tool:list

# The raw derivation, including any warnings
bunx guren tool:list --json

# One tool: input fields, output schema, authorization,
# annotations, approval and redaction
bunx guren tool:inspect posts.store
bunx guren tool:inspect posts.store --json

# Run the app's MCP endpoint locally with a token that lasts only as long
# as the command, and print the MCP Inspector invocation for it
bunx guren tool:dev
bunx guren tool:dev --as 42 --port 4000

tool:list and tool:inspect options:

Option Default Description
--routes The app's routes entry: routes/web.ts, else routes/api.ts — the same probe check and audit use Path to the routes entry file
--app Current directory Application root directory
--json false Output the derived tools as JSON

tool:call goes one step further and actually invokes a tool, through the same dispatch contract an MCP client's call goes through. It boots the application, so its tools come from the graph the running app serves — which is why it takes no --routes.

# Call a tool with arguments
bunx guren tool:call posts.store --input '{"title":"Hello agents"}'

# Rehearse it: run the middleware and validate the contract, stop before the handler
bunx guren tool:call posts.store --input '{"title":"Hello"}' --preflight

# Call as a user, and read the result as JSON
bunx guren tool:call posts.index --as user:42 --json
Option Default Description
--input {} Tool arguments as a JSON object
--as (unauthenticated) Authenticate as a user (user:42). Development only: sets GUREN_TESTING=1 for the process, so the app accepts an injected user instead of a real credential
--preflight false Ask for a verdict instead of an execution — the handler does not run
--app Current directory Application root directory
--json false Output the call result as JSON

The command exits non-zero when the call comes back as an error result, so a 422 or a 403 is not read as a success by a script. See Agent Interface — Calling a tool yourself.

If the application it boots has an audit trail configured, the call is recorded in it as surface: 'cli' — the same file, the same masking, alongside the MCP records. A call from here runs as whoever --as names, with nothing verified, so it is worth being able to see later. An application with no trail configured records nothing and the call is unaffected.

tool:dev serves the application's own endpoint — it requires @guren/plugin-mcp to be installed and registered, and says so if no endpoint answers. The token it issues lives in memory for that process only: nothing is written to your app's token store, and stopping the command revokes it. It refuses to run with NODE_ENV=production.

Option Default Description
--as a placeholder id User ID tool calls authenticate as. The default matches no record, so listing tools works while a call whose policy loads a user fails visibly
--path /mcp Endpoint path, when the plugin is mounted elsewhere
--port 3333 Port to listen on (0 picks a free one)
--host 127.0.0.1 Hostname to bind
--app Current directory Application root directory

rule

The printed token grants tools:*. The default bind is loopback, so it stays on your machine; --host 0.0.0.0 makes the endpoint — and that token — reachable from your network for as long as the command runs.

tool:log reads the audit trail back. Unlike its neighbours it boots nothing — an audit trail has to be readable when the application it records is not startable.

# The last 50 records
bunx guren tool:log

# Follow, including the rollover into tomorrow's file
bunx guren tool:log --tail

# Only denials, only this tool, only the last two hours
bunx guren tool:log --denied
bunx guren tool:log --tool posts.store --since 2h -n 200

# Raw records, one per line, for piping
bunx guren tool:log --json | jq 'select(.status >= 400)'
Option Default Description
--file storage/logs/agent-audit.log Base path of the trail; dated files sit beside it
--tail, -f false Follow the trail as records arrive, across the midnight rollover
--tool (all tools) Only records for this tool
--surface (all surfaces) Only mcp, dev-mcp, cli, webmcp, or durable
--denied false Only denials
--since (no cutoff) Only records newer than a duration such as 30m, 2h, 7d
-n 50 How many records to show
--app Current directory Application root directory
--json false Output one raw record per line, for piping

-n applies after filtering, so --denied -n 50 is the last fifty denials rather than the denials among the last fifty records. Records only exist once a sink is configured — the trail is opt-in, and the command prints the configuration line to add when it finds none. See Agent Interface — The audit trail.

Everything shown is derived from contracts the route already carries: the input schema merges its params, query and body schemas, the output schema comes from output, and the authorization ability comes from the policy its middleware chain checks. Nothing is declared twice, so a tool cannot advertise a schema the endpoint does not validate.

bunx guren codegen writes the same derivation to .guren/agents.gen.ts for apps that expose at least one tool, and removes that file for apps that expose none.

Config Commands

Command Description Example
config:cache Cache all configuration files bunx guren config:cache
config:clear Clear the configuration cache bunx guren config:clear
config:show Display configuration cache info bunx guren config:show

Configuration Caching

Cache your configuration files for improved performance in production:

# Cache all configuration
bunx guren config:cache

# Clear the cache
bunx guren config:clear

# View cache info
bunx guren config:show

The cache is stored in bootstrap/cache/config.json. Configuration files are loaded from the config/ directory (including nested subdirectories).

Note: After modifying configuration files, run config:cache again to update the cache.

Database Commands

Command Description Example
db:migrate Run pending database migrations bunx guren db:migrate
db:rollback Rollback the last migration batch bunx guren db:rollback
db:reset Drop all tables and re-run migrations bunx guren db:reset
db:seed Run database seeders bunx guren db:seed

db:migrate Options

# Run migrations
bunx guren db:migrate

# Force migrations in production
bunx guren db:migrate --force

# Specify migration path
bunx guren db:migrate --path db/migrations

db:rollback Options

# Rollback last batch
bunx guren db:rollback

# Rollback specific number of steps
bunx guren db:rollback --step 3

# Rollback all migrations
bunx guren db:rollback --all

db:seed Options

db:seed runs every seeder in the folder config/database.ts configures as seedersFolder (db/seeders in a scaffolded app), in filename order. There is no option to run a single seeder — prefix the filenames (001_, 002_, …) when the order matters.

# Run all seeders
bunx guren db:seed

# Force seeding in production
bunx guren db:seed --force

# Show what would happen without executing
bunx guren db:seed --dry-run

# Emit the run summary as JSON
bunx guren db:seed --json

note

--json covers the command's own summary. Seeder stdout is not suppressed — the make:seeder template logs a line per seeder — so silence those before piping to jq.

Queue Commands

Command Description Example
queue:work Start processing queued jobs bunx guren queue:work

queue:work Options

# Process jobs from default queue
bunx guren queue:work

# Process specific queue
bunx guren queue:work --queue emails

# Limit number of jobs
bunx guren queue:work --max-jobs 100

# Stop when queue is empty
bunx guren queue:work --stop-when-empty

Shared Options

These options behave consistently across every make:* and add command:

  • --force / -f: Overwrite files even if they already exist.
  • --dry-run: Show what would be generated without writing files (planned).
  • --cwd <path>: Execute the command against a specific workspace (defaults to the current directory).

Template Details

Generated files match the Laravel-inspired ergonomics of the framework:

  • Controllers extend Controller and use helpers like this.inertia().
  • Models extend Model<TRecord> and prefill static table. Use the helpers for quick CRUD, or call Drizzle’s RQB directly. Model.query(db) lets you start from the model while still writing Drizzle-flavoured queries.
  • Views are React + TypeScript + Tailwind CSS functional components.

After generation remember to wire up routes and connect static table to the proper Drizzle schema. Complex queries can skip the model entirely—use your Drizzle database (getDatabase()) or Model.query() to stay type-safe.

Scaffolding New Apps

Use the dedicated bootstrapper when starting from scratch:

bunx create-guren-app my-app

The CLI copies the default template, updates metadata, and prompts for a rendering mode. Choose SSR (default) to keep server-side rendering enabled via autoConfigureInertiaAssets, or pick SPA to disable SSR. Skip the prompt with --mode ssr or --mode spa, and overwrite a non-empty directory with --force.

Troubleshooting

  • command not found: bunx: Your Bun version may be outdated. Upgrade to 1.1 or later.
  • Error: Port already in use: The development server (default port 3333) is occupied. Update PORT in .env and restart.
  • Database connection failed: Make sure your Postgres instance is reachable and that .env points to postgres://guren:guren@localhost:54322/guren.

Interactive REPL

Launch the framework-aware console with:

bunx guren console

This is an interactive REPL, not your application's commands. To run those, use bun run console <command> — see the console commands guide.

The command boots your application (honouring src/main.ts and registered providers), then drops into a prompt preloaded with useful globals—app, auth, discovered models, database helpers, and utilities from @guren/testing. Use :help to explore console shortcuts, or :editor when you need a multiline buffer.

Typical workflow

  1. Launchbunx guren console from your project root.
  2. Execute code – Issue ad-hoc queries or inspect services already registered during bootstrap scripts such as src/main.ts. Because the REPL shares scope across commands (and auto-registers models), you can run statements like await Post.all() directly without re-importing classes.
  3. Reset state – Exit with Ctrl+D (or .exit) and relaunch the console when you need a clean slate.

Tips

  • Press Ctrl+D (or type .exit) to leave the REPL.
  • reloadModels() refreshes the discovered model list if you add a new class while the console is running.
  • :load path/to/script.ts executes the contents of a file inside the current session.
  • Need the plain Bun REPL? Run bun repl for a minimal prompt or bun repl --inspect to pair with DevTools.

These patterns deliver the same iterative mode of operation you’d expect from a future guren repl, without waiting for a dedicated CLI wrapper.