cratestack-cli
Command-line tool for .cstack schema validation and client/Studio code generation.
Installation
Prebuilt binaries (macOS x64/arm64, Linux x64/arm64, Windows x64) are attached to every GitHub Release — no Rust toolchain required.
Via cargo-binstall:
Via npm (downloads the matching platform binary from GitHub Releases on install):
# or run without installing:
From source, with a Rust toolchain:
Or from the workspace:
Commands
check — validate a schema
Flags:
--schema <PATH>— path to the.cstackfile (required)--format <human|json>— output format (defaulthuman)
On success the human formatter writes schema OK: <path>; the JSON formatter prints a { ok: true, ... } document. On error the human formatter renders a diagnostic and exits non-zero; the JSON formatter prints { ok: false, diagnostics: [...] } and exits 1.
generate-dart — Dart package
Flags:
--schema <PATH>(required)--out <PATH>(required)--library-name <NAME>(defaultcratestack_client)--base-path <PATH>(default/api)--template-dir <PATH>(optional)--check(drift-detection mode — see below)--preset <default|riverpod>(defaultdefault) —defaultis today's monolithiclib/src/models.dart/lib/src/apis.dartlayout.riverpodemits one file per model underlib/src/models/, a shared file for cross-model types, procedures in their own file, and package-wide DI providers inlib/src/client.dart.--run-build-runner— after generation, shell out todart run build_runner build --delete-conflicting-outputsin--outso a--preset riverpodpackage's@riverpodannotations are actually expanded (the generated Dart doesn't compile/analyze untilbuild_runnerruns). Off by default. No effect together with--check. Requires a Dart SDK onPATH.
generate-typescript (alias generate-ts)
Flags:
--schema <PATH>(required)--out <PATH>(required)--package-name <NAME>(defaultcratestack-client)--base-path <PATH>(default/api)--template-dir <PATH>(optional)--check(drift-detection mode — see below)--full-selection(emit fully-required model interfaces, driven by the schema's own nullability, instead of the projection-driven optional-everywhere default — for consumers that never do partialfields/includeselection)--preset <default|swr>(defaultdefault) —defaultis today's monolithic layout (src/models.ts,src/client.ts, ...).swremits onesrc/models/<model>.tsper model (types + plain framework-free async functions) plussrc/procedures.ts, the structural foundation for SWR hooks.swrdoes not supporttransport grpcschemas yet.
--check — drift detection (CI guard)
Both generate-dart and generate-typescript accept --check: instead of writing
to --out, the command generates in memory and diffs the result file-by-file
against what's already on disk. It exits 0 if they match, and non-zero with a
list of drifted files (modified, missing, or unexpected) otherwise. No files
under --out are written or modified in --check mode.
Use this in CI to catch a schema change that nobody regenerated the client for, or a hand-edit to committed generated code.
generate-proto — .proto file + field-number lockfile
Emits a .proto file describing the schema's messages/enums (no service
block — that needs a transport grpc schema) plus its sibling field-number
lockfile (<schema>.pb.lock) so wire numbers don't silently renumber across
schema edits.
Flags:
--schema <PATH>(required)--out <PATH>(required)--package <NAME>— protobuf package name. Required on first run (no existing.pb.lock); on later runs, must match what's already locked or be omitted.--check(drift-detection mode: rebuild the lock and.prototext in memory and compare against what's on disk instead of writing)
studio — admin and testing surface
Replaces the old generate-studio codegen scaffold. The studio reads a
workspace file (studio.toml) listing one or more .cstack schemas plus
their DB and/or API targets, then serves a single binary.
Subcommand flags:
init:--out <DIR>(default.),--forceto overwrite an existingstudio.tomlrun:--config <PATH>(defaultstudio.toml),--bind <ADDR>(default127.0.0.1:7878)eject:--out <DIR>(required),--name <NAME>(project name written into the generatedCargo.toml/README.md; defaults to--out's directory basename),--force(overwrite files in a non-empty--out),--with-ui(also unpack the Leptos+Trunk UI sources into<out>/ui/for front-end customization)
eject produces a self-contained Cargo binary crate (Cargo.toml,
README.md, studio.toml, schemas/example.cstack, src/main.rs) that
embeds the studio against your own schemas.
migrate diff — generate a migration
Diffs the current .cstack against the committed snapshot of the
previously-generated schema and writes SQL migrations under
<out-dir>/<backend>/<timestamp>_<name>/.
Flags:
--schema <PATH>(required)--out-dir <DIR>(defaultmigrations)--backend <postgres|sqlite|both>(defaultboth)--name <SLUG>(defaultmigration)--allow-destructive— required to emit a migration containing lossy ops (DropColumn,DropTable, narrowing type changes); without it the command refuses to write a destructive migration
See cratestack-migrate's README for the full IR/emitter design.
migrate baseline — adopt an existing database
Points migrate diff at a database that already has tables — hand-created,
from a prior tool, or from a previous internal migration system — instead
of the empty schema migrate diff otherwise assumes when no snapshot
exists yet. Introspects --database-url, diffs the live shape against
--schema for a drift report (grouped by table, each change tagged
safe/lossy/blocking), writes the snapshot from the introspected
shape (not from --schema — see below), and records a synthetic row in
cratestack_migrations so the runtime applier (cratestack-sqlx) and the
authoring side agree about what's already there.
Drift is reported, not resolved, and does not fail the command by
default — matching the adoption use case, where the live database rarely
matches the schema byte-for-byte on day one. Pass --strict to flip that:
exit non-zero on any drift, with no snapshot written and no row recorded,
for teams that want baselining to double as a "prove the schema already
matches" CI gate instead of an adoption tool.
Because the snapshot is written from what was actually introspected, a
database with drift bakes that drift into the snapshot as "already true" —
a later migrate diff will then propose the DDL to reconcile it, rather
than silently treating undeclared drift as permanent. Refuses to run
(non-zero exit, no writes, no DB round-trip) if a snapshot already exists
at <out-dir>/postgres/schema.snapshot.json — baselining an
already-managed backend is almost certainly a mistake.
Flags:
--schema <PATH>(required)--database-url <URL>(required) — the live Postgres database to introspect and to record the baseline row into--out-dir <DIR>(defaultmigrations)--backend <postgres>(default, and currently the only accepted value — baseline is Postgres-only for now)--strict— fail instead of reporting drift
Postgres-only for v1; no --backend sqlite/both. See
docs/design/migrate-baseline.md for the full design.
diff — schema-change detector
Diffs two .cstack schemas and classifies each change by its effect on
the generated wire contract (breaking / additive / internal-only). Exits
non-zero if any breaking change is found, so it can gate CI on schema PRs.
Flags:
old— path to the baseline schema (positional, required)new— path to the candidate schema (positional, required)--json— emit machine-readable JSON instead of the human report
print-ir — dump parsed schema IR
Build Integration
See Also
- Quickstart
cratestack-client-dart— Dart package structurecratestack-client-typescript— TypeScript package structurecratestack-studio— Studio server +ejectscaffold implementation (cratestack-studio-generatoris a thin re-export)cratestack-migrate— schema diff / migration generator behindmigrate diffcratestack-proto—.protogenerator behindgenerate-proto
License
MIT