@ouro.bot/cli 0.1.0-alpha.654 → 0.1.0-alpha.655

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. 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.655",
6
+ "changes": [
7
+ "Add focused help for A2A CLI subcommands."
8
+ ]
9
+ },
4
10
  {
5
11
  "version": "0.1.0-alpha.654",
6
12
  "changes": [
@@ -342,6 +342,21 @@ const SUBCOMMAND_HELP = {
342
342
  usage: "ouro connect a2a [--agent <name>]",
343
343
  example: "ouro connect a2a --agent <agent>",
344
344
  },
345
+ "a2a card": {
346
+ description: "Print this agent's A2A Agent Card",
347
+ usage: "ouro a2a card [--agent <name>] [--base-url <url>] [--json]",
348
+ example: "ouro a2a card --agent <agent> --base-url https://agent.example --json",
349
+ },
350
+ "a2a onboard": {
351
+ description: "Onboard an A2A peer into the existing friend model",
352
+ usage: "ouro a2a onboard [--agent <name>] --card-url <url> [--trust <level>] [--name <name>]",
353
+ example: "ouro a2a onboard --agent <agent> --card-url https://peer.example/.well-known/agent-card.json --trust friend",
354
+ },
355
+ "a2a serve": {
356
+ description: "Run this agent's local A2A JSON-RPC sense server",
357
+ usage: "ouro a2a serve [--agent <name>] [--host <host>] [--port <port>] [--base-url <url>] [--path <path>]",
358
+ example: "ouro a2a serve --agent <agent> --base-url https://agent.example",
359
+ },
345
360
  "account ensure": {
346
361
  description: "Idempotently prepare an agent's vault-backed work substrate account and private Mailroom mailbox",
347
362
  usage: "ouro account ensure [--agent <name>] [--owner-email <email> --source <label>|--no-delegated-source] [--rotate-missing-mail-keys]",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.654",
3
+ "version": "0.1.0-alpha.655",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",