@ouro.bot/cli 0.1.0-alpha.56 → 0.1.0-alpha.57
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,14 @@
|
|
|
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.57",
|
|
6
|
+
"changes": [
|
|
7
|
+
"Explicit `ouro chat <agent>` now launches the local interactive chat flow instead of just printing the daemon's connection acknowledgement and exiting.",
|
|
8
|
+
"The explicit chat path still ensures the daemon is running first, so direct chat commands behave like the existing auto-chat flows without losing daemon setup.",
|
|
9
|
+
"Daemon CLI coverage now includes the explicit `chat <agent>` route so regressions in interactive chat startup get caught in tests."
|
|
10
|
+
]
|
|
11
|
+
},
|
|
4
12
|
{
|
|
5
13
|
"version": "0.1.0-alpha.56",
|
|
6
14
|
"changes": [
|
|
@@ -1633,6 +1633,11 @@ async function runOuroCli(args, deps = createDefaultOuroCliDeps()) {
|
|
|
1633
1633
|
deps.writeStdout(message);
|
|
1634
1634
|
return message;
|
|
1635
1635
|
}
|
|
1636
|
+
if (command.kind === "chat.connect" && deps.startChat) {
|
|
1637
|
+
await ensureDaemonRunning(deps);
|
|
1638
|
+
await deps.startChat(command.agent);
|
|
1639
|
+
return "";
|
|
1640
|
+
}
|
|
1636
1641
|
if (command.kind === "hatch.start") {
|
|
1637
1642
|
// Route through adoption specialist when no explicit hatch args were provided
|
|
1638
1643
|
const hasExplicitHatchArgs = !!(command.agentName || command.humanName || command.provider || command.credentials);
|