@lmzhen/dsh-evolution-review 0.3.64 → 0.3.65
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 +1 -1
- package/package.json +10 -10
package/lib/index.js
CHANGED
|
@@ -16,7 +16,7 @@ const inject = ["agents"];
|
|
|
16
16
|
* start call; the outer catch logged it and silently degraded the review to
|
|
17
17
|
* the inject path. The schema and the assembly clamp both reject it (same
|
|
18
18
|
* bound as commands/maintenance). */
|
|
19
|
-
const MAX_TIMER_DELAY_MS =
|
|
19
|
+
const MAX_TIMER_DELAY_MS = 2147483647;
|
|
20
20
|
const Config = z.object({
|
|
21
21
|
reviewEnabled: z.boolean().default(true),
|
|
22
22
|
reviewMode: z.union([z.const("subagent"), z.const("inject")]).default("subagent"),
|
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.3.
|
|
4
|
+
"version": "0.3.65",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@deepseek-ai/schemastery": "^3.18.1",
|
|
34
|
-
"@lmzhen/dsh-evolution-approval": "^0.3.
|
|
35
|
-
"@lmzhen/dsh-evolution-core": "^0.3.
|
|
36
|
-
"@lmzhen/dsh-evolution-plan-validator": "^0.3.
|
|
34
|
+
"@lmzhen/dsh-evolution-approval": "^0.3.65",
|
|
35
|
+
"@lmzhen/dsh-evolution-core": "^0.3.65",
|
|
36
|
+
"@lmzhen/dsh-evolution-plan-validator": "^0.3.65"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"@deepseek-ai/dsh-llm": "^0.1.1-rc.2",
|
|
43
43
|
"@deepseek-ai/dsh-session": "^0.1.1-rc.2",
|
|
44
44
|
"@deepseek-ai/dsh-tools": "^0.1.1-rc.2",
|
|
45
|
-
"@lmzhen/dsh-evolution-state": "^0.3.
|
|
46
|
-
"@lmzhen/dsh-evolution-policy": "^0.3.
|
|
45
|
+
"@lmzhen/dsh-evolution-state": "^0.3.65",
|
|
46
|
+
"@lmzhen/dsh-evolution-policy": "^0.3.65"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@deepseek-ai/dsh-agent": "^0.1.1-rc.2",
|
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
"@deepseek-ai/dsh-session-persistence": "^0.1.1-rc.2",
|
|
55
55
|
"@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.1-rc.2",
|
|
56
56
|
"@deepseek-ai/dsh-tools": "^0.1.1-rc.2",
|
|
57
|
-
"@lmzhen/dsh-evolution-approval": "^0.3.
|
|
58
|
-
"@lmzhen/dsh-evolution-core": "^0.3.
|
|
59
|
-
"@lmzhen/dsh-evolution-plan-validator": "^0.3.
|
|
60
|
-
"@lmzhen/dsh-evolution-state": "^0.3.
|
|
57
|
+
"@lmzhen/dsh-evolution-approval": "^0.3.65",
|
|
58
|
+
"@lmzhen/dsh-evolution-core": "^0.3.65",
|
|
59
|
+
"@lmzhen/dsh-evolution-plan-validator": "^0.3.65",
|
|
60
|
+
"@lmzhen/dsh-evolution-state": "^0.3.65"
|
|
61
61
|
}
|
|
62
62
|
}
|