@hiai-gg/docsmint 0.6.0 → 0.6.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 +24 -4
- package/dist/backend/index.js +753 -125
- package/dist/backend-account-runtime-cleanup.js +17 -0
- package/dist/backend-api-key-facade.js +17 -0
- package/dist/backend-pipeline-cancellation.js +17 -0
- package/dist/client.d.ts +4 -1
- package/dist/client.js +9 -0
- package/dist/lifecycle-runtime.js +16 -0
- package/dist/types.d.ts +26 -0
- package/package.json +5 -1
- package/packages/cli/src/index.ts +1 -1
- package/packages/db/src/index.ts +16 -7
- package/packages/db/src/schema.ts +34 -0
- package/packages/mcp-server/src/capabilities.ts +165 -0
- package/packages/mcp-server/src/client.ts +191 -138
- package/packages/mcp-server/src/index.ts +4 -104
- package/packages/mcp-server/src/server.ts +82 -0
- package/packages/mcp-server/src/tools/create-document.ts +26 -19
- package/packages/mcp-server/src/tools/create-folder.ts +19 -12
- package/packages/mcp-server/src/tools/update-document.ts +31 -17
- package/skills/docsmint-document-manager/SKILL.md +33 -0
package/README.md
CHANGED
|
@@ -23,6 +23,7 @@ server.
|
|
|
23
23
|
[](https://tailwindcss.com)
|
|
24
24
|
[](https://orm.drizzle.team)
|
|
25
25
|
[](CONTRIBUTING.md)
|
|
26
|
+
[](https://lobehub.com/mcp/hiai-gg-docsmint)
|
|
26
27
|
|
|
27
28
|
<img width="1920" height="974" alt="DocsMint installable document workspace" src="https://github.com/user-attachments/assets/94701d01-a361-4ca1-b16d-de2a0c64d684" />
|
|
28
29
|
|
|
@@ -39,7 +40,23 @@ server.
|
|
|
39
40
|
- **Own the full stack**: application data, vectors, graph, queue, and files run
|
|
40
41
|
on infrastructure you control.
|
|
41
42
|
|
|
42
|
-
## What's new in DocsMint 0.6.
|
|
43
|
+
## What's new in DocsMint 0.6.1?
|
|
44
|
+
|
|
45
|
+
- **Reliable knowledge refreshes.** Explicit full reindexing now supersedes
|
|
46
|
+
failed or stuck generations, retries release stale extraction claims, and
|
|
47
|
+
publishes embeddings, summaries, and graph projections only for the current
|
|
48
|
+
document generation.
|
|
49
|
+
- **Safer scoped automation.** Global keys can manage the complete document
|
|
50
|
+
domain, while category keys stay confined to their category, folders,
|
|
51
|
+
documents, tags, graph traversal, and index operations according to explicit
|
|
52
|
+
`read`, `edit`, and `write` permissions.
|
|
53
|
+
- **Portable agent integration.** The MCP package exposes 17 document-manager
|
|
54
|
+
tools, two reusable prompts, three context resources, and a bundled Skill,
|
|
55
|
+
with Bunx, NPX, and local-checkout installation paths.
|
|
56
|
+
- **Compatible frontend packaging.** Published frontend entrypoints resolve the
|
|
57
|
+
canonical hiai-ui exports used by the source build and packed consumers.
|
|
58
|
+
|
|
59
|
+
DocsMint 0.6.1 includes the mobile and PWA foundation introduced in 0.6.0:
|
|
43
60
|
|
|
44
61
|
- **Installable, update-safe PWA.** A versioned service worker, responsive app
|
|
45
62
|
shell, install prompt, and deterministic offline fallback make DocsMint feel
|
|
@@ -189,8 +206,10 @@ command and configuration precedence.
|
|
|
189
206
|
|
|
190
207
|
## Connect an MCP client
|
|
191
208
|
|
|
192
|
-
DocsMint exposes document search, reading, creation, updates,
|
|
193
|
-
|
|
209
|
+
DocsMint exposes document search, reading, creation, updates, categories,
|
|
210
|
+
folders, tags, GraphRAG traversal, index status and refresh, snapshots,
|
|
211
|
+
history, and export as MCP tools. It also publishes reusable prompts,
|
|
212
|
+
context resources, and a document-manager skill for agent clients.
|
|
194
213
|
|
|
195
214
|
```json
|
|
196
215
|
{
|
|
@@ -215,7 +234,8 @@ bunx --package @hiai-gg/docsmint docsmint-mcp
|
|
|
215
234
|
|
|
216
235
|
The server uses stdio and works with MCP-capable clients such as Claude
|
|
217
236
|
Desktop, Cursor, and coding agents that accept standard MCP configuration. See
|
|
218
|
-
the [MCP guide](packages/mcp-server/README.md) for its
|
|
237
|
+
the [MCP guide](packages/mcp-server/README.md) for its 17 tools, prompts,
|
|
238
|
+
resources, skill, and API routes.
|
|
219
239
|
|
|
220
240
|
## Agent skills after installation
|
|
221
241
|
|