@lmzhen/dsh-evolution-review 0.1.0-rc.39 → 0.1.0-rc.40

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 +3 -1
  2. package/package.json +7 -7
package/lib/index.js CHANGED
@@ -308,7 +308,9 @@ function apply(ctx, rawConfig) {
308
308
  ok: false,
309
309
  message: "delete requires an existing absorbed_into target"
310
310
  };
311
- return await library.archive(name, { absorbedInto: into });
311
+ const archived = await library.archive(name, { absorbedInto: into });
312
+ if (archived.ok) await ctx.get("skillUsage")?.markArchived?.(name);
313
+ return archived;
312
314
  }
313
315
  if (op.action === "write_file") return await library.writeSupportFile(name, op.file_path ?? "", op.file_content ?? op.content ?? "", origin);
314
316
  if (op.action === "remove_file") return await library.removeSupportFile(name, op.file_path ?? "", origin);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-evolution-review",
3
3
  "description": "Background review orchestration (community build)",
4
- "version": "0.1.0-rc.39",
4
+ "version": "0.1.0-rc.40",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -33,8 +33,8 @@
33
33
  "license": "MIT",
34
34
  "dependencies": {
35
35
  "@deepseek-ai/schemastery": "^3.18.1",
36
- "@lmzhen/dsh-evolution-core": "^0.1.0-rc.39",
37
- "@lmzhen/dsh-evolution-plan-validator": "^0.1.0-rc.39"
36
+ "@lmzhen/dsh-evolution-core": "^0.1.0-rc.40",
37
+ "@lmzhen/dsh-evolution-plan-validator": "^0.1.0-rc.40"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "@deepseek-ai/cordis": "^4.0.1",
@@ -43,7 +43,7 @@
43
43
  "@deepseek-ai/dsh-llm": "^0.1.0-rc.6",
44
44
  "@deepseek-ai/dsh-session": "^0.1.0-rc.6",
45
45
  "@deepseek-ai/dsh-tools": "^0.1.0-rc.6",
46
- "@lmzhen/dsh-evolution-state": "^0.1.0-rc.39"
46
+ "@lmzhen/dsh-evolution-state": "^0.1.0-rc.40"
47
47
  },
48
48
  "devDependencies": {
49
49
  "@deepseek-ai/dsh-agent": "^0.1.0-rc.6",
@@ -52,8 +52,8 @@
52
52
  "@deepseek-ai/dsh-llm": "^0.1.0-rc.6",
53
53
  "@deepseek-ai/dsh-session": "^0.1.0-rc.6",
54
54
  "@deepseek-ai/dsh-tools": "^0.1.0-rc.6",
55
- "@lmzhen/dsh-evolution-core": "^0.1.0-rc.39",
56
- "@lmzhen/dsh-evolution-plan-validator": "^0.1.0-rc.39",
57
- "@lmzhen/dsh-evolution-state": "^0.1.0-rc.39"
55
+ "@lmzhen/dsh-evolution-core": "^0.1.0-rc.40",
56
+ "@lmzhen/dsh-evolution-plan-validator": "^0.1.0-rc.40",
57
+ "@lmzhen/dsh-evolution-state": "^0.1.0-rc.40"
58
58
  }
59
59
  }