@ouro.bot/cli 0.1.0-alpha.390 → 0.1.0-alpha.391
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,15 @@
|
|
|
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.391",
|
|
6
|
+
"changes": [
|
|
7
|
+
"`@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.",
|
|
8
|
+
"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.",
|
|
9
|
+
"Dev-mode guidance now tells operators to bootstrap with `npx ouro.bot`, matching the supported human install path.",
|
|
10
|
+
"`@ouro.bot/cli` and the `ouro.bot` wrapper are version-synced for the npm dist-tag alignment release."
|
|
11
|
+
]
|
|
12
|
+
},
|
|
4
13
|
{
|
|
5
14
|
"version": "0.1.0-alpha.390",
|
|
6
15
|
"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: "
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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: "
|
|
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();
|