ai-project-manage-cli 6.0.60 → 6.0.61
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/index.js +3 -13
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2675,16 +2675,6 @@ function createAppendMessageCustomTools(cfg, messageId) {
|
|
|
2675
2675
|
};
|
|
2676
2676
|
}
|
|
2677
2677
|
|
|
2678
|
-
// src/commands/connect/playwright-mcp.ts
|
|
2679
|
-
function createPlaywrightMcpServers() {
|
|
2680
|
-
return {
|
|
2681
|
-
playwright: {
|
|
2682
|
-
command: "npx",
|
|
2683
|
-
args: ["@playwright/mcp@latest", "--browser", "chrome", "--vision"]
|
|
2684
|
-
}
|
|
2685
|
-
};
|
|
2686
|
-
}
|
|
2687
|
-
|
|
2688
2678
|
// src/commands/connect/cursor-agent.ts
|
|
2689
2679
|
setMaxListeners2(50);
|
|
2690
2680
|
installAbortSignalDebug();
|
|
@@ -2712,8 +2702,8 @@ async function obtainAgent(ctx) {
|
|
|
2712
2702
|
model: { id: ctx.model || "default" },
|
|
2713
2703
|
local: {
|
|
2714
2704
|
cwd: ctx.cwd
|
|
2715
|
-
}
|
|
2716
|
-
mcpServers: createPlaywrightMcpServers()
|
|
2705
|
+
}
|
|
2706
|
+
// mcpServers: createPlaywrightMcpServers(),
|
|
2717
2707
|
};
|
|
2718
2708
|
const savedAgentId = ctx.user ? loadSessionAgentId(ctx.workdir, ctx.sessionId, ctx.user) : void 0;
|
|
2719
2709
|
if (savedAgentId) {
|
|
@@ -2781,7 +2771,7 @@ async function runCursorAgent(cfg, ctx, options) {
|
|
|
2781
2771
|
logAbortSignalStats(signal, "runCursorAgent:after-addListener");
|
|
2782
2772
|
try {
|
|
2783
2773
|
const run = await agent.send(prompt, {
|
|
2784
|
-
mcpServers: createPlaywrightMcpServers(),
|
|
2774
|
+
// mcpServers: createPlaywrightMcpServers(),
|
|
2785
2775
|
local: {
|
|
2786
2776
|
customTools: createAppendMessageCustomTools(cfg, ctx.messageId)
|
|
2787
2777
|
}
|