@lmzhen/dsh-evolution-core 0.3.37 → 0.3.39
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 +6 -1
- package/lib/types/constants.d.ts +6 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -647,7 +647,12 @@ const MAX_SKILL_FILE_BYTES = 1048576;
|
|
|
647
647
|
const DEFAULT_REVIEW_MEMORY_INTERVAL = 10;
|
|
648
648
|
const DEFAULT_REVIEW_SKILL_INTERVAL = 10;
|
|
649
649
|
/** Skill-review completion channel trigger mode: 'cadence' | 'completion' | 'both'. */
|
|
650
|
-
|
|
650
|
+
/** Skill-review completion channel trigger mode: 'cadence' | 'completion' | 'both'.
|
|
651
|
+
* 0.3.39 (V6-53 follow-up): default is 'cadence' — since 0.3.38 the cadence
|
|
652
|
+
* channel's review is executed at conversation END (deferred), so 'both' would
|
|
653
|
+
* inject a second (task-complete) prompt at the same boundary; the cadence
|
|
654
|
+
* deferral alone IS the end-of-conversation summary. */
|
|
655
|
+
const DEFAULT_SKILL_REVIEW_TRIGGER = "cadence";
|
|
651
656
|
/** Cumulative session tool calls before a session counts as "proven long" for the completion channel. */
|
|
652
657
|
const DEFAULT_SKILL_REVIEW_COMPLETION_MIN_TOOL_CALLS = 20;
|
|
653
658
|
const DEFAULT_SUBSTANTIVE_MIN_TOOL_CALLS = 3;
|
package/lib/types/constants.d.ts
CHANGED
|
@@ -34,7 +34,12 @@ export declare const MAX_SKILL_FILE_BYTES = 1048576;
|
|
|
34
34
|
export declare const DEFAULT_REVIEW_MEMORY_INTERVAL = 10;
|
|
35
35
|
export declare const DEFAULT_REVIEW_SKILL_INTERVAL = 10;
|
|
36
36
|
/** Skill-review completion channel trigger mode: 'cadence' | 'completion' | 'both'. */
|
|
37
|
-
|
|
37
|
+
/** Skill-review completion channel trigger mode: 'cadence' | 'completion' | 'both'.
|
|
38
|
+
* 0.3.39 (V6-53 follow-up): default is 'cadence' — since 0.3.38 the cadence
|
|
39
|
+
* channel's review is executed at conversation END (deferred), so 'both' would
|
|
40
|
+
* inject a second (task-complete) prompt at the same boundary; the cadence
|
|
41
|
+
* deferral alone IS the end-of-conversation summary. */
|
|
42
|
+
export declare const DEFAULT_SKILL_REVIEW_TRIGGER: "cadence";
|
|
38
43
|
/** Cumulative session tool calls before a session counts as "proven long" for the completion channel. */
|
|
39
44
|
export declare const DEFAULT_SKILL_REVIEW_COMPLETION_MIN_TOOL_CALLS = 20;
|
|
40
45
|
export declare const DEFAULT_SUBSTANTIVE_MIN_TOOL_CALLS = 3;
|
package/package.json
CHANGED