@lmzhen/dsh-evolution-learning-graph 0.1.0-rc.30 → 0.1.0-rc.32

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 (2) hide show
  1. package/lib/index.js +1 -0
  2. package/package.json +2 -2
package/lib/index.js CHANGED
@@ -163,6 +163,7 @@ function apply(ctx) {
163
163
  if (parsed === null) return err(`Invalid node id "${id}". Skill names or memory:<source>:<index> expected.`);
164
164
  if (parsed.kind === "skill") {
165
165
  const result = await withSkills().archive(parsed.name);
166
+ if (result.ok) await usageService?.markArchived?.(parsed.name);
166
167
  return result.ok ? ok(result.message) : err(result.message);
167
168
  }
168
169
  const entries = await memory.read(parsed.source);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-evolution-learning-graph",
3
3
  "description": "Learning graph over skills and memory (community build)",
4
- "version": "0.1.0-rc.30",
4
+ "version": "0.1.0-rc.32",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -33,7 +33,7 @@
33
33
  "license": "MIT",
34
34
  "dependencies": {
35
35
  "@deepseek-ai/schemastery": "^3.18.1",
36
- "@lmzhen/dsh-evolution-core": "^0.1.0-rc.30"
36
+ "@lmzhen/dsh-evolution-core": "^0.1.0-rc.32"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",