@ouro.bot/cli 0.1.0-alpha.22 → 0.1.0-alpha.23
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,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_note": "This changelog is maintained as part of the PR/version-bump workflow. Human-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.23",
|
|
6
|
+
"changes": [
|
|
7
|
+
"You can now use 'ouro down' as an alias for 'ouro stop' to pair naturally with 'ouro up'."
|
|
8
|
+
]
|
|
9
|
+
},
|
|
4
10
|
{
|
|
5
11
|
"version": "0.1.0-alpha.22",
|
|
6
12
|
"changes": [
|
|
@@ -223,7 +223,7 @@ function usage() {
|
|
|
223
223
|
return [
|
|
224
224
|
"Usage:",
|
|
225
225
|
" ouro [up]",
|
|
226
|
-
" ouro stop|status|logs|hatch",
|
|
226
|
+
" ouro stop|down|status|logs|hatch",
|
|
227
227
|
" ouro -v|--version",
|
|
228
228
|
" ouro chat <agent>",
|
|
229
229
|
" ouro msg --to <agent> [--session <id>] [--task <ref>] <message>",
|
|
@@ -433,7 +433,7 @@ function parseOuroCommand(args) {
|
|
|
433
433
|
return { kind: "daemon.up" };
|
|
434
434
|
if (head === "up")
|
|
435
435
|
return { kind: "daemon.up" };
|
|
436
|
-
if (head === "stop")
|
|
436
|
+
if (head === "stop" || head === "down")
|
|
437
437
|
return { kind: "daemon.stop" };
|
|
438
438
|
if (head === "status")
|
|
439
439
|
return { kind: "daemon.status" };
|