@lmzhen/dsh-skill-usage 0.1.0-rc.3 → 0.1.0-rc.31

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 -2
  2. package/package.json +5 -5
package/lib/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { Service } from "@deepseek-ai/cordis";
2
2
  import z from "@deepseek-ai/schemastery";
3
- import { bumpPatch, bumpUse, bumpView, evolutionIoAdapter, loadUsage, saveUsage, skillsRoot } from "@lmzhen/dsh-evolution-core";
3
+ import { bumpPatch, bumpUse, bumpView, evolutionIoAdapter, loadUsage, markAgentCreated, saveUsage, skillsRoot } from "@lmzhen/dsh-evolution-core";
4
4
  //#region lib/types/index.js
5
5
  /**
6
6
  * Skill usage telemetry service for the evolution family.
@@ -44,7 +44,6 @@ var SkillUsageRegistry = class extends Service {
44
44
  }
45
45
  async markAgentCreated(name) {
46
46
  await this.mutate(async (map) => {
47
- const { markAgentCreated } = await import("@lmzhen/dsh-evolution-core");
48
47
  markAgentCreated(map, name);
49
48
  await this.flush();
50
49
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-skill-usage",
3
3
  "description": "Skill usage telemetry service (community build)",
4
- "version": "0.1.0-rc.3",
4
+ "version": "0.1.0-rc.31",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -33,16 +33,16 @@
33
33
  "license": "MIT",
34
34
  "dependencies": {
35
35
  "@deepseek-ai/schemastery": "^3.18.1",
36
- "@lmzhen/dsh-evolution-core": "^0.1.0-rc.3"
36
+ "@lmzhen/dsh-evolution-core": "^0.1.0-rc.31"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@deepseek-ai/cordis": "^4.0.1",
40
40
  "@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
41
- "@lmzhen/dsh-evolution-io": "^0.1.0-rc.3"
41
+ "@lmzhen/dsh-evolution-io": "^0.1.0-rc.31"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
45
- "@lmzhen/dsh-evolution-core": "^0.1.0-rc.3",
46
- "@lmzhen/dsh-evolution-io": "^0.1.0-rc.3"
45
+ "@lmzhen/dsh-evolution-core": "^0.1.0-rc.31",
46
+ "@lmzhen/dsh-evolution-io": "^0.1.0-rc.31"
47
47
  }
48
48
  }