@geminilight/mindos 1.0.29 → 1.1.3
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_zh.md +3 -3
- package/dist/agent-runtime/claude-code-cli.d.ts +1 -1
- package/dist/agent-runtime/claude-code-cli.d.ts.map +1 -1
- package/dist/agent-runtime/claude-code-cli.js +7 -6
- package/dist/agent-runtime/claude-code-cli.js.map +1 -1
- package/dist/agent-runtime/claude-code-sdk.d.ts +17 -0
- package/dist/agent-runtime/claude-code-sdk.d.ts.map +1 -1
- package/dist/agent-runtime/claude-code-sdk.js +145 -7
- package/dist/agent-runtime/claude-code-sdk.js.map +1 -1
- package/dist/agent-runtime/codex-app-server.d.ts +7 -4
- package/dist/agent-runtime/codex-app-server.d.ts.map +1 -1
- package/dist/agent-runtime/codex-app-server.js +18 -16
- package/dist/agent-runtime/codex-app-server.js.map +1 -1
- package/dist/agent-runtime/codex-env.d.ts +41 -0
- package/dist/agent-runtime/codex-env.d.ts.map +1 -0
- package/dist/agent-runtime/codex-env.js +278 -0
- package/dist/agent-runtime/codex-env.js.map +1 -0
- package/dist/agent-runtime/index.d.ts +2 -0
- package/dist/agent-runtime/index.d.ts.map +1 -1
- package/dist/agent-runtime/index.js +2 -0
- package/dist/agent-runtime/index.js.map +1 -1
- package/dist/agent-runtime/run.d.ts +7 -0
- package/dist/agent-runtime/run.d.ts.map +1 -1
- package/dist/agent-runtime/run.js +229 -42
- package/dist/agent-runtime/run.js.map +1 -1
- package/dist/agent-runtime/runtime-env.d.ts +28 -0
- package/dist/agent-runtime/runtime-env.d.ts.map +1 -0
- package/dist/agent-runtime/runtime-env.js +66 -0
- package/dist/agent-runtime/runtime-env.js.map +1 -0
- package/dist/client.d.ts +0 -1
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js.map +1 -1
- package/dist/knowledge/audit/index.d.ts +4 -0
- package/dist/knowledge/audit/index.d.ts.map +1 -1
- package/dist/knowledge/audit/index.js +92 -8
- package/dist/knowledge/audit/index.js.map +1 -1
- package/dist/protocols/acp/agent-descriptors.js +7 -1
- package/dist/protocols/acp/agent-descriptors.js.map +1 -1
- package/dist/protocols/acp/index.js +10 -10
- package/dist/protocols/acp/subprocess.d.ts +1 -1
- package/dist/protocols/acp/subprocess.d.ts.map +1 -1
- package/dist/protocols/acp/subprocess.js +3 -3
- package/dist/protocols/acp/subprocess.js.map +1 -1
- package/dist/server/contract.d.ts.map +1 -1
- package/dist/server/contract.js +2 -0
- package/dist/server/contract.js.map +1 -1
- package/dist/server/handlers/a2a.d.ts +7 -0
- package/dist/server/handlers/a2a.d.ts.map +1 -1
- package/dist/server/handlers/a2a.js +5 -1
- package/dist/server/handlers/a2a.js.map +1 -1
- package/dist/server/handlers/agent-capabilities.d.ts +60 -0
- package/dist/server/handlers/agent-capabilities.d.ts.map +1 -0
- package/dist/server/handlers/agent-capabilities.js +178 -0
- package/dist/server/handlers/agent-capabilities.js.map +1 -0
- package/dist/server/handlers/agent-runtime-codex.d.ts +3 -0
- package/dist/server/handlers/agent-runtime-codex.d.ts.map +1 -1
- package/dist/server/handlers/agent-runtime-codex.js +33 -5
- package/dist/server/handlers/agent-runtime-codex.js.map +1 -1
- package/dist/server/handlers/agent-runtimes.d.ts +10 -0
- package/dist/server/handlers/agent-runtimes.d.ts.map +1 -1
- package/dist/server/handlers/agent-runtimes.js +111 -89
- package/dist/server/handlers/agent-runtimes.js.map +1 -1
- package/dist/server/handlers/im-activity.d.ts.map +1 -1
- package/dist/server/handlers/im-activity.js +26 -1
- package/dist/server/handlers/im-activity.js.map +1 -1
- package/dist/server/handlers/mcp-status.d.ts +7 -1
- package/dist/server/handlers/mcp-status.d.ts.map +1 -1
- package/dist/server/handlers/mcp-status.js +14 -1
- package/dist/server/handlers/mcp-status.js.map +1 -1
- package/dist/server/handlers/settings.d.ts +3 -0
- package/dist/server/handlers/settings.d.ts.map +1 -1
- package/dist/server/handlers/settings.js +5 -0
- package/dist/server/handlers/settings.js.map +1 -1
- package/dist/server/http.js +5 -1
- package/dist/server/http.js.map +1 -1
- package/dist/server/index.d.ts +3 -2
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +3 -2
- package/dist/server/index.js.map +1 -1
- package/dist/server/route-ownership.d.ts.map +1 -1
- package/dist/server/route-ownership.js +3 -0
- package/dist/server/route-ownership.js.map +1 -1
- package/dist/server/runtime.d.ts +1 -0
- package/dist/server/runtime.d.ts.map +1 -1
- package/dist/server/runtime.js.map +1 -1
- package/dist/session/index.d.ts +2 -0
- package/dist/session/index.d.ts.map +1 -1
- package/dist/session/index.js +47 -12
- package/dist/session/index.js.map +1 -1
- package/dist/session/redaction.d.ts +3 -0
- package/dist/session/redaction.d.ts.map +1 -0
- package/dist/session/redaction.js +47 -0
- package/dist/session/redaction.js.map +1 -0
- package/package.json +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geminilight/mindos",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "MindOS — Human-Agent Collaborative Mind System. Local-first knowledge base that syncs your mind to all AI Agents via MCP.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mindos",
|
|
@@ -115,7 +115,6 @@
|
|
|
115
115
|
"build:platform-packages": "node ../../scripts/build-platform-packages.mjs"
|
|
116
116
|
},
|
|
117
117
|
"dependencies": {
|
|
118
|
-
"@anthropic-ai/claude-agent-sdk": "0.3.170",
|
|
119
118
|
"@anthropic-ai/sdk": "^0.93.0",
|
|
120
119
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
121
120
|
"chokidar": "^4.0.3",
|
|
@@ -124,17 +123,18 @@
|
|
|
124
123
|
"zod": "^4.3.6"
|
|
125
124
|
},
|
|
126
125
|
"optionalDependencies": {
|
|
127
|
-
"@geminilight/mindos-darwin-arm64": "1.
|
|
128
|
-
"@geminilight/mindos-darwin-x64": "1.
|
|
129
|
-
"@geminilight/mindos-linux-arm64": "1.
|
|
130
|
-
"@geminilight/mindos-linux-arm64-musl": "1.
|
|
131
|
-
"@geminilight/mindos-linux-x64": "1.
|
|
132
|
-
"@geminilight/mindos-linux-x64-musl": "1.
|
|
133
|
-
"@geminilight/mindos-windows-arm64": "1.
|
|
134
|
-
"@geminilight/mindos-windows-x64": "1.
|
|
126
|
+
"@geminilight/mindos-darwin-arm64": "1.1.3",
|
|
127
|
+
"@geminilight/mindos-darwin-x64": "1.1.3",
|
|
128
|
+
"@geminilight/mindos-linux-arm64": "1.1.3",
|
|
129
|
+
"@geminilight/mindos-linux-arm64-musl": "1.1.3",
|
|
130
|
+
"@geminilight/mindos-linux-x64": "1.1.3",
|
|
131
|
+
"@geminilight/mindos-linux-x64-musl": "1.1.3",
|
|
132
|
+
"@geminilight/mindos-windows-arm64": "1.1.3",
|
|
133
|
+
"@geminilight/mindos-windows-x64": "1.1.3"
|
|
135
134
|
},
|
|
136
135
|
"devDependencies": {
|
|
137
136
|
"@agentclientprotocol/sdk": "^0.18.2",
|
|
137
|
+
"@anthropic-ai/claude-agent-sdk": "0.3.170",
|
|
138
138
|
"@earendil-works/pi-coding-agent": "0.78.1",
|
|
139
139
|
"@types/node": "^22.10.5",
|
|
140
140
|
"esbuild": "^0.25.0",
|