obsidian-tc 1.3.4 → 1.3.6
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/dist/cli.js +200 -198
- package/dist/cli.js.map +1 -738
- package/dist/index.js +37 -37
- package/dist/index.js.map +4 -4
- package/dist/migrations/20260703_001_vault_edges_vault_id.sql +16 -0
- package/dist/plugin/manifest.json +1 -1
- package/package.json +3 -3
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
-- 20260703_001_vault_edges_vault_id.sql
|
|
2
|
+
-- THE-310: add vault_id to vault_edges so multi-vault GraphRAG is isolated.
|
|
3
|
+
--
|
|
4
|
+
-- vault_edges (20260626_001) predates the shared cache.db logical vault_id isolation that
|
|
5
|
+
-- chunks/notes/embeddings carry. Without it, reconcileVaultEdges() -- a full-state reconcile
|
|
6
|
+
-- run once per index_vault pass -- deletes another vault's wikilink edges, and the graph walk
|
|
7
|
+
-- (graph_expand) crosses vaults. Edges are a rebuildable derived cache, so rather than backfill
|
|
8
|
+
-- an unknowable vault_id we clear the unscoped rows; the next index_vault per vault repopulates
|
|
9
|
+
-- them scoped. The unique index is recreated to include vault_id so two vaults can hold the same
|
|
10
|
+
-- path-pair edge; a vault_id index backs the scoped SELECT/DELETE and the graph walk.
|
|
11
|
+
|
|
12
|
+
DELETE FROM vault_edges;
|
|
13
|
+
ALTER TABLE vault_edges ADD COLUMN vault_id TEXT NOT NULL DEFAULT '';
|
|
14
|
+
DROP INDEX IF EXISTS idx_vault_edges_unique;
|
|
15
|
+
CREATE UNIQUE INDEX idx_vault_edges_unique ON vault_edges(vault_id, source_path, target_path, edge_type);
|
|
16
|
+
CREATE INDEX IF NOT EXISTS idx_vault_edges_vault ON vault_edges(vault_id);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "obsidian-tc",
|
|
3
3
|
"name": "Obsidian Turbocharged",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.6",
|
|
5
5
|
"minAppVersion": "1.7.0",
|
|
6
6
|
"description": "Companion plugin for the obsidian-tc MCP server. Extends Local REST API with command dispatch and plugin firepower bridges.",
|
|
7
7
|
"author": "The 40 Thieves",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "obsidian-tc",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.6",
|
|
4
4
|
"description": "MCP server for Obsidian — comprehensive tool surface for humans and autonomous agents",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"type": "module",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@hono/node-server": "^2.0.5",
|
|
25
25
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
26
|
-
"@the-40-thieves/obsidian-tc-native": "1.3.
|
|
27
|
-
"@the-40-thieves/obsidian-tc-shared": "1.3.
|
|
26
|
+
"@the-40-thieves/obsidian-tc-native": "1.3.6",
|
|
27
|
+
"@the-40-thieves/obsidian-tc-shared": "1.3.6",
|
|
28
28
|
"@opentelemetry/api": "^1.9.1",
|
|
29
29
|
"@opentelemetry/exporter-trace-otlp-http": "^0.219.0",
|
|
30
30
|
"@opentelemetry/resources": "^2.8.0",
|