obsidian-tc 1.21.0 → 1.22.0
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/README.md +3 -1
- package/dist/cli.js +1133 -714
- package/dist/cli.js.map +1 -1
- package/dist/index.js +57 -52
- package/dist/index.js.map +25 -21
- package/dist/migrations/20260814_001_memory_entity_status.sql +17 -0
- package/dist/migrations/20260816_001_episode_type_structural.sql +61 -0
- package/dist/migrations/20260816_002_episode_verdict_at.sql +37 -0
- package/dist/migrations/20260818_001_vault_context_watermark.sql +30 -0
- package/dist/migrations/20260818_002_chunk_access_stats_excludes_advisory.sql +41 -0
- package/dist/migrations/20260819_001_note_summaries.sql +34 -0
- package/dist/migrations/20260819_002_cluster_summaries.sql +59 -0
- package/dist/migrations/20260819_003_capture_queue_poison_scan.sql +21 -0
- package/dist/plugin/manifest.json +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ See the [repo root README](../../README.md) for project overview and the
|
|
|
9
9
|
|
|
10
10
|
## Status
|
|
11
11
|
|
|
12
|
-
✅ **Shipped — v1.
|
|
12
|
+
✅ **Shipped — v1.22.0.** The full tool surface (163 tools across 31 domains, milestones
|
|
13
13
|
M0–M7) is implemented and released. Built on Bun + Hono with Zod 4 schemas; runs under
|
|
14
14
|
Node `>=24` (the test suite runs vitest under Node for `node:sqlite`).
|
|
15
15
|
|
|
@@ -38,3 +38,5 @@ config + caches (no server needed):
|
|
|
38
38
|
| `metrics [--since ms] [--until ms] [--json f]` | Knowledge-health scorecard from the derive layer |
|
|
39
39
|
| `gaps --queries <f> / --calibrate <golden.yaml>` | Knowledge-gap detector / threshold calibration |
|
|
40
40
|
| `forget (--episode <id> \| --note <rel>) [--erase] / --verify` | Dependency-aware deletion + hash-chained audit |
|
|
41
|
+
| `context-export --out <f> [--vault id]` | Export the derived plane (preferences, episodes, note_quality, retrieval feedback, forget_log) as a versioned, vendor-neutral JSON bundle |
|
|
42
|
+
| `context-import <bundle> [--vault id] [--dry-run]` | Import a context-export bundle. `--vault` remaps the bundle's vault-scoped rows to the target vault (refuses a multi-source-vault bundle); forget always wins over import |
|