@ouro.bot/cli 0.1.0-alpha.390 → 0.1.0-alpha.392

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.json CHANGED
@@ -1,6 +1,23 @@
1
1
  {
2
2
  "_note": "This changelog is maintained as part of the PR/version-bump workflow. Agent-curated, not auto-generated. Agents read this file directly via read_file to understand what changed between versions.",
3
3
  "versions": [
4
+ {
5
+ "version": "0.1.0-alpha.392",
6
+ "changes": [
7
+ "Published a one-time alpha-channel bridge so launchers still pinned to `@ouro.bot/cli@alpha` can run code that checks the supported `latest` channel.",
8
+ "The bridge keeps `latest` as the real operator channel while giving old alpha-based npx wrappers a path to install the final current runtime on their next `ouro up`.",
9
+ "`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the legacy alpha bridge release."
10
+ ]
11
+ },
12
+ {
13
+ "version": "0.1.0-alpha.391",
14
+ "changes": [
15
+ "`@ouro.bot/cli` now publishes and verifies the `latest` dist-tag, so the direct CLI package and the `ouro.bot` bootstrap wrapper point at the same current runtime channel.",
16
+ "The `ouro.bot` wrapper, daemon update checks, Teams startup script, and version status output now resolve `@ouro.bot/cli@latest` instead of the stale-prone `@alpha` tag.",
17
+ "Dev-mode guidance now tells operators to bootstrap with `npx ouro.bot`, matching the supported human install path.",
18
+ "`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the npm dist-tag alignment release."
19
+ ]
20
+ },
4
21
  {
5
22
  "version": "0.1.0-alpha.390",
6
23
  "changes": [
@@ -538,7 +538,7 @@ function createDefaultOuroCliDeps(socketPath = socket_client_1.DEFAULT_DAEMON_SO
538
538
  const res = await fetch("https://registry.npmjs.org/@ouro.bot/cli");
539
539
  return res.json();
540
540
  },
541
- distTag: "alpha",
541
+ distTag: "latest",
542
542
  });
543
543
  },
544
544
  installCliVersion: async (version) => { (0, ouro_version_manager_1.installVersion)(version, {}); },
@@ -1905,7 +1905,7 @@ async function runOuroCli(args, deps = (0, cli_defaults_1.createDefaultOuroCliDe
1905
1905
  /* v8 ignore next 2 -- unreachable after exec replaces process @preserve */
1906
1906
  return "";
1907
1907
  }
1908
- const message = "no installed version found. run: npx @ouro.bot/cli@alpha";
1908
+ const message = "no installed version found. run: npx ouro.bot";
1909
1909
  deps.writeStdout(message);
1910
1910
  return message;
1911
1911
  }
@@ -2319,15 +2319,15 @@ async function runOuroCli(args, deps = (0, cli_defaults_1.createDefaultOuroCliDe
2319
2319
  try {
2320
2320
  const updateResult = await deps.checkForCliUpdate();
2321
2321
  if (updateResult.latestVersion) {
2322
- sections.push(`published alpha: ${updateResult.latestVersion} (${updateResult.available ? "update available" : "up to date"})`);
2322
+ sections.push(`published latest: ${updateResult.latestVersion} (${updateResult.available ? "update available" : "up to date"})`);
2323
2323
  }
2324
2324
  else if (updateResult.error) {
2325
- sections.push(`published alpha: unavailable (${updateResult.error})`);
2325
+ sections.push(`published latest: unavailable (${updateResult.error})`);
2326
2326
  }
2327
2327
  }
2328
2328
  catch (err) {
2329
2329
  const reason = err instanceof Error ? err.message : String(err);
2330
- sections.push(`published alpha: unavailable (${reason})`);
2330
+ sections.push(`published latest: unavailable (${reason})`);
2331
2331
  }
2332
2332
  }
2333
2333
  const message = sections.join("\n\n");
@@ -519,7 +519,7 @@ class OuroDaemon {
519
519
  (0, update_checker_1.startUpdateChecker)({
520
520
  currentVersion,
521
521
  deps: {
522
- distTag: "alpha",
522
+ distTag: "latest",
523
523
  fetchRegistryJson: /* v8 ignore next -- integration: real HTTP fetch @preserve */ async () => {
524
524
  const res = await fetch("https://registry.npmjs.org/@ouro.bot/cli");
525
525
  return res.json();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.390",
3
+ "version": "0.1.0-alpha.392",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",