@spooky-sync/cli 0.0.1-canary.206 → 0.0.1-canary.207

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/AGENTS.md +1 -1
  2. package/package.json +6 -6
package/AGENTS.md CHANGED
@@ -35,7 +35,7 @@ your-app/
35
35
  - **`spky migrate fix [--fix-checksums]`** — repair schema drift / checksum mismatches.
36
36
  - **`spky verify [--fix]`** — confirm SSP/scheduler snapshot matches upstream SurrealDB, and print the scheduler's own drift verdict (`/health/snapshot` `drift`). `--fix` re-clones the scheduler replica when its counts are off, otherwise forces every SSP to re-bootstrap. The scheduler runs the same count check itself at startup and after each snapshot drain and auto-reclones by default (`SPKY_DRIFT_AUTO_RECLONE`).
37
37
  - **`spky lint`** — validate `sp00ky.yml` and referenced files exist.
38
- - **`spky dev [--apply-migrations] [--clean]`** — boots a local SurrealDB + SSP + scheduler stack via Docker. `--clean` wipes SSP/scheduler state but preserves user data in SurrealDB.
38
+ - **`spky dev [--apply-migrations] [--clean] [--verbose]`** — boots a local SurrealDB + SSP + scheduler stack via Docker. `--clean` wipes SSP/scheduler state but preserves user data in SurrealDB. Startup renders as step lines via `src/ui.rs` (indicatif/console; plain lines when not a TTY); after "ready" only ERROR/crash-looking lines (infra and app streams) show unless `--verbose` / `SPKY_VERBOSE=1`. A bare `logLevel` is scoped to sp00ky crates by `backend::scoped_rust_log`.
39
39
  - **`spky create`** — scaffold a new sp00ky project.
40
40
  - **`spky bucket add`** / **`spky api add`** — append a bucket or backend definition to `sp00ky.yml`.
41
41
  - **`spky mcp`** — start the bundled `@spooky-sync/devtools-mcp` server (so AI assistants can introspect the running app).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spooky-sync/cli",
3
- "version": "0.0.1-canary.206",
3
+ "version": "0.0.1-canary.207",
4
4
  "description": "Generate TypeScript/Dart types from SurrealDB schema files",
5
5
  "type": "module",
6
6
  "main": "./dist/syncgen.cjs",
@@ -61,10 +61,10 @@
61
61
  "vitest": "^1.0.0"
62
62
  },
63
63
  "optionalDependencies": {
64
- "@spooky-sync/cli-darwin-arm64": "0.0.1-canary.206",
65
- "@spooky-sync/cli-darwin-x64": "0.0.1-canary.206",
66
- "@spooky-sync/cli-linux-arm64": "0.0.1-canary.206",
67
- "@spooky-sync/cli-linux-x64": "0.0.1-canary.206",
68
- "@spooky-sync/cli-win32-x64": "0.0.1-canary.206"
64
+ "@spooky-sync/cli-darwin-arm64": "0.0.1-canary.207",
65
+ "@spooky-sync/cli-darwin-x64": "0.0.1-canary.207",
66
+ "@spooky-sync/cli-linux-arm64": "0.0.1-canary.207",
67
+ "@spooky-sync/cli-linux-x64": "0.0.1-canary.207",
68
+ "@spooky-sync/cli-win32-x64": "0.0.1-canary.207"
69
69
  }
70
70
  }