@lmzhen/dsh-evolution-capability 0.1.0-rc.8 → 0.1.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.
package/lib/index.js CHANGED
@@ -51,7 +51,7 @@ var EvolutionCapability = class extends Service {
51
51
  });
52
52
  if (decision.action !== "staged") return {
53
53
  ok: false,
54
- message: "Capability submission was not staged."
54
+ message: "Capability submission requires staged approval: set approval.stageForeground=true (it keeps capability submissions paused for review; allow would bypass the audit)."
55
55
  };
56
56
  return {
57
57
  ok: true,
@@ -98,4 +98,4 @@ function validateCapabilityPackage(pkg, limits = {
98
98
  };
99
99
  }
100
100
  //#endregion
101
- export { CAPABILITY_NAME_RE, EvolutionCapability, EvolutionCapability as default, validateCapabilityPackage };
101
+ export { EvolutionCapability, EvolutionCapability as default, validateCapabilityPackage };
@@ -16,7 +16,6 @@ declare module '@deepseek-ai/cordis' {
16
16
  evolutionCapability: EvolutionCapability;
17
17
  }
18
18
  }
19
- export declare const CAPABILITY_NAME_RE: RegExp;
20
19
  export interface CapabilityPackage {
21
20
  name: string;
22
21
  purpose: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-evolution-capability",
3
3
  "description": "Explicit staged governance adapter for Creator-mode capability packages (community build)",
4
- "version": "0.1.0-rc.8",
4
+ "version": "0.1.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -35,19 +35,19 @@
35
35
  "@deepseek-ai/schemastery": "^3.18.1"
36
36
  },
37
37
  "peerDependencies": {
38
- "@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
38
+ "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
39
39
  "@deepseek-ai/cordis": "^4.0.1",
40
- "@lmzhen/dsh-evolution-approval": "^0.1.0-rc.8",
41
- "@lmzhen/dsh-evolution-state": "^0.1.0-rc.8",
42
- "@lmzhen/dsh-evolution-state-storage": "^0.1.0-rc.8"
40
+ "@lmzhen/dsh-evolution-approval": "^0.1.0",
41
+ "@lmzhen/dsh-evolution-state": "^0.1.0",
42
+ "@lmzhen/dsh-evolution-state-storage": "^0.1.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
46
- "@lmzhen/dsh-evolution-approval": "^0.1.0-rc.8",
47
- "@lmzhen/dsh-evolution-state": "^0.1.0-rc.8",
48
- "@lmzhen/dsh-evolution-state-storage": "^0.1.0-rc.8",
49
- "@lmzhen/dsh-evolution-io": "^0.1.0-rc.8",
50
- "@lmzhen/dsh-evolution-io-node": "^0.1.0-rc.8",
51
- "@lmzhen/dsh-evolution-state-json": "^0.1.0-rc.8"
45
+ "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
46
+ "@lmzhen/dsh-evolution-approval": "^0.1.0",
47
+ "@lmzhen/dsh-evolution-state": "^0.1.0",
48
+ "@lmzhen/dsh-evolution-state-storage": "^0.1.0",
49
+ "@lmzhen/dsh-evolution-io": "^0.1.0",
50
+ "@lmzhen/dsh-evolution-io-node": "^0.1.0",
51
+ "@lmzhen/dsh-evolution-state-json": "^0.1.0"
52
52
  }
53
53
  }