agentquad 0.4.9 → 0.4.10
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-web/index.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
7
7
|
<title>AgentQuad</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-BwfZflW8.js"></script>
|
|
9
9
|
<link rel="stylesheet" crossorigin href="/assets/index-01ijE-nK.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
package/package.json
CHANGED
package/src/server.js
CHANGED
|
@@ -882,10 +882,17 @@ export function createServer(opts = {}) {
|
|
|
882
882
|
}
|
|
883
883
|
});
|
|
884
884
|
|
|
885
|
+
// All entries here share the VSCode-family CLI contract: `--new-window <cwd>` opens
|
|
886
|
+
// the workspace, `--goto file:line:col` jumps. New editors only fit here if they
|
|
887
|
+
// honor those two flags — otherwise extend the spawn logic below per-editor.
|
|
885
888
|
const EDITOR_BINS = {
|
|
886
889
|
"trae-cn": "/Applications/Trae CN.app/Contents/Resources/app/bin/trae-cn",
|
|
887
890
|
"trae": "/Applications/Trae.app/Contents/Resources/app/bin/trae",
|
|
888
891
|
"cursor": "/Applications/Cursor.app/Contents/Resources/app/bin/cursor",
|
|
892
|
+
"vscode": "/Applications/Visual Studio Code.app/Contents/Resources/app/bin/code",
|
|
893
|
+
"vscode-insiders":
|
|
894
|
+
"/Applications/Visual Studio Code - Insiders.app/Contents/Resources/app/bin/code",
|
|
895
|
+
"windsurf": "/Applications/Windsurf.app/Contents/Resources/app/bin/windsurf",
|
|
889
896
|
};
|
|
890
897
|
|
|
891
898
|
app.post("/api/system/open-trae", (req, res) => {
|