helloagents 3.0.37 → 3.0.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/.claude-plugin/plugin.json +1 -1
- package/.codex-plugin/plugin.json +1 -1
- package/README.md +15 -12
- package/README_CN.md +15 -12
- package/bootstrap-lite.md +3 -4
- package/bootstrap.md +3 -4
- package/gemini-extension.json +1 -1
- package/install.ps1 +3 -1
- package/install.sh +3 -1
- package/package.json +1 -1
- package/scripts/cli-codex-config.mjs +1 -26
- package/scripts/cli-codex.mjs +0 -10
- package/scripts/cli-doctor-codex.mjs +1 -7
- package/scripts/notify.mjs +4 -0
- package/scripts/project-session-cleanup.mjs +20 -54
- package/scripts/project-storage.mjs +2 -8
- package/scripts/runtime-scope.mjs +227 -50
- package/scripts/session-capsule.mjs +33 -12
- package/scripts/session-token.mjs +33 -1
- package/scripts/state-document.mjs +13 -58
- package/scripts/turn-state.mjs +2 -3
- package/scripts/workflow-core.mjs +1 -4
- package/scripts/workflow-plan-files.mjs +1 -1
|
@@ -15,10 +15,7 @@ export function getTargetPlans(snapshot) {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
function describeStateLabel(state) {
|
|
18
|
-
|
|
19
|
-
return '当前工作区默认位置的状态文件'
|
|
20
|
-
}
|
|
21
|
-
return '当前会话的状态文件'
|
|
18
|
+
return '当前工作区状态文件'
|
|
22
19
|
}
|
|
23
20
|
|
|
24
21
|
export function classifyPlan(plan) {
|
|
@@ -188,7 +188,7 @@ export function readStateSnapshot(cwd, options = {}) {
|
|
|
188
188
|
stateSessionToken: stateScope.stateSessionToken,
|
|
189
189
|
stateSessionMode: stateScope.stateSessionMode,
|
|
190
190
|
stateWorkspace: stateScope.stateWorkspace,
|
|
191
|
-
sessionScoped:
|
|
191
|
+
sessionScoped: true,
|
|
192
192
|
exists,
|
|
193
193
|
content,
|
|
194
194
|
sections,
|