obsidian-tc 1.10.0 → 1.11.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 +1 -1
- package/SKILLS.md +5 -3
- package/dist/cli.js +758 -361
- package/dist/cli.js.map +1 -1
- package/dist/index.js +83 -81
- package/dist/index.js.map +29 -26
- package/dist/migrations/20260719_001_chunks_body_sha.sql +21 -0
- package/dist/migrations/20260722_001_chunks_dedup_index.sql +14 -0
- package/dist/migrations/20260723_001_activation_watermark.sql +15 -0
- package/dist/migrations/20260723_001_vault_generation.sql +12 -0
- package/dist/migrations/20260723_002_jobs.sql +39 -0
- package/dist/migrations/20260724_001_chunk_retrievals_caller.sql +5 -0
- package/dist/migrations/20260724_001_plane_vault_id.sql +33 -0
- package/dist/migrations/20260724_002_idempotency_state.sql +10 -0
- package/dist/plugin/manifest.json +1 -1
- package/package.json +17 -6
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.11.0.** The full tool surface (146 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
|
|
package/SKILLS.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
A working guide for AI agents, and the people configuring them, to use the
|
|
4
4
|
**obsidian-tc** MCP server well. obsidian-tc gives an agent *governed* access to
|
|
5
|
-
one or more Obsidian vaults: **
|
|
5
|
+
one or more Obsidian vaults: **143 capabilities across 31 domains**, every call
|
|
6
6
|
funneled through one dispatch pipeline (auth, scopes, folder ACL, read-only kill
|
|
7
7
|
switch, idempotency, throttle, human-in-the-loop, response governor, audit).
|
|
8
8
|
|
|
@@ -112,7 +112,7 @@ matches, you are wired up.
|
|
|
112
112
|
|
|
113
113
|
## 3. The core skill: discover, don't guess
|
|
114
114
|
|
|
115
|
-
By default the server advertises **three meta-tools**, not a wall of
|
|
115
|
+
By default the server advertises **three meta-tools**, not a wall of 143. This
|
|
116
116
|
keeps agent context lean. Learn this loop before anything else:
|
|
117
117
|
|
|
118
118
|
1. **`find_capability`**, BM25 search over the capabilities *this caller can see*.
|
|
@@ -137,7 +137,7 @@ The facade is boundary-only: no gate is bypassed in any mode.
|
|
|
137
137
|
## 4. Capability map (by intent)
|
|
138
138
|
|
|
139
139
|
Use `find_capability` for exact names; this is the terrain, grouped by what you
|
|
140
|
-
want to do. Counts are approximate; the surface is
|
|
140
|
+
want to do. Counts are approximate; the surface is 143 tools / 31 domains.
|
|
141
141
|
|
|
142
142
|
| You want to… | Reach for | Notes |
|
|
143
143
|
| --- | --- | --- |
|
|
@@ -147,6 +147,8 @@ want to do. Counts are approximate; the surface is 141 tools / 31 domains.
|
|
|
147
147
|
| **One-call context for a question** | `vault_context` (`get_context(query, token_budget)`) | Budget-packed graph-reranked chunks + synthesis patterns + open contradictions + proactive lessons. The single best entry point for "answer from my vault." |
|
|
148
148
|
| **Grounded synthesis** | `reflect` | Synthesis with source provenance, an adversarial challenge mode, a versioned preference profile. Needs the inference gateway. |
|
|
149
149
|
| **Red-team a claim** | `knowledge_challenge` | Retrieves decision notes to argue against a proposal. |
|
|
150
|
+
| **Search vendor / external docs** | `knowledge_search` (docs corpus) | The docs-scoped analogue of `vault_graph_search`, bound to a reserved read-only docs vault. Gated on `read:docs`; no reranker (THE-441). |
|
|
151
|
+
| **Critical docs to read first** | `knowledge_get_critical` | Frontmatter `severity == critical` pre-filter: breaking changes / security / production gotchas, optionally per source. |
|
|
150
152
|
| **Structured formats** | Bases (`.base` DSL evaluator), Canvas, Kanban, Periodic notes, Tasks, Excalidraw, Bookmarks, Workspaces | Several need live mode (render/DSL). |
|
|
151
153
|
| **Attachments / OCR** | attachment tools, OCR route | OCR needs live mode + the plugin. |
|
|
152
154
|
| **Memory graph** | memory entities + `[[link]]` graph, workspace sessions + JSONL traces | Projections live in the `memory/` folder. |
|