agent-conveyor 0.1.0 → 0.1.1

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/README.md +9 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -125,6 +125,10 @@ PATH="$tmp_prefix/bin:$PATH" workerctl --help
125
125
  `conveyor doctor` reports local dependency health (tmux, codex, etc.).
126
126
  `conveyor db-doctor` initializes and checks the SQLite control-plane
127
127
  database.
128
+ On Node versions where `node:sqlite` is still marked experimental, SQLite
129
+ commands can also print an `ExperimentalWarning` to stderr while returning
130
+ successful JSON. Treat that warning as expected Node runtime noise when the
131
+ command exits 0 and the JSON result reports `"ok": true`.
128
132
  Before publishing `agent-conveyor` to npm, use
129
133
  [`docs/package-release.md`](docs/package-release.md).
130
134
 
@@ -1047,9 +1051,11 @@ SQLite database at `.codex-workers/workerctl.db`. Key tables:
1047
1051
  proposals and reviewer verdicts for "what's next" review flows.
1048
1052
  - `workers`, `managers` — Legacy tables retained for read-only history.
1049
1053
 
1050
- `conveyor db-doctor` reports schema health. `conveyor reconcile` reports
1051
- runtime drift (dead-pid sessions, dangling bindings, stuck tasks); add
1052
- `--apply` to fix.
1054
+ `conveyor db-doctor` reports schema health. On Node releases that still mark
1055
+ `node:sqlite` experimental, the command may emit an `ExperimentalWarning` to
1056
+ stderr even when the schema check succeeds. `conveyor reconcile` reports runtime
1057
+ drift (dead-pid sessions, dangling bindings, stuck tasks); add `--apply` to
1058
+ fix.
1053
1059
 
1054
1060
  ## Migration from the Legacy Path
1055
1061
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-conveyor",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Local agent manager/worker conveyor control plane for Codex sessions.",
5
5
  "license": "MIT",
6
6
  "type": "module",