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.
@@ -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(_action) {
4390
- return false;
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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-project-manage-cli",
3
- "version": "8.1.3",
3
+ "version": "8.1.4",
4
4
  "description": "命令行工具:后续用于调用平台后端 API 完成运维与自动化操作",
5
5
  "type": "module",
6
6
  "private": false,