@leviyuan/lodestar 0.16.5 → 0.17.0

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.
Files changed (22) hide show
  1. package/README.md +17 -4
  2. package/dist/dsh-bridge.js +394 -0
  3. package/dist/lodestar-agent.js +10 -10
  4. package/dist/lodestar-setup.js +1 -1
  5. package/dist/lodestar-stop.js +2 -2
  6. package/dist/lodestar-update.js +3 -3
  7. package/dist/lodestar.js +272 -173
  8. package/package.json +17 -6
  9. /package/node_modules/{commander → speech-rule-engine/node_modules/commander}/LICENSE +0 -0
  10. /package/node_modules/{commander → speech-rule-engine/node_modules/commander}/Readme.md +0 -0
  11. /package/node_modules/{commander → speech-rule-engine/node_modules/commander}/esm.mjs +0 -0
  12. /package/node_modules/{commander → speech-rule-engine/node_modules/commander}/index.js +0 -0
  13. /package/node_modules/{commander → speech-rule-engine/node_modules/commander}/lib/argument.js +0 -0
  14. /package/node_modules/{commander → speech-rule-engine/node_modules/commander}/lib/command.js +0 -0
  15. /package/node_modules/{commander → speech-rule-engine/node_modules/commander}/lib/error.js +0 -0
  16. /package/node_modules/{commander → speech-rule-engine/node_modules/commander}/lib/help.js +0 -0
  17. /package/node_modules/{commander → speech-rule-engine/node_modules/commander}/lib/option.js +0 -0
  18. /package/node_modules/{commander → speech-rule-engine/node_modules/commander}/lib/suggestSimilar.js +0 -0
  19. /package/node_modules/{commander → speech-rule-engine/node_modules/commander}/package-support.json +0 -0
  20. /package/node_modules/{commander → speech-rule-engine/node_modules/commander}/package.json +0 -0
  21. /package/node_modules/{commander → speech-rule-engine/node_modules/commander}/typings/esm.d.mts +0 -0
  22. /package/node_modules/{commander → speech-rule-engine/node_modules/commander}/typings/index.d.ts +0 -0
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@leviyuan/lodestar",
3
- "version": "0.16.5",
3
+ "version": "0.17.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "description": "Lodestar (夜航星) — IM-native frontend for Codex and Claude Agent SDK via Feishu Card Kit",
7
+ "description": "Lodestar (夜航星) — IM-native frontend for Codex, Claude Agent SDK and DeepSeek Harness via Feishu Card Kit",
8
8
  "type": "module",
9
9
  "packageManager": "bun@1.3.11",
10
10
  "license": "MIT",
@@ -41,9 +41,10 @@
41
41
  "build:update": "bun build src/update-cli.ts --target=node --minify --banner='#!/usr/bin/env node' --outfile=dist/lodestar-update.js",
42
42
  "build:version": "bun build src/version-cli.ts --target=node --minify --banner='#!/usr/bin/env node' --outfile=dist/lodestar-version.js",
43
43
  "build:agent": "bun build src/agent-cli.ts --target=node --minify --banner='#!/usr/bin/env node' --outfile=dist/lodestar-agent.js",
44
- "build": "bun run build:daemon && bun run build:setup && bun run build:stop && bun run build:update && bun run build:version && bun run build:agent",
44
+ "build": "bun run build:daemon && bun run build:setup && bun run build:stop && bun run build:update && bun run build:version && bun run build:agent && bun run build:dsh",
45
45
  "prepublishOnly": "bun run ci",
46
- "postinstall": "node scripts/postinstall.cjs"
46
+ "postinstall": "node scripts/postinstall.cjs",
47
+ "build:dsh": "bun build src/dsh-bridge.ts --target=node --packages=external --outfile=dist/dsh-bridge.js"
47
48
  },
48
49
  "bin": {
49
50
  "lodestar-daemon": "./dist/lodestar.js",
@@ -65,6 +66,12 @@
65
66
  "dependencies": {
66
67
  "@anthropic-ai/claude-agent-sdk": "^0.3.251",
67
68
  "@anthropic-ai/sdk": "^0.122.0",
69
+ "@deepseek-ai/cordis": "4.0.2",
70
+ "@deepseek-ai/dsh": "0.1.5-alpha.2",
71
+ "@deepseek-ai/dsh-agent": "0.1.5-alpha.2",
72
+ "@deepseek-ai/dsh-llm": "0.1.5-alpha.2",
73
+ "@deepseek-ai/dsh-scope": "0.1.5-alpha.2",
74
+ "@deepseek-ai/dsh-session": "0.1.5-alpha.2",
68
75
  "@larksuiteoapi/node-sdk": "^1.73.0",
69
76
  "@modelcontextprotocol/sdk": "^1.30.0",
70
77
  "@resvg/resvg-js": "^2.6.2",
@@ -89,7 +96,7 @@
89
96
  "@hono/node-server": "1.19.15",
90
97
  "@xmldom/xmldom": "0.9.12",
91
98
  "fast-uri": "3.1.6",
92
- "hono": "4.13.3",
99
+ "hono": "4.13.5",
93
100
  "ip-address": "10.5.0",
94
101
  "protobufjs": "7.6.5",
95
102
  "qs": "6.16.0",
@@ -100,5 +107,9 @@
100
107
  "@types/cross-spawn": "6.0.6",
101
108
  "@types/node": "18",
102
109
  "typescript": "5.9.3"
103
- }
110
+ },
111
+ "trustedDependencies": [
112
+ "@deepseek-ai/dsh-subprocess-local",
113
+ "koffi"
114
+ ]
104
115
  }