@lmzhen/dsh-evolution-maintenance 0.3.19 → 0.3.21

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.
@@ -7,7 +7,7 @@
7
7
  * when absent they stay `undefined`, which the signal layer reports as
8
8
  * `unknown` (never a fabricated verdict).
9
9
  */
10
- import type { DriftSkillSnapshot } from '@deepseek-ai/dsh-evolution-core';
10
+ import type { DriftSkillSnapshot } from '@lmzhen/dsh-evolution-core';
11
11
  /** Minimal SkillLibrary surface needed for snapshot assembly. */
12
12
  export interface SkillLibraryLike {
13
13
  list(): Promise<ReadonlyArray<{
@@ -7,7 +7,7 @@
7
7
  * enrichment at all).
8
8
  */
9
9
  import type { Context } from '@deepseek-ai/cordis';
10
- import { type SkillLibrary } from '@deepseek-ai/dsh-evolution-core';
10
+ import { type SkillLibrary } from '@lmzhen/dsh-evolution-core';
11
11
  export interface Enrichment {
12
12
  descriptions: ReadonlyMap<string, string>;
13
13
  supportFiles: ReadonlyMap<string, readonly string[]>;
@@ -7,7 +7,7 @@
7
7
  * The full service chain (commands → scan → render → subagent → validate)
8
8
  * is Phase 2; this module is the deterministic half, unit-testable without
9
9
  * a live library.
10
- * @module @deepseek-ai/dsh-evolution-maintenance
10
+ * @module @lmzhen/dsh-evolution-maintenance
11
11
  */
12
12
  export * from './drift-scan.ts';
13
13
  export * from './render-facts.ts';
@@ -4,7 +4,7 @@
4
4
  * text. Deterministic parts stay pure; the subagent call is the only
5
5
  * external dependency (injected, fake-able in tests).
6
6
  */
7
- import { type DriftReport, type DriftSkillSnapshot } from '@deepseek-ai/dsh-evolution-core';
7
+ import { type DriftReport, type DriftSkillSnapshot } from '@lmzhen/dsh-evolution-core';
8
8
  import { type SkillLibraryLike } from './drift-scan.ts';
9
9
  export interface MaintainRuntime {
10
10
  /** SkillLibrary-like reader for snapshot assembly. */
@@ -6,7 +6,7 @@
6
6
  * `narrowNameMatches` / `computeDedupGroups` / `computePrefixClusters`), so a
7
7
  * probe result can never disagree with the facts block. No IO, no writes.
8
8
  */
9
- import { type DriftSkillSnapshot } from '@deepseek-ai/dsh-evolution-core';
9
+ import { type DriftSkillSnapshot } from '@lmzhen/dsh-evolution-core';
10
10
  export declare const PROBE_SIGNALS: ReadonlyArray<string>;
11
11
  export interface ProbeResult {
12
12
  signal: string;
@@ -8,7 +8,7 @@
8
8
  * value/detail text passes through the optional redactor before it leaves
9
9
  * the session.
10
10
  */
11
- import { type DriftReport, type DriftSkillAssessment } from '@deepseek-ai/dsh-evolution-core';
11
+ import { type DriftReport, type DriftSkillAssessment } from '@lmzhen/dsh-evolution-core';
12
12
  export interface RenderFactsOptions {
13
13
  /** signals_version — changes whenever the signal set/thresholds change. */
14
14
  signalsVersion: string;
@@ -6,7 +6,7 @@
6
6
  * evidence). The subagent may use it to sharpen confidence and
7
7
  * semantic_reasoning; it must never introduce evidence ids outside the facts
8
8
  * block (validated plan-side). No write path exists in this tool.
9
- * @module @deepseek-ai/dsh-evolution-maintenance-tools
9
+ * @module @lmzhen/dsh-evolution-maintenance-tools
10
10
  */
11
11
  import type { Context } from '@deepseek-ai/cordis';
12
12
  export declare const name = "evolution-maintenance-tools";
@@ -7,7 +7,7 @@
7
7
  * and the quality_low=unknown global imposition. Never judges whether a
8
8
  * recommendation is right — only whether it is well-formed and traceable.
9
9
  */
10
- import { type DriftReport } from '@deepseek-ai/dsh-evolution-core';
10
+ import { type DriftReport } from '@lmzhen/dsh-evolution-core';
11
11
  export type MaintainVerdict = 'issues' | 'no_issues';
12
12
  export type MaintainPlanItemKind = 'skill-level' | 'relationship-level' | 'library-level';
13
13
  export type MaintainReversibility = 'archive' | 'restructure' | 'patch' | 'rename' | 'none';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lmzhen/dsh-evolution-maintenance",
3
3
  "description": "Deterministic maintenance-scan surface: skill-library snapshot assembly, drift signals and mechanical-facts rendering (design 011) (community build)",
4
- "version": "0.3.19",
4
+ "version": "0.3.21",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -34,7 +34,7 @@
34
34
  ],
35
35
  "license": "MIT",
36
36
  "dependencies": {
37
- "@lmzhen/dsh-evolution-core": "^0.3.19"
37
+ "@lmzhen/dsh-evolution-core": "^0.3.21"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",