loomrail 0.1.0-beta.1 → 0.1.1

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/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
  <p>
12
12
  <a href="https://github.com/loomrail/loomrail/actions/workflows/ci.yml"><img src="https://github.com/loomrail/loomrail/actions/workflows/ci.yml/badge.svg" alt="CI" /></a>
13
13
  <a href="LICENSE"><img src="https://img.shields.io/badge/license-Apache--2.0-6173ff" alt="Apache 2.0 license" /></a>
14
- <img src="https://img.shields.io/badge/status-public%20beta-4d63c7" alt="Public Beta status" />
14
+ <img src="https://img.shields.io/badge/status-stable-2f6b52" alt="Stable status" />
15
15
  <img src="https://img.shields.io/badge/Node.js-24.19-43853d" alt="Node.js 24.19" />
16
16
  </p>
17
17
  </div>
@@ -27,12 +27,12 @@ the source of truth.
27
27
  </picture>
28
28
 
29
29
  > [!IMPORTANT]
30
- > Loomrail is Public Beta software for macOS on Apple Silicon. New projects use **Auto**, which selects only a
30
+ > Loomrail is Stable software for macOS on Apple Silicon. New projects use **Auto**, which selects only a
31
31
  > compatible, signed-in local
32
32
  > Codex CLI or Claude Code CLI. Loomrail does not ask for provider API keys or use separate API billing; a missing,
33
33
  > incompatible, or signed-out CLI blocks startup instead of falling back. Loomrail never creates provider credentials,
34
34
  > enables permission-bypass flags, commits, pushes, merges, or deploys for you. A task worktree is not an
35
- > operating-system sandbox. Windows and Linux live-provider execution is not supported by this Beta and fails closed;
35
+ > operating-system sandbox. Windows and Linux live-provider execution is not supported by this release and fails closed;
36
36
  > Windows remains covered by source, browser and clean-install CI while its real local-CLI evidence is pending.
37
37
 
38
38
  ## Install and run safely
@@ -44,7 +44,7 @@ managed by the installed Playwright package, and at least one official local age
44
44
  - Claude Code: install the official CLI and run `claude auth login` once.
45
45
 
46
46
  That login remains owned by the provider CLI. Loomrail detects it read-only and never asks you to copy an API key.
47
- Windows and Linux are not supported live-provider targets in this Beta.
47
+ Windows and Linux are not supported live-provider targets in this macOS-scoped Stable release.
48
48
 
49
49
  Start in a new empty directory, not inside a repository you care about:
50
50
 
@@ -53,7 +53,7 @@ Start in a new empty directory, not inside a repository you care about:
53
53
  ```bash
54
54
  mkdir loomrail-evaluation
55
55
  cd loomrail-evaluation
56
- npm install --ignore-scripts loomrail@next
56
+ npm install --ignore-scripts loomrail@latest
57
57
  npx playwright install chromium
58
58
  npx loomrail try
59
59
  ```
@@ -77,9 +77,9 @@ npx loomrail try --no-open --port 4176
77
77
 
78
78
  Open the printed URL on the same machine within 60 seconds. `--no-open` does not enable remote access.
79
79
 
80
- For a global launcher, use `npm install -g --ignore-scripts loomrail@next`, run
80
+ For a global launcher, use `npm install -g --ignore-scripts loomrail@latest`, run
81
81
  `npx playwright install chromium`, and then `loomrail try`.
82
- The project-local route above is recommended for evaluation because it keeps the selected Beta channel visible.
82
+ The project-local route above is recommended because it keeps Loomrail and its browser runtime isolated.
83
83
 
84
84
  ## First run
85
85
 
@@ -7080,7 +7080,7 @@ var guided_activation_v1_default = {
7080
7080
  install: { "commands": [
7081
7081
  "mkdir loomrail-evaluation",
7082
7082
  "cd loomrail-evaluation",
7083
- "npm install --ignore-scripts loomrail@next",
7083
+ "npm install --ignore-scripts loomrail@latest",
7084
7084
  "npx playwright install chromium",
7085
7085
  "npx loomrail try"
7086
7086
  ] }
@@ -7090,7 +7090,7 @@ var guided_activation_v1_default = {
7090
7090
  var guidedActivationInstallCommands = [
7091
7091
  "mkdir loomrail-evaluation",
7092
7092
  "cd loomrail-evaluation",
7093
- "npm install --ignore-scripts loomrail@next",
7093
+ "npm install --ignore-scripts loomrail@latest",
7094
7094
  "npx playwright install chromium",
7095
7095
  "npx loomrail try"
7096
7096
  ];
@@ -13085,9 +13085,10 @@ var projectVerificationAcceptanceGate = (input) => {
13085
13085
  evidence: null,
13086
13086
  blocker: `RUN_${run.status}`
13087
13087
  };
13088
+ const finiteRecipes = plan.recipes.filter((recipe) => recipe.kind !== "SERVE");
13088
13089
  const orderedChecks = [...input.checks].sort((left, right) => left.ordinal - right.ordinal);
13089
- if (!(orderedChecks.length === plan.recipes.length && orderedChecks.every((check, index) => {
13090
- const recipe = plan.recipes[index];
13090
+ if (!(orderedChecks.length === finiteRecipes.length && orderedChecks.every((check, index) => {
13091
+ const recipe = finiteRecipes[index];
13091
13092
  return recipe !== void 0 && check.projectId === input.projectId && check.workItemId === input.workItemId && check.runId === run.id && check.recipeId === recipe.id && check.required === recipe.required && check.ordinal === index + 1 && check.status !== "QUEUED" && check.status !== "RUNNING";
13092
13093
  })) || orderedChecks.some((check) => check.required && check.status !== "PASSED")) return {
13093
13094
  status: "BLOCKED",
@@ -37378,15 +37379,23 @@ var codexProviderDiagnostics = createCliProviderDiagnostics({
37378
37379
  versionArguments: ["--version"],
37379
37380
  authenticationArguments: ["login", "status"],
37380
37381
  versionFromOutput: (output) => /^codex-cli ([^\s]+)$/.exec(output.trim())?.[1] ?? null,
37381
- verifiedTargets: [{
37382
- version: "0.153.0-alpha.5",
37383
- platform: "darwin",
37384
- architecture: "arm64"
37385
- }, {
37386
- version: "0.153.4",
37387
- platform: "darwin",
37388
- architecture: "arm64"
37389
- }]
37382
+ verifiedTargets: [
37383
+ {
37384
+ version: "0.153.0-alpha.5",
37385
+ platform: "darwin",
37386
+ architecture: "arm64"
37387
+ },
37388
+ {
37389
+ version: "0.153.4",
37390
+ platform: "darwin",
37391
+ architecture: "arm64"
37392
+ },
37393
+ {
37394
+ version: "0.154.0-alpha.6.2",
37395
+ platform: "darwin",
37396
+ architecture: "arm64"
37397
+ }
37398
+ ]
37390
37399
  });
37391
37400
  //#endregion
37392
37401
  //#region ../../packages/provider-codex/dist/index.js
@@ -46967,7 +46976,7 @@ var formatGuidedLaunchReadiness = (report) => {
46967
46976
  };
46968
46977
  //#endregion
46969
46978
  //#region src/version.ts
46970
- var LOOMRAIL_VERSION = "0.1.0-beta.1";
46979
+ var LOOMRAIL_VERSION = "0.1.1";
46971
46980
  //#endregion
46972
46981
  //#region src/index.ts
46973
46982
  var writeLine = (message) => {