@ran-sh/dsh-crew 0.5.0 → 0.5.2

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/lib/client.js CHANGED
@@ -192,6 +192,7 @@ function bridgeState(surface) {
192
192
  function projectHostReadiness({ installStatus, runtime, surface } = {}) {
193
193
  const codex = installStatus?.codex;
194
194
  const claude = installStatus?.claude;
195
+ const zcode = installStatus?.zcode;
195
196
  return [
196
197
  {
197
198
  id: "codex_mcp",
@@ -214,6 +215,18 @@ function projectHostReadiness({ installStatus, runtime, surface } = {}) {
214
215
  "permissions"
215
216
  ])
216
217
  },
218
+ {
219
+ id: "zcode_mcp",
220
+ state: componentState(zcode, [
221
+ "mcp",
222
+ "policy",
223
+ "worker_agent",
224
+ "reviewer_agent",
225
+ "config_prompt",
226
+ "status_prompt",
227
+ "ownership"
228
+ ])
229
+ },
217
230
  {
218
231
  id: "crew_harness",
219
232
  state: runtimeState(runtime),
@@ -354,7 +367,7 @@ const COPY = {
354
367
  jobCount: (count) => `${count} 个任务`,
355
368
  runningCount: (count) => `${count} 个运行中`,
356
369
  sectionNames: {
357
- integrations: "Codex / Claude 集成状态",
370
+ integrations: "Codex / Claude / ZCode 集成状态",
358
371
  workflow: "Crew 工作流设置",
359
372
  flash: "Worker / Flash",
360
373
  pro: "Reviewer / Pro",
@@ -374,6 +387,7 @@ const COPY = {
374
387
  ds_worker: "ds-worker",
375
388
  ds_reviewer: "ds-reviewer",
376
389
  claude_plugin: "Claude plugin",
390
+ zcode_mcp: "ZCode MCP",
377
391
  crew_harness: "Crew Harness",
378
392
  official_bridge: "Official bridge"
379
393
  },
@@ -602,6 +616,11 @@ const COPY = {
602
616
  install: "把 ds-flash / ds-pro 角色和 /dsh-config、/dsh-status 命令复制到 ~/.codex/(MCP 路径按本机自动渲染,含 approve 审批与超时配置)",
603
617
  update: "重新渲染并覆盖角色文件与命令(插件路径或配置变更后用);原文件先备份",
604
618
  restore: "删除 ~/.codex/ 下的 ds-flash / ds-pro 角色与 dsh 命令文件(角色文件先备份)"
619
+ },
620
+ zcode: {
621
+ install: "安装 ZCode 全局规则、ds-worker / ds-reviewer 角色、命令和按来源选择的 MCP 配置到 ~/.zcode/",
622
+ update: "重新渲染 ZCode 角色、命令和 MCP 条目;保留个人文件与其他 MCP 服务",
623
+ restore: "仅移除 dsh-crew 管理的 ZCode 文件和 MCP 条目(保留备份)"
605
624
  }
606
625
  }
607
626
  },
@@ -627,7 +646,7 @@ const COPY = {
627
646
  jobCount: (count) => `${count} jobs`,
628
647
  runningCount: (count) => `${count} running`,
629
648
  sectionNames: {
630
- integrations: "Codex / Claude integration status",
649
+ integrations: "Codex / Claude / ZCode integration status",
631
650
  workflow: "Crew workflow settings",
632
651
  flash: "Worker / Flash",
633
652
  pro: "Reviewer / Pro",
@@ -647,6 +666,7 @@ const COPY = {
647
666
  ds_worker: "ds-worker",
648
667
  ds_reviewer: "ds-reviewer",
649
668
  claude_plugin: "Claude plugin",
669
+ zcode_mcp: "ZCode MCP",
650
670
  crew_harness: "Crew Harness",
651
671
  official_bridge: "Official bridge"
652
672
  },
@@ -875,6 +895,11 @@ const COPY = {
875
895
  install: "Copy ds-flash / ds-pro roles and /dsh-config, /dsh-status prompts into ~/.codex/ (MCP paths rendered for this machine, approve mode + timeout included)",
876
896
  update: "Re-render and overwrite role files and prompts (after path/config changes); originals backed up",
877
897
  restore: "Delete ds-flash / ds-pro roles and dsh prompts from ~/.codex/ (roles backed up first)"
898
+ },
899
+ zcode: {
900
+ install: "Install the ZCode global policy, ds-worker / ds-reviewer agents, commands and source-aware MCP config under ~/.zcode/",
901
+ update: "Re-render ZCode agents, commands and MCP entry; user files and unrelated MCP servers are preserved",
902
+ restore: "Remove only dsh-crew-owned ZCode files and MCP entry (backups kept)"
878
903
  }
879
904
  }
880
905
  }
@@ -1879,6 +1904,10 @@ function WorkersPanel({ ctx }) {
1879
1904
  style: S.chip(!!status?.claude?.ready),
1880
1905
  children: ["Claude ", status?.claude?.ready ? "READY" : "CHECK"]
1881
1906
  }),
1907
+ /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("span", {
1908
+ style: S.chip(!!status?.zcode?.ready),
1909
+ children: ["ZCode ", status?.zcode?.ready ? "READY" : "CHECK"]
1910
+ }),
1882
1911
  /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("span", {
1883
1912
  style: S.chip(jobs.some((job) => job.status === "running")),
1884
1913
  children: [jobs.filter((job) => job.status === "running").length, " running"]
@@ -1954,7 +1983,7 @@ function WorkersPanel({ ctx }) {
1954
1983
  /* @__PURE__ */ (0, react_jsx_runtime.jsx)(CollapsibleSection, {
1955
1984
  sectionId: "integrations",
1956
1985
  title: copy.sectionNames.integrations,
1957
- summary: sectionSummary(status?.claude?.ready ? "Claude READY" : "Claude CHECK", status?.codex?.ready ? "Codex READY" : "Codex CHECK"),
1986
+ summary: sectionSummary(status?.claude?.ready ? "Claude READY" : "Claude CHECK", `${status?.codex?.ready ? "Codex READY" : "Codex CHECK"} · ${status?.zcode?.ready ? "ZCode READY" : "ZCode CHECK"}`),
1958
1987
  expanded: !!expandedSections.integrations,
1959
1988
  onToggle: () => toggleSection("integrations"),
1960
1989
  children: /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
@@ -2023,7 +2052,15 @@ function WorkersPanel({ ctx }) {
2023
2052
  opacity: .6
2024
2053
  },
2025
2054
  children: (status?.codex?.missing ?? []).join(" · ")
2026
- }), "codex", "codex-uninstall", copy.tips.codex)
2055
+ }), "codex", "codex-uninstall", copy.tips.codex),
2056
+ integrationRow("ZCode", !!status?.zcode?.installed, !!status?.zcode?.ready, status?.zcode?.ready ? null : /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
2057
+ title: (status?.zcode?.missing ?? []).join(", "),
2058
+ style: {
2059
+ fontSize: 11,
2060
+ opacity: .6
2061
+ },
2062
+ children: (status?.zcode?.missing ?? []).join(" · ")
2063
+ }), "zcode", "zcode-uninstall", copy.tips.zcode)
2027
2064
  ]
