@hiai-gg/docsmint 0.8.5 → 0.8.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 +5 -4
- package/dist/backend/index.js +1 -1
- package/dist/mcp-cli.js +1 -1
- package/dist/mcp-server.js +1 -1
- package/package.json +1 -1
- package/packages/cli/src/index.ts +1 -1
- package/server.json +2 -2
package/README.md
CHANGED
|
@@ -63,17 +63,18 @@ bridge to your running deployment, not a server installer. See the
|
|
|
63
63
|
- **Choose how you run it.** Use [managed DocsMint](https://docsmint.com) or
|
|
64
64
|
self-host the application, database, search, queues, and files.
|
|
65
65
|
|
|
66
|
-
## What's new in 0.8.
|
|
66
|
+
## What's new in 0.8.6?
|
|
67
67
|
|
|
68
|
-
This
|
|
68
|
+
This patch completes the publication improvements from 0.8.5:
|
|
69
69
|
|
|
70
|
+
- Corrected Docker Hub description updates and direct Docker links in LobeHub.
|
|
70
71
|
- Clearer guides for choosing DocsMint Cloud or a self-hosted workspace.
|
|
71
72
|
- One public package, `@hiai-gg/docsmint`, for the SDK, CLI, and MCP bridge.
|
|
72
73
|
- A Docker image guide that distinguishes the API, web application, and Caddy proxy.
|
|
73
74
|
- Consistent release notes and package documentation, with links that also work on npm.
|
|
74
75
|
|
|
75
76
|
No database migration or public API change is required. Read the
|
|
76
|
-
[release notes](https://github.com/HiAi-gg/docsmint/releases/tag/v0.8.
|
|
77
|
+
[release notes](https://github.com/HiAi-gg/docsmint/releases/tag/v0.8.6),
|
|
77
78
|
[changelog](https://github.com/HiAi-gg/docsmint/blob/main/CHANGELOG.md), or [roadmap](https://github.com/HiAi-gg/docsmint/blob/main/docs/ROADMAP.md).
|
|
78
79
|
|
|
79
80
|
## Install with an AI agent
|
|
@@ -126,7 +127,7 @@ docker pull vgalibov/docsmint:web-latest
|
|
|
126
127
|
docker pull vgalibov/docsmint:caddy-latest
|
|
127
128
|
```
|
|
128
129
|
|
|
129
|
-
Use versioned tags `api-v0.8.
|
|
130
|
+
Use versioned tags `api-v0.8.6`, `web-v0.8.6`, and `caddy-v0.8.6` for
|
|
130
131
|
reproducible deploys. Caddy is the supporting reverse proxy with rate limiting;
|
|
131
132
|
it is separate from the API and web application. The quickstart still builds the Compose stack from this repository so PostgreSQL,
|
|
132
133
|
Redis, and SeaweedFS start together with the application.
|
package/dist/backend/index.js
CHANGED
|
@@ -238398,7 +238398,7 @@ var swaggerConfig = {
|
|
|
238398
238398
|
},
|
|
238399
238399
|
info: {
|
|
238400
238400
|
title: "DocsMint API",
|
|
238401
|
-
version: "0.8.
|
|
238401
|
+
version: "0.8.6",
|
|
238402
238402
|
description: "Self-hosted AI-native knowledge workspace and installable PWA with hybrid search, GraphRAG, REST, SDK, CLI, and MCP access for people and AI agents.",
|
|
238403
238403
|
contact: { name: "HiAi-gg", url: "https://github.com/HiAi-gg/docsmint" },
|
|
238404
238404
|
license: {
|
package/dist/mcp-cli.js
CHANGED
|
@@ -1052,7 +1052,7 @@ function registerDocsmintMcpCapabilities(server, client2) {
|
|
|
1052
1052
|
registerExtendedCapabilities(server, client2, (handler11) => wrapHandler("extended", handler11));
|
|
1053
1053
|
}
|
|
1054
1054
|
function createDocsmintMcpServer(options = {}) {
|
|
1055
|
-
const server = new McpServer({ name: "docsmint", version: "0.8.
|
|
1055
|
+
const server = new McpServer({ name: "docsmint", version: "0.8.6" });
|
|
1056
1056
|
const client2 = options.docsClient ? createMcpDocsClient(options.docsClient, options.requestContext) : options.client ?? createMcpDocsClient(createDefaultDocsClient(), options.requestContext);
|
|
1057
1057
|
registerDocsmintMcpCapabilities(server, client2);
|
|
1058
1058
|
return server;
|
package/dist/mcp-server.js
CHANGED
|
@@ -1048,7 +1048,7 @@ function registerDocsmintMcpCapabilities(server, client2) {
|
|
|
1048
1048
|
registerExtendedCapabilities(server, client2, (handler11) => wrapHandler("extended", handler11));
|
|
1049
1049
|
}
|
|
1050
1050
|
function createDocsmintMcpServer(options = {}) {
|
|
1051
|
-
const server = new McpServer({ name: "docsmint", version: "0.8.
|
|
1051
|
+
const server = new McpServer({ name: "docsmint", version: "0.8.6" });
|
|
1052
1052
|
const client2 = options.docsClient ? createMcpDocsClient(options.docsClient, options.requestContext) : options.client ?? createMcpDocsClient(createDefaultDocsClient(), options.requestContext);
|
|
1053
1053
|
registerDocsmintMcpCapabilities(server, client2);
|
|
1054
1054
|
return server;
|
package/package.json
CHANGED
|
@@ -25,7 +25,7 @@ import { registerSearch } from './commands/search.js';
|
|
|
25
25
|
import { registerSnapshot } from './commands/snapshot.js';
|
|
26
26
|
import { registerUpdate } from './commands/update.js';
|
|
27
27
|
|
|
28
|
-
const VERSION = '0.8.
|
|
28
|
+
const VERSION = '0.8.6';
|
|
29
29
|
|
|
30
30
|
const program = new Command();
|
|
31
31
|
program.name('docsmint').description('CLI for the DocsMint knowledge workspace').version(VERSION);
|
package/server.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"id": "1249550690",
|
|
11
11
|
"subfolder": "packages/mcp-server"
|
|
12
12
|
},
|
|
13
|
-
"version": "0.8.
|
|
13
|
+
"version": "0.8.6",
|
|
14
14
|
"icons": [
|
|
15
15
|
{
|
|
16
16
|
"src": "https://raw.githubusercontent.com/HiAi-gg/docsmint/main/frontend/static/logo-dark.png",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"registryType": "npm",
|
|
31
31
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
32
32
|
"identifier": "@hiai-gg/docsmint",
|
|
33
|
-
"version": "0.8.
|
|
33
|
+
"version": "0.8.6",
|
|
34
34
|
"runtimeHint": "npx",
|
|
35
35
|
"transport": {
|
|
36
36
|
"type": "stdio"
|