obsidian-tc 1.6.0 → 1.8.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 +22 -2
- package/dist/cli.js +398 -327
- package/dist/cli.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/dist/migrations/20260712_001_preference_profile.sql +27 -0
- package/dist/migrations/20260712_002_access_views.sql +16 -0
- package/dist/migrations/20260712_003_forget_log.sql +16 -0
- package/dist/plugin/main.js +2 -2
- package/dist/plugin/manifest.json +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -9,11 +9,31 @@ 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.8.0.** The full tool surface (141 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
|
|
|
16
16
|
```bash
|
|
17
17
|
npm install -g obsidian-tc
|
|
18
|
-
obsidian-tc
|
|
18
|
+
obsidian-tc /path/to/vault # zero-config: single vault "main", all defaults
|
|
19
|
+
obsidian-tc serve ./config.json # or a config file (multi-vault, auth, ACLs, embeddings)
|
|
19
20
|
```
|
|
21
|
+
|
|
22
|
+
## CLI commands
|
|
23
|
+
|
|
24
|
+
Beyond `serve`, the CLI ships an offline command family that runs against the same
|
|
25
|
+
config + caches (no server needed):
|
|
26
|
+
|
|
27
|
+
| Command | What it does |
|
|
28
|
+
| --- | --- |
|
|
29
|
+
| `config show / validate` | Print the effective config (secrets redacted) / validate it |
|
|
30
|
+
| `plugin install --vault <p>` | Copy the companion plugin into a vault |
|
|
31
|
+
| `cluster [--k N]` | Recompute chunk clusters for diversified retrieval |
|
|
32
|
+
| `activation-recompute` | Fold the retrieval log into ACT-R activation scores |
|
|
33
|
+
| `citation-infer --transcript <f>` | Stamp `cited_in_response` on retrieval events from a session transcript |
|
|
34
|
+
| `contribution-report` | Per-note output-contribution report (top contributors + dead-retrieved) |
|
|
35
|
+
| `prefetch [--vault id] [--ttl-hours N]` | Prewarm the session-bootstrap context cache (TTL enforced at read) |
|
|
36
|
+
| `reflect [--max-judged N]` | Sleep-time pass: stamp episode eligibility + update the preference profile |
|
|
37
|
+
| `metrics [--since ms] [--until ms] [--json f]` | Knowledge-health scorecard from the derive layer |
|
|
38
|
+
| `gaps --queries <f> / --calibrate <golden.yaml>` | Knowledge-gap detector / threshold calibration |
|
|
39
|
+
| `forget (--episode <id> \| --note <rel>) [--erase] / --verify` | Dependency-aware deletion + hash-chained audit |
|