@aiaiai-pt/frankctl 0.4.3 → 0.4.4
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.
- package/CHANGELOG.md +11 -0
- package/README.md +8 -1
- package/dist/index.js +162 -160
- package/package.json +1 -1
- package/skills/frank-cli/SKILL.md +13 -1
package/package.json
CHANGED
|
@@ -277,12 +277,24 @@ frankctl bd get <id>
|
|
|
277
277
|
frankctl bd create -f bd.yaml
|
|
278
278
|
frankctl bd update <id> -f patch.yaml
|
|
279
279
|
frankctl bd delete <id> --yes # does not delete underlying data
|
|
280
|
-
frankctl bd sync <id>
|
|
280
|
+
frankctl bd sync <id> [--force] [--no-wait] # trigger ontology sync, poll exact run
|
|
281
281
|
frankctl bd entities <id> # read entities back out — confirm values landed
|
|
282
282
|
```
|
|
283
283
|
|
|
284
284
|
`bd entities` closes the authoring loop: it reads the ontology to prove your rows
|
|
285
285
|
actually materialized as entities, not just that the sync reported success.
|
|
286
|
+
`bd sync --force` full-replays through REST even when the snapshot and effective
|
|
287
|
+
mapping spec are unchanged. Normal output includes replay reason, row/snapshot
|
|
288
|
+
evidence, and safe attempted/applied SyncSpec fingerprint prefixes. Human output
|
|
289
|
+
prefers the precision-safe decimal string `snapshot_id_exact`; JSON exposes it
|
|
290
|
+
alongside the legacy numeric `snapshot_id`.
|
|
291
|
+
|
|
292
|
+
For an ordinary sync, the CLI falls back to BackingDataset status polling when
|
|
293
|
+
an older API does not return exact-run evidence, and clearly marks replay
|
|
294
|
+
evidence unavailable. `--force` does not fall back: it checks
|
|
295
|
+
`/api/v1/backing-datasets/capabilities` before mutation and sends no sync POST
|
|
296
|
+
unless version 2, exact-run polling, and force replay are explicitly supported.
|
|
297
|
+
After the POST, it also requires `force_replay: true` confirmation.
|
|
286
298
|
|
|
287
299
|
### Runs
|
|
288
300
|
|