openfox 2.0.58 → 2.0.60
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/agent-defaults/explorer.agent.md +4 -0
- package/dist/{branch.api-5DMEAIBI.js → branch.api-LAN42BA5.js} +3 -2
- package/dist/{chat-handler-W5D5LKKU.js → chat-handler-MBR6ZQTX.js} +7 -7
- package/dist/{chunk-LAWUUAN7.js → chunk-3JRYK5UG.js} +323 -80
- package/dist/{chunk-YMEZFRY2.js → chunk-43UFGATL.js} +5 -5
- package/dist/{chunk-BIWVYBIE.js → chunk-BGTEIA2S.js} +4 -3
- package/dist/{chunk-UDZNMYWN.js → chunk-DEWNWF2P.js} +519 -280
- package/dist/{chunk-CFLGVCYT.js → chunk-DOJKA4XO.js} +20 -9
- package/dist/{chunk-55VITQP3.js → chunk-MTBQQ5DN.js} +9 -9
- package/dist/{chunk-XR2XC7WM.js → chunk-NY6IGGKZ.js} +3 -3
- package/dist/{chunk-ADOXTORQ.js → chunk-PK2RMVMB.js} +2 -2
- package/dist/{chunk-CDRQJDSJ.js → chunk-WNSAJCWT.js} +3 -2
- package/dist/cli/dev.js +2 -2
- package/dist/cli/index.js +2 -2
- package/dist/{config-C2YDEF3N.js → config-GMQUPNBY.js} +2 -2
- package/dist/{manager-CZOVNTSN.js → manager-344C5JLZ.js} +3 -3
- package/dist/{orchestrator-Q47D6JXG.js → orchestrator-PIZJ42J2.js} +7 -7
- package/dist/package.json +4 -2
- package/dist/{permissions-QLHZUEGW.js → permissions-CGEK3DGZ.js} +21 -17
- package/dist/{processor-2YJ33KUH.js → processor-PKKTNKWY.js} +7 -7
- package/dist/{project-creator-7RBHP6K6.js → project-creator-IDW7RACH.js} +4 -4
- package/dist/{protocol-PSKVUhdN.d.ts → protocol-J7khRG62.d.ts} +2 -0
- package/dist/{provider-SNXYPSPH.js → provider-LBYBC5AG.js} +3 -3
- package/dist/{pwa-M6QZ52ZO.js → pwa-T6JRAYJB.js} +11 -10
- package/dist/{serve-LOPGRMFP.js → serve-GKS55Y2C.js} +9 -9
- package/dist/server/index.d.ts +1 -1
- package/dist/server/index.js +8 -8
- package/dist/{server-XUDZRBD3.js → server-LMH7ZH5X.js} +8 -8
- package/dist/{service-YYJ5Y7CN.js → service-6DL3MJZD.js} +7 -5
- package/dist/{settings-X43DCM55.js → settings-2TQA7VTP.js} +2 -2
- package/dist/shared/index.d.ts +2 -2
- package/dist/skill-defaults/{browser.skill.md → browser/SKILL.md} +5 -3
- package/dist/{store-NS2RMRA7.js → store-FXTCHBI4.js} +2 -2
- package/dist/{tools-YJLXW3QS.js → tools-WGAZKL56.js} +6 -6
- package/dist/web/assets/index-C0YKw2cD.js +302 -0
- package/dist/web/assets/{index-DjfRXOO7.css → index-D4bVx84a.css} +1 -1
- package/dist/web/index.html +2 -2
- package/dist/web/sw.js +1 -1
- package/package.json +4 -2
- package/dist/web/assets/index-Dqqp_j-f.js +0 -302
|
@@ -18,6 +18,10 @@ Your role is to investigate and map out code structure, find relevant files, and
|
|
|
18
18
|
Guidelines:
|
|
19
19
|
|
|
20
20
|
- Use run_command with grep/glob to discover code
|
|
21
|
+
- When using grep, ALWAYS exclude common non-source directories:
|
|
22
|
+
`--exclude-dir=node_modules --exclude-dir=.git --exclude-dir=dist --exclude-dir=.next --exclude-dir=build --exclude-dir=coverage`
|
|
23
|
+
- Respect `.gitignore` exclusion patterns when searching
|
|
24
|
+
- Prefer `rg` (ripgrep) if available — it respects `.gitignore` natively and is faster
|
|
21
25
|
- Trace dependencies and imports to understand relationships
|
|
22
26
|
- Identify patterns and conventions in the codebase
|
|
23
27
|
- Report findings clearly with file paths and key observations
|
|
@@ -25,7 +25,8 @@ function getGitBranch(cwd) {
|
|
|
25
25
|
return new Promise((resolve2) => {
|
|
26
26
|
const proc = spawn("git", ["rev-parse", "--abbrev-ref", "HEAD"], {
|
|
27
27
|
cwd,
|
|
28
|
-
stdio: ["ignore", "pipe", "ignore"]
|
|
28
|
+
stdio: ["ignore", "pipe", "ignore"],
|
|
29
|
+
windowsHide: true
|
|
29
30
|
});
|
|
30
31
|
let stdout = "";
|
|
31
32
|
proc.stdout.on("data", (data) => {
|
|
@@ -46,4 +47,4 @@ function getGitBranch(cwd) {
|
|
|
46
47
|
export {
|
|
47
48
|
getCurrentBranch
|
|
48
49
|
};
|
|
49
|
-
//# sourceMappingURL=branch.api-
|
|
50
|
+
//# sourceMappingURL=branch.api-LAN42BA5.js.map
|
|
@@ -5,11 +5,11 @@ import {
|
|
|
5
5
|
} from "./chunk-NVPVDDQZ.js";
|
|
6
6
|
import {
|
|
7
7
|
runChatTurn
|
|
8
|
-
} from "./chunk-
|
|
9
|
-
import "./chunk-
|
|
8
|
+
} from "./chunk-NY6IGGKZ.js";
|
|
9
|
+
import "./chunk-3JRYK5UG.js";
|
|
10
10
|
import "./chunk-LBGHZLLH.js";
|
|
11
|
-
import "./chunk-
|
|
12
|
-
import "./chunk-
|
|
11
|
+
import "./chunk-BGTEIA2S.js";
|
|
12
|
+
import "./chunk-PK2RMVMB.js";
|
|
13
13
|
import "./chunk-NWO6GRYE.js";
|
|
14
14
|
import {
|
|
15
15
|
createChatMessageMessage,
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
createSessionRunningMessage
|
|
18
18
|
} from "./chunk-F4PMNP7S.js";
|
|
19
19
|
import "./chunk-EU3WWTFH.js";
|
|
20
|
-
import "./chunk-
|
|
20
|
+
import "./chunk-WNSAJCWT.js";
|
|
21
21
|
import "./chunk-YQ3SOPBI.js";
|
|
22
22
|
import "./chunk-6VDCH5ML.js";
|
|
23
23
|
import {
|
|
@@ -30,7 +30,7 @@ import "./chunk-YHEQTVFV.js";
|
|
|
30
30
|
import "./chunk-Z6W4YHJB.js";
|
|
31
31
|
import "./chunk-K44MW7JJ.js";
|
|
32
32
|
import "./chunk-YD6NDTKF.js";
|
|
33
|
-
import "./chunk-
|
|
33
|
+
import "./chunk-43UFGATL.js";
|
|
34
34
|
import "./chunk-CQGTEGKL.js";
|
|
35
35
|
import "./chunk-V4IE7HJY.js";
|
|
36
36
|
import "./chunk-5WRI5ZAA.js";
|
|
@@ -154,4 +154,4 @@ export {
|
|
|
154
154
|
startChatSession,
|
|
155
155
|
stopSessionExecution
|
|
156
156
|
};
|
|
157
|
-
//# sourceMappingURL=chat-handler-
|
|
157
|
+
//# sourceMappingURL=chat-handler-MBR6ZQTX.js.map
|