@michengai/dsh-codex-suite-installer 0.1.22 → 0.1.24
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 +2 -0
- package/README.zh-CN.md +2 -0
- package/installer.mjs +4 -2
- package/package.json +7 -5
package/README.md
CHANGED
|
@@ -3,3 +3,5 @@
|
|
|
3
3
|
`@michengai/dsh-codex-suite-installer` is not recommended for new installations. It is retained only to support migration and maintenance of existing profiles.
|
|
4
4
|
|
|
5
5
|
Install the feature products you need individually from their project pages or through the DSH plugin market. This package must not be used as a new-installation entry point.
|
|
6
|
+
|
|
7
|
+
Maintenance installs include eight members: Codex UI, Archive Manager, Skills Manager, Agency Agents, IM Connect, Automation, BTW, and Simplify. Member versions are pinned when the installer is released, rather than resolved again at installation time. Node.js 22.19.0 or later is required.
|
package/README.zh-CN.md
CHANGED
package/installer.mjs
CHANGED
|
@@ -9,7 +9,7 @@ export const WEB_BUNDLE = '@deepseek-ai/dsh-web-app'
|
|
|
9
9
|
|
|
10
10
|
const suiteManifest = JSON.parse(readFileSync(new URL('./package.json', import.meta.url), 'utf8'))
|
|
11
11
|
|
|
12
|
-
/**
|
|
12
|
+
/** 保留旧聚合包的成员顺序,新成员追加在末尾。 */
|
|
13
13
|
export const MEMBER_PACKAGES = [
|
|
14
14
|
'@michengai/dsh-archive-manager',
|
|
15
15
|
'@michengai/dsh-codex-ui',
|
|
@@ -17,6 +17,8 @@ export const MEMBER_PACKAGES = [
|
|
|
17
17
|
'@michengai/dsh-agency-agents',
|
|
18
18
|
'@michengai/dsh-im-connect',
|
|
19
19
|
'@michengai/dsh-automation',
|
|
20
|
+
'@michengai/dsh-btw',
|
|
21
|
+
'@michengai/dsh-simplify',
|
|
20
22
|
]
|
|
21
23
|
|
|
22
24
|
export function memberSpecs(manifest = suiteManifest) {
|
|
@@ -190,7 +192,7 @@ export function installSuite(argv = process.argv.slice(2)) {
|
|
|
190
192
|
}
|
|
191
193
|
runDsh(directInstallArgs(options.profile, options.registry), options)
|
|
192
194
|
if (options.dryRun) {
|
|
193
|
-
process.stdout.write(`> ensure ${WEB_BUNDLE} precedes the
|
|
195
|
+
process.stdout.write(`> ensure ${WEB_BUNDLE} precedes the ${MEMBER_PACKAGES.length} member bundles in ${manifestPath}\n`)
|
|
194
196
|
process.stdout.write(`> remove legacy ${SUITE_PACKAGE} and redundant direct ${WEB_BUNDLE} dependencies when present\n`)
|
|
195
197
|
return
|
|
196
198
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@michengai/dsh-codex-suite-installer",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "轻量 DSH Codex Suite
|
|
3
|
+
"version": "0.1.24",
|
|
4
|
+
"description": "轻量 DSH Codex Suite 安装器:将八个成员装为同一 profile 的直接插件",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"repository": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"url": "git+https://github.com/MichengAI/dsh-codex-ui.git"
|
|
10
10
|
},
|
|
11
11
|
"engines": {
|
|
12
|
-
"node": ">=22"
|
|
12
|
+
"node": ">=22.19.0"
|
|
13
13
|
},
|
|
14
14
|
"files": [
|
|
15
15
|
"bin.mjs",
|
|
@@ -27,11 +27,13 @@
|
|
|
27
27
|
"dshCodexSuite": {
|
|
28
28
|
"members": {
|
|
29
29
|
"@michengai/dsh-archive-manager": "0.1.30",
|
|
30
|
-
"@michengai/dsh-codex-ui": "0.2.
|
|
30
|
+
"@michengai/dsh-codex-ui": "0.2.106",
|
|
31
31
|
"@michengai/dsh-skills-manager": "0.1.40",
|
|
32
32
|
"@michengai/dsh-agency-agents": "0.1.32",
|
|
33
33
|
"@michengai/dsh-im-connect": "0.1.34",
|
|
34
|
-
"@michengai/dsh-automation": "0.1.32"
|
|
34
|
+
"@michengai/dsh-automation": "0.1.32",
|
|
35
|
+
"@michengai/dsh-btw": "0.1.3",
|
|
36
|
+
"@michengai/dsh-simplify": "0.1.2"
|
|
35
37
|
}
|
|
36
38
|
}
|
|
37
39
|
}
|