@lmzhen/dsh-evolution-all 0.0.0 → 0.3.12

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 ADDED
@@ -0,0 +1,22 @@
1
+ # dsh-evolution-all
2
+
3
+ One-command aggregate entry for the `@lmzhen/dsh-evolution` plugin family.
4
+
5
+ ```bash
6
+ dsh plugin --profile web add @lmzhen/dsh-evolution-all
7
+ ```
8
+
9
+ Installs the complete family through one package:
10
+
11
+ - `dsh-evolution-host` — infrastructure and control plane (review, curator,
12
+ approval, audit, observability, threat checks; its bundle patch carries the
13
+ profile composition rows).
14
+ - `dsh-tool-memory` / `dsh-tool-skill-manage` / `dsh-evolution-skill-catalog` —
15
+ the model-facing tool packages (mounted by the Evolution agent preset).
16
+
17
+ The package is deliberately passive: no composition rows of its own. Add it,
18
+ restart the profile, and select the **Evolution** agent preset for the sessions
19
+ that should expose self-evolution tools.
20
+
21
+ For fine-grained installs (host only, or host + selected tools), install the
22
+ packages individually — see the family [README](../README.md).
package/lib/index.js ADDED
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,8 @@
1
+ //#region lib/types/invariant.js
2
+ const PACKAGE_NAME = "@lmzhen/dsh-evolution-all";
3
+ const name = "dsh-evolution-all-invariant";
4
+ const inject = ["invariants"];
5
+ const install = () => {};
6
+ const apply = (ctx) => Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install));
7
+ //#endregion
8
+ export { apply, inject, name };
@@ -0,0 +1,14 @@
1
+ /**
2
+ * @deepseek-ai/dsh-evolution-all — aggregate entry package.
3
+ *
4
+ * Deliberately passive: no composition rows of its own. Its substance is the
5
+ * dependency closure — `evolution-host` (infrastructure + control plane) plus
6
+ * the three model-tool packages (`tool-memory`, `tool-skill-manage`,
7
+ * `evolution-skill-catalog`) — so `dsh plugin add @lmzhen/dsh-evolution-all`
8
+ * installs the complete family in one command (the host bundle's patch rows
9
+ * carry the profile composition; the model tools mount via the Evolution
10
+ * agent preset). This module carries no runtime API.
11
+ * @module @deepseek-ai/dsh-evolution-all
12
+ */
13
+ export {};
14
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,5 @@
1
+ import type { Context } from '@deepseek-ai/cordis';
2
+ export declare const name = "dsh-evolution-all-invariant";
3
+ export declare const inject: string[];
4
+ export declare const apply: (ctx: Context) => Promise<() => void>;
5
+ //# sourceMappingURL=invariant.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,47 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-evolution-all",
3
- "version": "0.0.0",
4
- "description": "Placeholder bootstrap for Trusted Publishing binding (removed after OIDC setup)",
5
- "license": "MIT"
3
+ "description": "One-command aggregate entry for the dsh-evolution plugin family (host + model tools) (community build)",
4
+ "version": "0.3.12",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/lmzhen/dsh-evolution.git",
11
+ "directory": "packages/dsh-evolution-all"
12
+ },
13
+ "type": "module",
14
+ "main": "lib/index.js",
15
+ "types": "lib/types/index.d.ts",
16
+ "exports": {
17
+ ".": {
18
+ "types": "./lib/types/index.d.ts",
19
+ "default": "./lib/index.js"
20
+ },
21
+ "./invariant": {
22
+ "types": "./lib/types/invariant.d.ts",
23
+ "default": "./lib/invariant.js"
24
+ },
25
+ "./package.json": "./package.json"
26
+ },
27
+ "files": [
28
+ "lib/index.js",
29
+ "lib/invariant.js",
30
+ "lib/types/**/*.d.ts"
31
+ ],
32
+ "license": "MIT",
33
+ "dependencies": {
34
+ "@lmzhen/dsh-evolution-host": "^0.3.12",
35
+ "@lmzhen/dsh-tool-memory": "^0.3.12",
36
+ "@lmzhen/dsh-tool-skill-manage": "^0.3.12",
37
+ "@lmzhen/dsh-evolution-skill-catalog": "^0.3.12"
38
+ },
39
+ "peerDependencies": {
40
+ "@deepseek-ai/cordis": "^4.0.1",
41
+ "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2"
42
+ },
43
+ "devDependencies": {
44
+ "@deepseek-ai/cordis": "^4.0.1",
45
+ "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2"
46
+ }
6
47
  }