obsidian-tc 1.13.0 → 1.14.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 +2 -2
- package/dist/cli.js +901 -758
- package/dist/cli.js.map +1 -1
- package/dist/index.js +71 -71
- package/dist/index.js.map +38 -21
- package/dist/migrations/20260729_001_gap_reports.sql +30 -0
- package/dist/migrations/20260731_001_citation_state.sql +34 -0
- package/dist/migrations/20260802_001_acl_path_sets.sql +42 -0
- package/dist/plugin/main.js +2 -2
- package/dist/plugin/manifest.json +1 -1
- package/package.json +7 -4
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.14.0.** The full tool surface (152 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
|
|
|
@@ -30,7 +30,7 @@ config + caches (no server needed):
|
|
|
30
30
|
| `plugin install --vault <p>` | Copy the companion plugin into a vault |
|
|
31
31
|
| `cluster [--k N]` | Recompute chunk clusters for diversified retrieval |
|
|
32
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 |
|
|
33
|
+
| `citation-infer --transcript <f>` | Stamp `cited_in_response` + `citation_state` on retrieval events from a session transcript. `--allow-uncertain` lets the judge abstain — **dark by default**: it changes the judge prompt and moves abstentions out of the citation count |
|
|
34
34
|
| `contribution-report` | Per-note output-contribution report (top contributors + dead-retrieved) |
|
|
35
35
|
| `prefetch [--vault id] [--ttl-hours N]` | Prewarm the session-bootstrap context cache (TTL enforced at read) |
|
|
36
36
|
| `densify-llm [--vault id]` | LLM Pass-3 semantic-edge densification via the local gateway (graph densification, experimental; refuses if no gateway resolves) |
|