@f-o-h/cli 0.1.17 → 0.1.19

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.
Files changed (3) hide show
  1. package/README.md +25 -25
  2. package/dist/foh.js +6 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -4,7 +4,7 @@ AI-operator provisioning CLI for Front Of House.
4
4
 
5
5
  Public mirror: https://github.com/iiko38/front-of-house-cli
6
6
 
7
- Current published baseline: `@f-o-h/cli@0.1.16`
7
+ Current published baseline: `@f-o-h/cli@0.1.19`
8
8
 
9
9
  This mirror is a generated release artifact. The private product monorepo is not
10
10
  published here, and no open-source license is granted unless stated separately.
@@ -144,30 +144,30 @@ After dry-run review, one controlled Codex run can be launched explicitly with
144
144
  `run.json` even on timeout or non-zero exit:
145
145
 
146
146
  ```bash
147
- foh eval external-agent execute \
148
- --runner codex \
149
- --batch test-results/external-agent-runs/<one-model-batch>/batch.json \
150
- --timeout-minutes 30 \
151
- --live \
152
- --json
153
- ```
154
-
155
- For Linux eval hosts where Codex's default Bubblewrap sandbox cannot configure
156
- loopback networking, keep sandboxing enabled and select the legacy Landlock
157
- backend explicitly:
158
-
159
- ```bash
160
- foh eval external-agent execute \
161
- --runner codex \
162
- --batch test-results/external-agent-runs/<one-model-batch>/batch.json \
163
- --codex-sandbox-backend legacy-landlock \
164
- --codex-network-access \
165
- --timeout-minutes 30 \
166
- --live \
167
- --json
168
- ```
169
-
170
- ## Local Scenario Suites
147
+ foh eval external-agent execute \
148
+ --runner codex \
149
+ --batch test-results/external-agent-runs/<one-model-batch>/batch.json \
150
+ --timeout-minutes 30 \
151
+ --live \
152
+ --json
153
+ ```
154
+
155
+ For Linux eval hosts where Codex's default Bubblewrap sandbox cannot configure
156
+ loopback networking, keep sandboxing enabled and select the legacy Landlock
157
+ backend explicitly:
158
+
159
+ ```bash
160
+ foh eval external-agent execute \
161
+ --runner codex \
162
+ --batch test-results/external-agent-runs/<one-model-batch>/batch.json \
163
+ --codex-sandbox-backend legacy-landlock \
164
+ --codex-network-access \
165
+ --timeout-minutes 30 \
166
+ --live \
167
+ --json
168
+ ```
169
+
170
+ ## Local Scenario Suites
171
171
 
172
172
  `foh test run --suite <file>` runs deterministic widget-runtime checks for a
173
173
  specific agent. The suite format supports reply text checks plus structured
package/dist/foh.js CHANGED
@@ -32681,7 +32681,7 @@ var StdioServerTransport = class {
32681
32681
  };
32682
32682
 
32683
32683
  // src/lib/cli-version.ts
32684
- var CLI_VERSION = "0.1.17";
32684
+ var CLI_VERSION = "0.1.19";
32685
32685
 
32686
32686
  // src/commands/mcp-serve.ts
32687
32687
  var DEFAULT_TIMEOUT_MS = 12e4;
@@ -38971,6 +38971,11 @@ function copyCommandCaptureArtifacts(input) {
38971
38971
  const commandLog = (0, import_path12.join)(input.captureDir, "commands.ndjson");
38972
38972
  if (!(0, import_fs14.existsSync)(commandLog)) return;
38973
38973
  (0, import_fs14.writeFileSync)((0, import_path12.join)(input.runDir, "commands.ndjson"), (0, import_fs14.readFileSync)(commandLog, "utf8"), "utf8");
38974
+ for (const name of (0, import_fs14.readdirSync)(input.captureDir)) {
38975
+ if (name.startsWith("command-output-cmd_")) {
38976
+ (0, import_fs14.copyFileSync)((0, import_path12.join)(input.captureDir, name), (0, import_path12.join)(input.runDir, name));
38977
+ }
38978
+ }
38974
38979
  }
38975
38980
  function relativeArtifactName(path2) {
38976
38981
  return (0, import_path12.basename)(path2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@f-o-h/cli",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "description": "FOH CLI - AI-operator provisioning tool for Front Of House",
5
5
  "license": "UNLICENSED",
6
6
  "bin": {