vericify 1.3.0 → 1.3.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 +24 -29
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,15 +8,15 @@ __ _______ ____ ___ ____ ___ _______ __
8
8
  \_/ |_____|_| \_\___\____|___|_| |_|
9
9
  ```
10
10
 
11
- Vericify is a local-first operations hub for agent work.
11
+ Vericify is a local-first run intelligence hub for multi-agent workflows and AI agent state.
12
12
 
13
- It gives a workspace a durable run model instead of making you reconstruct intent from chat scrollback, shell history, and raw logs.
13
+ It gives a workspace durable run records, checkpointed handoffs, and a four-layer compare engine instead of making you reconstruct intent from chat scrollback, shell history, and raw logs.
14
14
 
15
15
  It works on its own, and it also plugs neatly into [ACE / ace-swarm](https://www.npmjs.com/package/ace-swarm) workspaces that already emit `agent-state/*`.
16
16
 
17
17
  ## Product Summary
18
18
 
19
- Vericify is for people building with agents who want to answer questions like:
19
+ Vericify is for engineers building with AI agents who want run-level observability and clear answers to questions like:
20
20
 
21
21
  - What is moving right now?
22
22
  - What is blocked?
@@ -41,12 +41,12 @@ Default behavior is simple:
41
41
 
42
42
  Vericify gives you:
43
43
 
44
- - a terminal cockpit for run inspection
44
+ - a terminal cockpit with four views — Hub, Inspect, Compare, History — for run inspection and agent observability
45
45
  - a structured run model built from handoffs, posts, todos, events, and checkpoints
46
- - a compare engine that explains divergence and recovery
46
+ - a compare engine that measures divergence and recovery across four layers: exact diff, structural delta, semantic similarity (MinHash), and operational timing
47
47
  - publishable run artifacts under `.vericify/published/`
48
48
  - a local-first sync outbox under `.vericify/sync-outbox/`
49
- - partner compatibility with [ACE / ace-swarm](https://www.npmjs.com/package/ace-swarm)
49
+ - adapter contracts for Claude Code, Codex, Cursor, VS Code Copilot, Antigravity, and [ACE / ace-swarm](https://www.npmjs.com/package/ace-swarm) workspaces
50
50
 
51
51
  ## Install
52
52
 
@@ -99,7 +99,7 @@ For Claude Code, `vericify attach --adapter claude-code` also writes compact-boo
99
99
 
100
100
  ## Compact Bootstrap And Resume
101
101
 
102
- Use the compact packet when you want session bootstrap or resume without rereading the full projected state:
102
+ Use the compact packet when you want session bootstrap or resume without rereading the full projected state. This is the primary path for workflow continuity across context resets:
103
103
 
104
104
  ```bash
105
105
  vericify context
@@ -215,7 +215,7 @@ vericify hub
215
215
 
216
216
  Best when you already have `agent-state/*` and want a cockpit, history, and compare surface.
217
217
 
218
- ### Use case 2: Tag a Codex or Claude Code workspace before richer capture exists
218
+ ### Use case 2: Tag a Codex, Claude Code, Cursor, VS Code Copilot, or Antigravity workspace before richer capture exists
219
219
 
220
220
  ```bash
221
221
  vericify attach --adapter codex --label "Primary Codex"
@@ -243,14 +243,13 @@ Best when you want to model agent work directly in Vericify.
243
243
  vericify compare --run-id handoff:run-a --compare-run-id workspace:current
244
244
  ```
245
245
 
246
- The comparison report includes:
246
+ The comparison runs four layers simultaneously — exact diff, structural graph delta, semantic MinHash similarity, and operational timing analysis — and returns:
247
247
 
248
- - composite similarity
248
+ - composite similarity score
249
249
  - latest checkpoint similarity
250
- - actor overlap
251
- - node overlap
250
+ - actor and node overlap
252
251
  - layer-level divergence cues
253
- - recovery explanations
252
+ - recovery paths from prior runs
254
253
  - recommended next actions
255
254
 
256
255
  ### Use case 5: Publish or queue a run artifact
@@ -275,7 +274,7 @@ This writes:
275
274
  - `Lane`: one concurrent execution stream
276
275
  - `Handoff`: transfer of responsibility
277
276
  - `Checkpoint`: durable snapshot at a meaningful transition
278
- - `Delta`: structural, semantic, or operational change between checkpoints
277
+ - `Delta`: change between checkpoints, measured across four layers: exact diff, structural graph, semantic MinHash, and operational timing
279
278
 
280
279
  ### Storage Contract
281
280
 
@@ -384,38 +383,34 @@ Start the cockpit:
384
383
  vericify hub
385
384
  ```
386
385
 
386
+ The cockpit has four views. Each answers a different operational question.
387
+
387
388
  Keys:
388
389
 
389
390
  - `q` quit
390
391
  - `j` / `k` move between runs
391
- - `Enter` inspect selected run
392
- - `c` compare selected run
393
- - `y` history view
394
- - `h` back to hub
392
+ - `Enter` inspect selected run — lane activity, blockers, checkpoint timeline
393
+ - `c` compare selected run — four-layer diff across exact, structural, semantic, and operational dimensions
394
+ - `y` history view — prior runs indexed, recovery patterns ranked by similarity to the current state
395
+ - `a` adapters view — attached tools and detection status
396
+ - `h` back to hub — all active runs, what is moving, what is blocked
395
397
  - `r` refresh
396
398
  - `/` command palette
397
399
  - `Ctrl+R` command history search
398
400
 
399
401
  ## Programmatic API
400
402
 
401
- The package also exports:
403
+ The package exports functions for workspace state projection, run comparison, and artifact publishing:
402
404
 
403
405
  - `loadWorkspaceState`
404
406
  - `projectWorkspaceState`
405
407
  - `buildCompactPacket`
408
+ - `buildCompactPacketDetails`
406
409
  - `buildCompactDelta`
407
410
  - `detectAdapters`
411
+ - `listAvailableAdapters`
412
+ - `listDefaultWorkspacePaths`
408
413
  - `attachAdapter`
409
414
  - `buildRunComparison`
410
415
  - `publishRunArtifact`
411
416
  - `enqueueSyncOutboxItem`
412
-
413
- ## Honest Status
414
-
415
- Vericify is intentionally honest about what is implemented now.
416
-
417
- - peer client adapters are not full live capture bridges yet
418
- - hosted sync is an outbox contract today, not a running SaaS backend
419
- - git-backed diffing exists as optional provenance, not the whole product
420
-
421
- That is deliberate: the package is meant to be useful now, without pretending unfinished infrastructure already exists.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vericify",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Local-first run intelligence and operations hub for agent systems.",