@ouro.bot/cli 0.1.0-alpha.362 → 0.1.0-alpha.363

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
@@ -169,6 +169,7 @@ ouro auth --agent <name>
169
169
  ouro auth --agent <name> --provider <provider>
170
170
  ouro use --agent <name> --lane <outward|inner> --provider <provider> --model <model>
171
171
  ouro hatch
172
+ ouro clone <remote> [--agent <name>] # clone an existing agent from a git remote (see docs/cross-machine-setup.md)
172
173
  ouro chat <agent>
173
174
  ouro msg --to <agent> [--session <id>] [--task <ref>] <message>
174
175
  ouro poke <agent> --task <task-id>
@@ -183,6 +184,10 @@ ouro mcp-serve --agent <name> # start MCP server on stdin/stdout (us
183
184
  ouro hook <event> --agent <name> # fire a lifecycle hook (SessionStart, Stop, PostToolUse)
184
185
  ```
185
186
 
187
+ ## Setting Up On Another Machine
188
+
189
+ 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: `npx ouro.bot`, pick "clone", enter the bundle's git remote URL, run `ouro auth run`, then `ouro up`.
190
+
186
191
  ## The Agent's Inner Life
187
192
 
188
193
  Agents in Ouroboros aren't just responders — they have an autonomous inner life.
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. 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.363",
6
+ "changes": [
7
+ "Bootstrap first-install PATH hint is now shell-aware: shows correct source command for zsh, bash, fish, or generic fallback for unknown shells."
8
+ ]
9
+ },
4
10
  {
5
11
  "version": "0.1.0-alpha.362",
6
12
  "changes": [
@@ -382,6 +382,7 @@ function runtimeInfoSection(channel, options) {
382
382
  lines.push(`process type: ${processTypeLabel(channel)}`);
383
383
  lines.push(`daemon: ${daemonStatus(options?.daemonRunning)}`);
384
384
  lines.push(`mcp serve: i can expose my tools to dev tools via \`ouro mcp-serve\`. see the configure-dev-tools skill for setup.`);
385
+ lines.push(`harness docs: the harness repo has docs/ and skills/ with guides for setup, operations, and capabilities. docs/ does NOT ship in the npm package — in production, fetch from https://github.com/ouroborosbot/ouroboros/tree/main/docs instead. in dev mode, read from ${sourceRoot}/docs/. when someone asks about setup, installation, cross-machine cloning, deployment, testing, auth, or how i work — consult the docs before guessing.`);
385
386
  if (channel === "cli") {
386
387
  lines.push("i introduce myself on boot with a fun random greeting.");
387
388
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.362",
3
+ "version": "0.1.0-alpha.363",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",
@@ -1,6 +1,6 @@
1
1
  # Configure Dev Tools for MCP Agent Bridge
2
2
 
3
- Set up your development tools (Claude Code, Codex) to communicate with Ouroboros agents via MCP. One command does everything.
3
+ Set up your development tools (Claude Code, Codex) to communicate with Ouroboros agents via MCP. One command does everything — including cross-platform WSL2 bridging on Windows.
4
4
 
5
5
  ## Setup
6
6
 
@@ -15,6 +15,16 @@ This command:
15
15
  2. Configures lifecycle hooks (SessionStart, Stop, PostToolUse) for passive awareness
16
16
  3. Detects dev vs installed mode automatically and uses the correct command path
17
17
 
18
+ **On WSL2 (Windows):** The command automatically detects the WSL environment and:
19
+ - Calls `claude.exe` (the Windows binary) instead of `claude`
20
+ - Prefixes MCP serve and hook commands with `wsl` so Windows-side Claude Code spawns them through WSL
21
+ - Resolves the Windows-side home directory and writes config to the Windows-side `~/.claude/`
22
+ - After setup, open Claude Code in PowerShell — the agent is there
23
+
24
+ **On native Windows (no WSL):** Not yet supported. The command prints a message directing you to install WSL2.
25
+
26
+ For the full cross-machine setup flow (including cloning an agent to a new machine), see `docs/cross-machine-setup.md` in the harness repo.
27
+
18
28
  ### Codex
19
29
 
20
30
  ```bash