obsidian-tc 1.0.2 → 1.2.1
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 +10 -2
- package/dist/cli.js +18115 -8498
- package/dist/index.js +18357 -9117
- package/dist/migrations/20260519_002_entity_unique.sql +51 -0
- package/dist/schema.sql +3 -0
- package/package.json +24 -11
package/README.md
CHANGED
|
@@ -4,8 +4,16 @@ MCP server for Obsidian. Comprehensive tool surface for humans and autonomous ag
|
|
|
4
4
|
|
|
5
5
|
This is the main package — published to npm as `obsidian-tc`.
|
|
6
6
|
|
|
7
|
-
See the [repo root README](../../README.md) for project overview
|
|
7
|
+
See the [repo root README](../../README.md) for project overview and the
|
|
8
|
+
[ARCHITECTURE](../../ARCHITECTURE.md) record for the dispatch pipeline and topology.
|
|
8
9
|
|
|
9
10
|
## Status
|
|
10
11
|
|
|
11
|
-
|
|
12
|
+
✅ **Shipped — v1.0.2.** The full tool surface (103 tools across 28 domains, milestones
|
|
13
|
+
M0–M7) is implemented and released. Built on Bun + Hono with Zod 4 schemas; runs under
|
|
14
|
+
Node `>=24` (the test suite runs vitest under Node for `node:sqlite`).
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install -g obsidian-tc
|
|
18
|
+
obsidian-tc serve --vault /path/to/vault
|
|
19
|
+
```
|