@lmzhen/dsh-evolution-review 0.3.18 → 0.3.19
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/README.md +1 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ Independent of request-prefix construction. This package does not alter the asse
|
|
|
21
21
|
## Known Limitations and Deferred Work
|
|
22
22
|
|
|
23
23
|
|
|
24
|
-
- Review subagents
|
|
24
|
+
- Review subagents are spawned with the plain `skill` tool only (`reviewToolAllow` default and the host/preset config both = `[skill]` — the DSH tool catalog has no `skill_search`/`skill_load` discovery pair, so the Hermes-lineage Anchored Standard `skill_search`/`skill_load` allow-list does not exist here).
|
|
25
25
|
- Review subagents run as `spawn` children on the deployment default preset rather than inheriting the parent agent's composition (`fork`): a fork child is always promoted by the Anchored Standard bootstrap and its narrowed resident catalog would drop the plain `skill` tool from the review allow-list.
|
|
26
26
|
- The review request text is redacted for credential-shaped patterns before it reaches the subagent, but redaction is pattern-based and best-effort, not a security boundary.
|
|
27
27
|
- Read-before-write tracks only reads through the `skill` tool. `skill_manage` has no per-skill read action (`list`/`review` are whole-library, not targeted at one name), so a skill that was only listed via `skill_manage` is not marked as read — a background review may still reject a patch to it until it is actually loaded.
|
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.19",
|
|
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.3.
|
|
37
|
-
"@lmzhen/dsh-evolution-plan-validator": "^0.3.
|
|
36
|
+
"@lmzhen/dsh-evolution-core": "^0.3.19",
|
|
37
|
+
"@lmzhen/dsh-evolution-plan-validator": "^0.3.19"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"@deepseek-ai/dsh-llm": "^0.1.1-rc.2",
|
|
44
44
|
"@deepseek-ai/dsh-session": "^0.1.1-rc.2",
|
|
45
45
|
"@deepseek-ai/dsh-tools": "^0.1.1-rc.2",
|
|
46
|
-
"@lmzhen/dsh-evolution-state": "^0.3.
|
|
47
|
-
"@lmzhen/dsh-evolution-policy": "^0.3.
|
|
46
|
+
"@lmzhen/dsh-evolution-state": "^0.3.19",
|
|
47
|
+
"@lmzhen/dsh-evolution-policy": "^0.3.19"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@deepseek-ai/dsh-agent": "^0.1.1-rc.2",
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
"@deepseek-ai/dsh-session-persistence": "^0.1.1-rc.2",
|
|
56
56
|
"@deepseek-ai/dsh-session-persistence-jsonl": "^0.1.1-rc.2",
|
|
57
57
|
"@deepseek-ai/dsh-tools": "^0.1.1-rc.2",
|
|
58
|
-
"@lmzhen/dsh-evolution-approval": "^0.3.
|
|
59
|
-
"@lmzhen/dsh-evolution-core": "^0.3.
|
|
60
|
-
"@lmzhen/dsh-evolution-plan-validator": "^0.3.
|
|
61
|
-
"@lmzhen/dsh-evolution-state": "^0.3.
|
|
58
|
+
"@lmzhen/dsh-evolution-approval": "^0.3.19",
|
|
59
|
+
"@lmzhen/dsh-evolution-core": "^0.3.19",
|
|
60
|
+
"@lmzhen/dsh-evolution-plan-validator": "^0.3.19",
|
|
61
|
+
"@lmzhen/dsh-evolution-state": "^0.3.19"
|
|
62
62
|
}
|
|
63
63
|
}
|