openfox 2.0.100 → 2.0.101
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/CHANGELOG.md +16 -0
- package/dist/CHANGELOG.md +16 -0
- package/dist/{chunk-FXRZFIDX.js → chunk-7GBFQ2PE.js} +2 -2
- package/dist/{chunk-NJQJUP6Z.js → chunk-MBYXZ5V5.js} +3 -3
- package/dist/chunk-UCNMVJXD.js +7 -0
- package/dist/cli/dev.js +1 -1
- package/dist/cli/index.js +1 -1
- package/dist/command-defaults/add-criteria.command.md +0 -1
- package/dist/package.json +1 -1
- package/dist/{serve-BBVBUYMU.js → serve-KM2RVX2U.js} +3 -3
- package/dist/server/index.js +2 -2
- package/dist/{update-ZWVWDYZ2.js → update-GHS75L7T.js} +2 -2
- package/dist/web/assets/{index-ChM1ad7e.js → index-CCBacuE6.js} +46 -46
- package/dist/web/index.html +1 -1
- package/dist/web/sw.js +1 -1
- package/dist/workflow-defaults/default.workflow.json +1 -1
- package/package.json +1 -1
- package/dist/chunk-T3PLCTNA.js +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.0.101 - 2026-07-28
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- **Editable step names in workflow editor** — each workflow step now has a customizable Name field instead of being locked to the agent or sub-agent name.
|
|
8
|
+
|
|
9
|
+
### Enhancements
|
|
10
|
+
|
|
11
|
+
- **First workflow step renamed to "Implement"** — the build step now clearly communicates its purpose instead of the generic "Builder" label.
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- **Add-criteria command no longer forces planner mode** — launching the command keeps your current agent instead of switching to planner.
|
|
16
|
+
- **Workflow button shows regardless of current agent** — the Build & Verify button appears whenever pending criteria exist, not only in planner mode.
|
|
17
|
+
- **Workflow button only shows for pending criteria** — completed, passed, or failed criteria no longer keep the button visible.
|
|
18
|
+
|
|
3
19
|
## 2.0.100 - 2026-07-28
|
|
4
20
|
|
|
5
21
|
### Features
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.0.101 - 2026-07-28
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
- **Editable step names in workflow editor** — each workflow step now has a customizable Name field instead of being locked to the agent or sub-agent name.
|
|
8
|
+
|
|
9
|
+
### Enhancements
|
|
10
|
+
|
|
11
|
+
- **First workflow step renamed to "Implement"** — the build step now clearly communicates its purpose instead of the generic "Builder" label.
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- **Add-criteria command no longer forces planner mode** — launching the command keeps your current agent instead of switching to planner.
|
|
16
|
+
- **Workflow button shows regardless of current agent** — the Build & Verify button appears whenever pending criteria exist, not only in planner mode.
|
|
17
|
+
- **Workflow button only shows for pending criteria** — completed, passed, or failed criteria no longer keep the button visible.
|
|
18
|
+
|
|
3
19
|
## 2.0.100 - 2026-07-28
|
|
4
20
|
|
|
5
21
|
### Features
|
|
@@ -114,7 +114,7 @@ import {
|
|
|
114
114
|
} from "./chunk-NLN5LPQ4.js";
|
|
115
115
|
import {
|
|
116
116
|
VERSION
|
|
117
|
-
} from "./chunk-
|
|
117
|
+
} from "./chunk-UCNMVJXD.js";
|
|
118
118
|
import {
|
|
119
119
|
clearWorkflowExecution,
|
|
120
120
|
createSession,
|
|
@@ -7947,4 +7947,4 @@ export {
|
|
|
7947
7947
|
createServerHandle,
|
|
7948
7948
|
createServer
|
|
7949
7949
|
};
|
|
7950
|
-
//# sourceMappingURL=chunk-
|
|
7950
|
+
//# sourceMappingURL=chunk-7GBFQ2PE.js.map
|
|
@@ -200,7 +200,7 @@ async function runCli(options) {
|
|
|
200
200
|
break;
|
|
201
201
|
}
|
|
202
202
|
case "update": {
|
|
203
|
-
const { runUpdate } = await import("./update-
|
|
203
|
+
const { runUpdate } = await import("./update-GHS75L7T.js");
|
|
204
204
|
const code = await runUpdate();
|
|
205
205
|
if (code !== 0) {
|
|
206
206
|
process.exit(code);
|
|
@@ -213,7 +213,7 @@ async function runCli(options) {
|
|
|
213
213
|
if (!configExists) {
|
|
214
214
|
await runNetworkSetup(mode);
|
|
215
215
|
}
|
|
216
|
-
const { runServe } = await import("./serve-
|
|
216
|
+
const { runServe } = await import("./serve-KM2RVX2U.js");
|
|
217
217
|
const serveOptions = { mode };
|
|
218
218
|
if (values.port) serveOptions.port = parseInt(values.port);
|
|
219
219
|
if (values["no-browser"] === true) serveOptions.openBrowser = false;
|
|
@@ -225,4 +225,4 @@ async function runCli(options) {
|
|
|
225
225
|
export {
|
|
226
226
|
runCli
|
|
227
227
|
};
|
|
228
|
-
//# sourceMappingURL=chunk-
|
|
228
|
+
//# sourceMappingURL=chunk-MBYXZ5V5.js.map
|
package/dist/cli/dev.js
CHANGED
package/dist/cli/index.js
CHANGED
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createServer
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-7GBFQ2PE.js";
|
|
4
4
|
import "./chunk-C6QW2IDH.js";
|
|
5
5
|
import "./chunk-62QCBNPE.js";
|
|
6
6
|
import "./chunk-E2CSSHSI.js";
|
|
@@ -27,7 +27,7 @@ import "./chunk-KNYPBXPW.js";
|
|
|
27
27
|
import "./chunk-NLN5LPQ4.js";
|
|
28
28
|
import {
|
|
29
29
|
VERSION
|
|
30
|
-
} from "./chunk-
|
|
30
|
+
} from "./chunk-UCNMVJXD.js";
|
|
31
31
|
import "./chunk-O2PLNJIU.js";
|
|
32
32
|
import "./chunk-ZIMGU5ZH.js";
|
|
33
33
|
import {
|
|
@@ -219,4 +219,4 @@ async function runServe(options) {
|
|
|
219
219
|
export {
|
|
220
220
|
runServe
|
|
221
221
|
};
|
|
222
|
-
//# sourceMappingURL=serve-
|
|
222
|
+
//# sourceMappingURL=serve-KM2RVX2U.js.map
|
package/dist/server/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createServer,
|
|
3
3
|
createServerHandle
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-7GBFQ2PE.js";
|
|
5
5
|
import "../chunk-C6QW2IDH.js";
|
|
6
6
|
import "../chunk-62QCBNPE.js";
|
|
7
7
|
import "../chunk-E2CSSHSI.js";
|
|
@@ -26,7 +26,7 @@ import "../chunk-AY37NB76.js";
|
|
|
26
26
|
import "../chunk-MRWR3SIT.js";
|
|
27
27
|
import "../chunk-KNYPBXPW.js";
|
|
28
28
|
import "../chunk-NLN5LPQ4.js";
|
|
29
|
-
import "../chunk-
|
|
29
|
+
import "../chunk-UCNMVJXD.js";
|
|
30
30
|
import "../chunk-O2PLNJIU.js";
|
|
31
31
|
import "../chunk-ZIMGU5ZH.js";
|
|
32
32
|
import "../chunk-3LRYZ7R3.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
VERSION
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-UCNMVJXD.js";
|
|
4
4
|
import "./chunk-5WRI5ZAA.js";
|
|
5
5
|
|
|
6
6
|
// src/cli/update.ts
|
|
@@ -46,4 +46,4 @@ async function runUpdate(options = {}) {
|
|
|
46
46
|
export {
|
|
47
47
|
runUpdate
|
|
48
48
|
};
|
|
49
|
-
//# sourceMappingURL=update-
|
|
49
|
+
//# sourceMappingURL=update-GHS75L7T.js.map
|