ai-project-manage-cli 8.1.3 → 8.1.4
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/dist/worker-script.js +3 -3
- package/package.json +1 -1
package/dist/worker-script.js
CHANGED
|
@@ -4386,8 +4386,8 @@ var WEBIDE_CODE_CHANGE_ACTIONS = /* @__PURE__ */ new Set([
|
|
|
4386
4386
|
function shouldCommitAfterWebIdeMessage(action) {
|
|
4387
4387
|
return WEBIDE_CODE_CHANGE_ACTIONS.has(action);
|
|
4388
4388
|
}
|
|
4389
|
-
function isStartLocalServicesAction(
|
|
4390
|
-
return
|
|
4389
|
+
function isStartLocalServicesAction(action) {
|
|
4390
|
+
return action === "enter-manual-test" || action === "skip-test" || action === "request-start-project";
|
|
4391
4391
|
}
|
|
4392
4392
|
function isDesignAction(action) {
|
|
4393
4393
|
return action === "request-design" || action === "request-revise-design";
|
|
@@ -4686,7 +4686,7 @@ ${assumptionAnswersText}` : msg2.content,
|
|
|
4686
4686
|
enableAskQuestion: false,
|
|
4687
4687
|
enableWebIdePlanTools: false,
|
|
4688
4688
|
enableMysqlTools: false,
|
|
4689
|
-
enablePtySessionMcp: startLocalServices,
|
|
4689
|
+
enablePtySessionMcp: startLocalServices || toolNames.includes("PtySession"),
|
|
4690
4690
|
sqlExecutionId,
|
|
4691
4691
|
toolNames,
|
|
4692
4692
|
enableSandbox: false,
|