2028
2065
  })
2029
2066
  }),
@@ -192,6 +192,7 @@ function bridgeState(surface) {
192
192
  function projectHostReadiness({ installStatus, runtime, surface } = {}) {
193
193
  const codex = installStatus?.codex;
194
194
  const claude = installStatus?.claude;
195
+ const zcode = installStatus?.zcode;
195
196
  return [
196
197
  {
197
198
  id: "codex_mcp",
@@ -214,6 +215,18 @@ function projectHostReadiness({ installStatus, runtime, surface } = {}) {
214
215
  "permissions"
215
216
  ])
216
217
  },
218
+ {
219
+ id: "zcode_mcp",
220
+ state: componentState(zcode, [
221
+ "mcp",
222
+ "policy",
223
+ "worker_agent",
224
+ "reviewer_agent",
225
+ "config_prompt",
226
+ "status_prompt",
227
+ "ownership"
228
+ ])
229
+ },
217
230
  {
218
231
  id: "crew_harness",
219
232
  state: runtimeState(runtime),
@@ -354,7 +367,7 @@ const COPY = {
354
367
  jobCount: (count) => `${count} 个任务`,
355
368
  runningCount: (count) => `${count} 个运行中`,
356
369
  sectionNames: {
357
- integrations: "Codex / Claude 集成状态",
370
+ integrations: "Codex / Claude / ZCode 集成状态",
358
371
  workflow: "Crew 工作流设置",
359
372
  flash: "Worker / Flash",
360
373
  pro: "Reviewer / Pro",
@@ -374,6 +387,7 @@ const COPY = {
374
387
  ds_worker: "ds-worker",
375
388
  ds_reviewer: "ds-reviewer",
376
389
  claude_plugin: "Claude plugin",
390
+ zcode_mcp: "ZCode MCP",
377
391
  crew_harness: "Crew Harness",
378
392
  official_bridge: "Official bridge"
379
393
  },
@@ -602,6 +616,11 @@ const COPY = {
602
616
  install: "把 ds-flash / ds-pro 角色和 /dsh-config、/dsh-status 命令复制到 ~/.codex/(MCP 路径按本机自动渲染,含 approve 审批与超时配置)",
603
617
  update: "重新渲染并覆盖角色文件与命令(插件路径或配置变更后用);原文件先备份",
604
618
  restore: "删除 ~/.codex/ 下的 ds-flash / ds-pro 角色与 dsh 命令文件(角色文件先备份)"
619
+ },
620
+ zcode: {
621
+ install: "安装 ZCode 全局规则、ds-worker / ds-reviewer 角色、命令和按来源选择的 MCP 配置到 ~/.zcode/",
622
+ update: "重新渲染 ZCode 角色、命令和 MCP 条目;保留个人文件与其他 MCP 服务",
623
+ restore: "仅移除 dsh-crew 管理的 ZCode 文件和 MCP 条目(保留备份)"
605
624
  }
606
625
  }
607
626
  },
@@ -627,7 +646,7 @@ const COPY = {
627
646
  jobCount: (count) => `${count} jobs`,
628
647
  runningCount: (count) => `${count} running`,
629
648
  sectionNames: {
630
- integrations: "Codex / Claude integration status",
649
+ integrations: "Codex / Claude / ZCode integration status",
631
650
  workflow: "Crew workflow settings",
632
651
  flash: "Worker / Flash",
633
652
  pro: "Reviewer / Pro",
@@ -647,6 +666,7 @@ const COPY = {
647
666
  ds_worker: "ds-worker",
648
667
  ds_reviewer: "ds-reviewer",
649
668
  claude_plugin: "Claude plugin",
669
+ zcode_mcp: "ZCode MCP",
650
670
  crew_harness: "Crew Harness",
651
671
  official_bridge: "Official bridge"
652
672
  },
@@ -875,6 +895,11 @@ const COPY = {
875
895
  install: "Copy ds-flash / ds-pro roles and /dsh-config, /dsh-status prompts into ~/.codex/ (MCP paths rendered for this machine, approve mode + timeout included)",
876
896
  update: "Re-render and overwrite role files and prompts (after path/config changes); originals backed up",
877
897
  restore: "Delete ds-flash / ds-pro roles and dsh prompts from ~/.codex/ (roles backed up first)"
898
+ },
899
+ zcode: {
900
+ install: "Install the ZCode global policy, ds-worker / ds-reviewer agents, commands and source-aware MCP config under ~/.zcode/",
901
+ update: "Re-render ZCode agents, commands and MCP entry; user files and unrelated MCP servers are preserved",
902
+ restore: "Remove only dsh-crew-owned ZCode files and MCP entry (backups kept)"
878
903
  }
879
904
  }
880
905
  }
@@ -1879,6 +1904,10 @@ function WorkersPanel({ ctx }) {
1879
1904
  style: S.chip(!!status?.claude?.ready),
1880
1905
  children: ["Claude ", status?.claude?.ready ? "READY" : "CHECK"]
1881
1906
  }),
1907
+ /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("span", {
1908
+ style: S.chip(!!status?.zcode?.ready),
1909
+ children: ["ZCode ", status?.zcode?.ready ? "READY" : "CHECK"]
1910
+ }),
1882
1911
  /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("span", {
1883
1912
  style: S.chip(jobs.some((job) => job.status === "running")),
1884
1913
  children: [jobs.filter((job) => job.status === "running").length, " running"]
@@ -1954,7 +1983,7 @@ function WorkersPanel({ ctx }) {
1954
1983
  /* @__PURE__ */ (0, react_jsx_runtime.jsx)(CollapsibleSection, {
1955
1984
  sectionId: "integrations",
1956
1985
  title: copy.sectionNames.integrations,
1957
- summary: sectionSummary(status?.claude?.ready ? "Claude READY" : "Claude CHECK", status?.codex?.ready ? "Codex READY" : "Codex CHECK"),
1986
+ summary: sectionSummary(status?.claude?.ready ? "Claude READY" : "Claude CHECK", `${status?.codex?.ready ? "Codex READY" : "Codex CHECK"} · ${status?.zcode?.ready ? "ZCode READY" : "ZCode CHECK"}`),
1958
1987
  expanded: !!expandedSections.integrations,
1959
1988
  onToggle: () => toggleSection("integrations"),
1960
1989
  children: /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
@@ -2023,7 +2052,15 @@ function WorkersPanel({ ctx }) {
2023
2052
  opacity: .6
2024
2053
  },
2025
2054
  children: (status?.codex?.missing ?? []).join(" · ")
2026
- }), "codex", "codex-uninstall", copy.tips.codex)
2055
+ }), "codex", "codex-uninstall", copy.tips.codex),
2056
+ integrationRow("ZCode", !!status?.zcode?.installed, !!status?.zcode?.ready, status?.zcode?.ready ? null : /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
2057
+ title: (status?.zcode?.missing ?? []).join(", "),
2058
+ style: {
2059
+ fontSize: 11,
2060
+ opacity: .6
2061
+ },
2062
+ children: (status?.zcode?.missing ?? []).join(" · ")
2063
+ }), "zcode", "zcode-uninstall", copy.tips.zcode)
2027
2064
  ]
