@ouro.bot/cli 0.1.0-alpha.432 → 0.1.0-alpha.434

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
@@ -6,7 +6,7 @@ Ouroboros is a TypeScript harness for daemon-managed agents that live in externa
6
6
 
7
7
  ## What The Runtime Looks Like
8
8
 
9
- - `npx ouro.bot` is the bootstrap path.
9
+ - `npx ouro.bot@latest` is the supported bootstrap path.
10
10
  - `ouro` is the installed day-to-day command.
11
11
  - `ouro up` starts the daemon from the installed production version, syncs the launcher, installs workflow helpers, and reconciles stale runtime state.
12
12
  - `ouro dev` starts the daemon from a local repo build. It auto-builds from source, disables launchd auto-restart (so the installed daemon doesn't respawn underneath you), persists the repo path in `~/.ouro-cli/dev-config.json` for next time, and force-restarts the daemon. If you run `ouro dev` from inside the repo, it detects the CWD automatically. Run `ouro up` to return to production mode (this also cleans up `dev-config.json`).
@@ -142,15 +142,15 @@ For a clean smoke test, run from outside the repo:
142
142
 
143
143
  ```bash
144
144
  cd ~
145
- npx ouro.bot -v
146
- npx ouro.bot up
145
+ npx ouro.bot@latest -v
146
+ npx ouro.bot@latest up
147
147
  ouro -v
148
148
  ouro status
149
149
  ```
150
150
 
151
151
  Expected shape:
152
152
 
153
- - `npx ouro.bot` and `ouro` report the same version.
153
+ - `npx ouro.bot@latest` and `ouro` report the same version.
154
154
  - `ouro status` shows the daemon overview plus discovered agents, senses, and workers.
155
155
 
156
156
  ### Work On The Harness
@@ -209,7 +209,7 @@ ouro hook <event> --agent <name> # fire a lifecycle hook (SessionStart,
209
209
 
210
210
  ## Setting Up On Another Machine
211
211
 
212
- To clone an existing agent onto a new machine (macOS, Linux, or Windows via WSL2), see **[docs/cross-machine-setup.md](docs/cross-machine-setup.md)**. The short version is bundle plus vault: `npx ouro.bot`, open the home deck, choose clone, enter the bundle's git remote URL, unlock the agent vault, refresh/verify credentials, and start with `ouro up`.
212
+ To clone an existing agent onto a new machine (macOS, Linux, or Windows via WSL2), see **[docs/cross-machine-setup.md](docs/cross-machine-setup.md)**. The short version is bundle plus vault: `npx ouro.bot@latest`, open the home deck, choose clone, enter the bundle's git remote URL, unlock the agent vault, refresh/verify credentials, and start with `ouro up`.
213
213
 
214
214
  ## The Agent's Inner Life
215
215
 
package/changelog.json CHANGED
@@ -1,6 +1,22 @@
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.434",
6
+ "changes": [
7
+ "The supported bootstrap command is now explicitly `npx ouro.bot@latest` across the wrapper hints, operator docs, architecture docs, and runtime fallback messages, so humans are steered onto the channel that actually lands on the current published runtime.",
8
+ "Release smoke now verifies the live `ouro.bot@latest` bootstrap path end to end instead of only checking that the wrapper package resolves, so a stale bootstrap channel cannot slip through publish unnoticed.",
9
+ "This release closes the installed-product gap found during dogfood after the CLI human-surface overhaul: `npx ouro.bot@latest` now reproduces the current runtime truth in docs, smoke coverage, and real-world operator instructions."
10
+ ]
11
+ },
12
+ {
13
+ "version": "0.1.0-alpha.433",
14
+ "changes": [
15
+ "The human-facing CLI now speaks one shared terminal language across `ouro`, `ouro up`, `ouro connect`, repair, auth, vault, and hatch: the Ouroboros control deck, calm capability intros, and clear `What changed` / `Next moves` landings instead of raw transcript walls.",
16
+ "Guided connector and repair flows now tell the truth about what is portable versus machine-local, use the same live provider verification path as startup and auth verification, and keep visible progress on long-running work so the terminal never degrades into a dead blinking cursor while real work is still happening.",
17
+ "The refreshed CLI surface is now locked in by expanded screen-level daemon tests, full-suite regression coverage, hermetic built-runtime integration coverage, and packaged-install e2e coverage, with operator docs updated to match the new house-style behavior."
18
+ ]
19
+ },
4
20
  {
5
21
  "version": "0.1.0-alpha.432",
6
22
  "changes": [