2028
2065
  })
2029
2066
  }),
package/package.json CHANGED
@@ -1,137 +1,166 @@
1
- {
2
- "name": "@ran-sh/dsh-crew",
3
- "version": "0.5.0",
4
- "type": "module",
5
- "main": "./src/hub/entry.mjs",
6
- "bin": {
7
- "dsh-crew": "bin/dsh-crew.mjs"
8
- },
9
- "description": "DeepSeek Harness plugin: dispatch work to DSH agents from Claude Code / Codex, as native subagents with live progress",
10
- "dsh": {
11
- "bundle": {
12
- "patch": "./cordis.patch.yml"
13
- },
14
- "client": {
15
- "inject": [
16
- "@deepseek-ai/dsh-client-runtime",
17
- "@deepseek-ai/dsh-client-locale",
18
- "@deepseek-ai/dsh-client-ui-slots",
19
- "@deepseek-ai/dsh-client-ui-settings"
20
- ],
21
- "platform": "web"
22
- }
23
- },
24
- "scripts": {
25
- "mcp": "node src/server.mjs",
26
- "build:client": "tsdown src/client/entry.tsx --format cjs --platform browser --target es2022 --tsconfig tsconfig.client.json --deps.never-bundle react --deps.never-bundle react/jsx-runtime --deps.never-bundle react-dom --deps.never-bundle react-dom/client --out-dir .client-build --clean --logLevel warn && node scripts/build-client.mjs",
27
- "verify:npm-install": "node scripts/verify-npm-install.mjs",
28
- "verify:npm-install:official": "node scripts/verify-npm-install.mjs --with-official-dsh",
29
- "verify:official-bridge": "node scripts/verify-official-bridge-e2e.mjs"
30
- },
31
- "dependencies": {
32
- "@modelcontextprotocol/sdk": "^1.25.4",
33
- "zod": "^3.24.0"
34
- },
35
- "exports": {
36
- ".": "./src/hub/entry.mjs",
37
- "./client": "./lib/client.js",
38
- "./package.json": "./package.json"
39
- },
40
- "peerDependencies": {
41
- "react": "^18.0.0",
42
- "react-dom": "^18.0.0",
43
- "@deepseek-ai/dsh-agent": "0.1.1-rc.2",
44
- "@deepseek-ai/dsh-agent-presets": "0.1.1-rc.2",
45
- "@deepseek-ai/dsh-agent-spine-demo": "0.1.1-rc.2",
46
- "@deepseek-ai/dsh-bash-local": "0.1.1-rc.2",
47
- "@deepseek-ai/dsh-compaction-basic": "0.1.1-rc.2",
48
- "@deepseek-ai/dsh-fs-local": "0.1.1-rc.2",
49
- "@deepseek-ai/dsh-fs-observation-policy": "0.1.1-rc.2",
50
- "@deepseek-ai/dsh-llm": "0.1.1-rc.2",
51
- "@deepseek-ai/dsh-llm-deepseek": "0.1.1-rc.2",
52
- "@deepseek-ai/dsh-sandbox-local": "0.1.1-rc.2",
53
- "@deepseek-ai/dsh-sandbox-policy": "0.1.1-rc.2",
54
- "@deepseek-ai/dsh-sdk-client": "0.1.1-rc.2",
55
- "@deepseek-ai/dsh-sdk-jsonrpc-demo": "0.1.1-rc.2",
56
- "@deepseek-ai/dsh-sdk-jsonrpc-server": "0.1.1-rc.2",
57
- "@deepseek-ai/dsh-session": "0.1.1-rc.2",
58
- "@deepseek-ai/dsh-session-persistence-jsonl": "0.1.1-rc.2",
59
- "@deepseek-ai/dsh-subprocess-local": "0.1.1-rc.2",
60
- "@deepseek-ai/dsh-token-meter": "0.1.1-rc.2",
61
- "@deepseek-ai/dsh-tool-fs": "0.1.1-rc.2",
62
- "@deepseek-ai/dsh-tool-todo": "0.1.1-rc.2"
63
- },
64
- "devDependencies": {
65
- "react": "^18.3.1",
66
- "react-dom": "^18.3.1",
67
- "tsdown": "^0.12.0",
68
- "typescript": "^5.6.0",
69
- "@types/react": "^18.3.0",
70
- "@deepseek-ai/dsh-agent": "0.1.1-rc.2",
71
- "@deepseek-ai/dsh-agent-presets": "0.1.1-rc.2",
72
- "@deepseek-ai/dsh-agent-spine-demo": "0.1.1-rc.2",
73
- "@deepseek-ai/dsh-bash-local": "0.1.1-rc.2",
74
- "@deepseek-ai/dsh-compaction-basic": "0.1.1-rc.2",
75
- "@deepseek-ai/dsh-fs-local": "0.1.1-rc.2",
76
- "@deepseek-ai/dsh-fs-observation-policy": "0.1.1-rc.2",
77
- "@deepseek-ai/dsh-llm": "0.1.1-rc.2",
78
- "@deepseek-ai/dsh-llm-deepseek": "0.1.1-rc.2",
79
- "@deepseek-ai/dsh-sandbox-local": "0.1.1-rc.2",
80
- "@deepseek-ai/dsh-sandbox-policy": "0.1.1-rc.2",
81
- "@deepseek-ai/dsh-sdk-client": "0.1.1-rc.2",
82
- "@deepseek-ai/dsh-sdk-jsonrpc-demo": "0.1.1-rc.2",
83
- "@deepseek-ai/dsh-sdk-jsonrpc-server": "0.1.1-rc.2",
84
- "@deepseek-ai/dsh-session": "0.1.1-rc.2",
85
- "@deepseek-ai/dsh-session-persistence-jsonl": "0.1.1-rc.2",
86
- "@deepseek-ai/dsh-subprocess-local": "0.1.1-rc.2",
87
- "@deepseek-ai/dsh-token-meter": "0.1.1-rc.2",
88
- "@deepseek-ai/dsh-tool-fs": "0.1.1-rc.2",
89
- "@deepseek-ai/dsh-tool-todo": "0.1.1-rc.2"
90
- },
91
- "license": "MIT",
92
- "repository": {
93
- "type": "git",
94
- "url": "git+https://github.com/Ran-sh/dsh-crew.git"
95
- },
96
- "homepage": "https://github.com/Ran-sh/dsh-crew",
97
- "bugs": {
98
- "url": "https://github.com/Ran-sh/dsh-crew/issues"
99
- },
100
- "keywords": [
101
- "dsh",
102
- "deepseek",
103
- "claude-code",
104
- "codex",
105
- "subagent",
106
- "worker",
107
- "multimodal",
108
- "plugin",
109
- "agent"
110
- ],
111
- "files": [
112
- "bin",
113
- "lib",
114
- "src",
115
- "scripts",
116
- "agents",
117
- "commands",
118
- "codex",
119
- "statusline",
120
- "official-web-bridge",
121
- "cordis.patch.yml",
122
- "worker.cordis.yml",
123
- ".claude-plugin",
124
- ".mcp.json",
125
- "README.md",
126
- "README.*.md",
1
+ {
2
+ "name": "@ran-sh/dsh-crew",
3
+ "version": "0.5.2",
4
+ "type": "module",
5
+ "main": "./src/hub/entry.mjs",
6
+ "bin": {
7
+ "dsh-crew": "bin/dsh-crew.mjs"
8
+ },
9
+ "description": "DeepSeek Harness plugin: dispatch work to DSH agents from Claude Code / Codex, as native subagents with live progress",
10
+ "dsh": {
11
+ "bundle": {
12
+ "patch": "./cordis.patch.yml"
13
+ },
14
+ "client": {
15
+ "inject": [
16
+ "@deepseek-ai/dsh-client-runtime",
17
+ "@deepseek-ai/dsh-client-locale",
18
+ "@deepseek-ai/dsh-client-ui-slots",
19
+ "@deepseek-ai/dsh-client-ui-settings"
20
+ ],
21
+ "platform": "web"
22
+ }
23
+ },
24
+ "scripts": {
25
+ "mcp": "node src/server.mjs",
26
+ "build:client": "tsdown src/client/entry.tsx --format cjs --platform browser --target es2022 --tsconfig tsconfig.client.json --deps.never-bundle react --deps.never-bundle react/jsx-runtime --deps.never-bundle react-dom --deps.never-bundle react-dom/client --out-dir .client-build --clean --logLevel warn && node scripts/build-client.mjs",
27
+ "verify:npm-install": "node scripts/verify-npm-install.mjs",
28
+ "verify:npm-install:official": "node scripts/verify-npm-install.mjs --with-official-dsh",
29
+ "verify:official-bridge": "node scripts/verify-official-bridge-e2e.mjs"
30
+ },
31
+ "dependencies": {
32
+ "@modelcontextprotocol/sdk": "^1.25.4",
33
+ "zod": "^3.24.0"
34
+ },
35
+ "exports": {
36
+ ".": "./src/hub/entry.mjs",
37
+ "./client": "./lib/client.js",
38
+ "./package.json": "./package.json"
39
+ },
40
+ "peerDependencies": {
41
+ "@deepseek-ai/dsh-agent": "0.1.1-rc.2",
42
+ "@deepseek-ai/dsh-agent-presets": "0.1.1-rc.2",
43
+ "@deepseek-ai/dsh-agent-spine-demo": "0.1.1-rc.2",
44
+ "@deepseek-ai/dsh-bash-local": "0.1.1-rc.2",
45
+ "@deepseek-ai/dsh-compaction-basic": "0.1.1-rc.2",
46
+ "@deepseek-ai/dsh-fs-local": "0.1.1-rc.2",
47
+ "@deepseek-ai/dsh-fs-observation-policy": "0.1.1-rc.2",
48
+ "@deepseek-ai/dsh-llm": "0.1.1-rc.2",
49
+ "@deepseek-ai/dsh-llm-deepseek": "0.1.1-rc.2",
50
+ "@deepseek-ai/dsh-sandbox-local": "0.1.1-rc.2",
51
+ "@deepseek-ai/dsh-sandbox-policy": "0.1.1-rc.2",
52
+ "@deepseek-ai/dsh-sdk-client": "0.1.1-rc.2",
53
+ "@deepseek-ai/dsh-sdk-jsonrpc-demo": "0.1.1-rc.2",
54
+ "@deepseek-ai/dsh-sdk-jsonrpc-server": "0.1.1-rc.2",
55
+ "@deepseek-ai/dsh-session": "0.1.1-rc.2",
56
+ "@deepseek-ai/dsh-session-persistence-jsonl": "0.1.1-rc.2",
57
+ "@deepseek-ai/dsh-subprocess-local": "0.1.1-rc.2",
58
+ "@deepseek-ai/dsh-token-meter": "0.1.1-rc.2",
59
+ "@deepseek-ai/dsh-tool-fs": "0.1.1-rc.2",
60
+ "@deepseek-ai/dsh-tool-todo": "0.1.1-rc.2",
61
+ "react": "^18.0.0",
62
+ "react-dom": "^18.0.0"
63
+ },
64
+ "peerDependenciesMeta": {
65
+ "@deepseek-ai/dsh-agent": { "optional": true },
66
+ "@deepseek-ai/dsh-agent-presets": { "optional": true },
67
+ "@deepseek-ai/dsh-agent-spine-demo": { "optional": true },
68
+ "@deepseek-ai/dsh-bash-local": { "optional": true },
69
+ "@deepseek-ai/dsh-compaction-basic": { "optional": true },
70
+ "@deepseek-ai/dsh-fs-local": { "optional": true },
71
+ "@deepseek-ai/dsh-fs-observation-policy": { "optional": true },
72
+ "@deepseek-ai/dsh-llm": { "optional": true },
73
+ "@deepseek-ai/dsh-llm-deepseek": { "optional": true },
74
+ "@deepseek-ai/dsh-sandbox-local": { "optional": true },
75
+ "@deepseek-ai/dsh-sandbox-policy": { "optional": true },
76
+ "@deepseek-ai/dsh-sdk-client": { "optional": true },
77
+ "@deepseek-ai/dsh-sdk-jsonrpc-demo": { "optional": true },
78
+ "@deepseek-ai/dsh-sdk-jsonrpc-server": { "optional": true },
79
+ "@deepseek-ai/dsh-session": { "optional": true },
80
+ "@deepseek-ai/dsh-session-persistence-jsonl": { "optional": true },
81
+ "@deepseek-ai/dsh-subprocess-local": { "optional": true },
82
+ "@deepseek-ai/dsh-token-meter": { "optional": true },
83
+ "@deepseek-ai/dsh-tool-fs": { "optional": true },
84
+ "@deepseek-ai/dsh-tool-todo": { "optional": true },
85
+ "react": { "optional": true },
86
+ "react-dom": { "optional": true }
87
+ },
88
+ "devDependencies": {
89
+ "@deepseek-ai/dsh-agent": "0.1.1-rc.2",
90
+ "@deepseek-ai/dsh-agent-presets": "0.1.1-rc.2",
91
+ "@deepseek-ai/dsh-agent-spine-demo": "0.1.1-rc.2",
92
+ "@deepseek-ai/dsh-bash-local": "0.1.1-rc.2",
93
+ "@deepseek-ai/dsh-compaction-basic": "0.1.1-rc.2",
94
+ "@deepseek-ai/dsh-fs-local": "0.1.1-rc.2",
95
+ "@deepseek-ai/dsh-fs-observation-policy": "0.1.1-rc.2",
96
+ "@deepseek-ai/dsh-llm": "0.1.1-rc.2",
97
+ "@deepseek-ai/dsh-llm-deepseek": "0.1.1-rc.2",
98
+ "@deepseek-ai/dsh-sandbox-local": "0.1.1-rc.2",
99
+ "@deepseek-ai/dsh-sandbox-policy": "0.1.1-rc.2",
100
+ "@deepseek-ai/dsh-sdk-client": "0.1.1-rc.2",
101
+ "@deepseek-ai/dsh-sdk-jsonrpc-demo": "0.1.1-rc.2",
102
+ "@deepseek-ai/dsh-sdk-jsonrpc-server": "0.1.1-rc.2",
103
+ "@deepseek-ai/dsh-session": "0.1.1-rc.2",
104
+ "@deepseek-ai/dsh-session-persistence-jsonl": "0.1.1-rc.2",
105
+ "@deepseek-ai/dsh-subprocess-local": "0.1.1-rc.2",
106
+ "@deepseek-ai/dsh-token-meter": "0.1.1-rc.2",
107
+ "@deepseek-ai/dsh-tool-fs": "0.1.1-rc.2",
108
+ "@deepseek-ai/dsh-tool-todo": "0.1.1-rc.2",
109
+ "@types/react": "^18.3.0",
110
+ "react": "^18.3.1",
111
+ "react-dom": "^18.3.1",
112
+ "tsdown": "0.22.14",
113
+ "typescript": "^5.6.0"
114
+ },
115
+ "license": "MIT",
116
+ "repository": {
117
+ "type": "git",
118
+ "url": "git+https://github.com/Ran-sh/dsh-crew.git"
119
+ },
120
+ "homepage": "https://github.com/Ran-sh/dsh-crew",
121
+ "bugs": {
122
+ "url": "https://github.com/Ran-sh/dsh-crew/issues"
123
+ },
124
+ "keywords": [
125
+ "dsh",
126
+ "deepseek",
127
+ "claude-code",
128
+ "codex",
129
+ "zcode",
130
+ "windows",
131
+ "subagent",
132
+ "worker",
133
+ "multimodal",
134
+ "plugin",
135
+ "agent"
136
+ ],
137
+ "files": [
138
+ "bin",
139
+ "lib",
140
+ "src",
141
+ "scripts",
142
+ "agents",
143
+ "commands",
144
+ "codex",
145
+ "zcode",
146
+ "statusline",
147
+ "official-web-bridge",
148
+ "windows",
149
+ "cordis.patch.yml",
150
+ "worker.cordis.yml",
151
+ ".claude-plugin",
152
+ ".mcp.json",
153
+ "README.md",
154
+ "README.*.md",
127
155
  "docs/job-contracts.md",
128
156
  "docs/readiness-matrix.md",
129
157
  "docs/gpt-relay-extension.md",
130
158
  "docs/ui-surfaces.md",
131
- "docs/images/dsh-crew-logo.png",
132
- "docs/images/dsh-crew-overview.png",
133
- "docs/images/dsh-crew-host.png",
134
- "docs/images/dsh-crew-jobs.png",
135
- "LICENSE"
136
- ]
137
- }
159
+ "docs/installation.md",
160
+ "docs/images/dsh-crew-logo.png",
161
+ "docs/images/dsh-crew-overview.png",
162
+ "docs/images/dsh-crew-host.png",
163
+ "docs/images/dsh-crew-jobs.png",
164
+ "LICENSE"
165
+ ]
166
+ }