@ouro.bot/cli 0.1.0-alpha.462 → 0.1.0-alpha.463

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.463",
6
+ "changes": [
7
+ "Agent Mail golden-path guidance now gives agents a stricter answer shape: if Ari asks for golden paths, the answer is only the four product paths, not a diagnostic checklist.",
8
+ "Supporting mail diagnostics are now described as evidence inside golden paths instead of a competing list, preventing agents from naming `ouro status`, `ouro doctor`, or mail tools as the validation story.",
9
+ "Empty Mailroom output now repeats that golden-path questions should not be answered with command names, tool names, or status checks."
10
+ ]
11
+ },
4
12
  {
5
13
  "version": "0.1.0-alpha.462",
6
14
  "changes": [
@@ -469,14 +469,15 @@ function senseRuntimeGuidance(channel, preReadStatusLines) {
469
469
  lines.push("mail setup truth: Agent Mail uses Mailroom, not HEY OAuth/IMAP. For the full work substrate account, the agent-runnable command is `ouro account ensure --agent <agent> --owner-email <email> --source hey`; use `ouro connect mail --agent <agent> --owner-email <email> --source hey` for mail-only repair/provisioning, or `--no-delegated-source` for native-only mail. The detailed runbook is `docs/agent-mail-setup.md`.");
470
470
  lines.push("mail setup truth: HEY archive bootstrap is human-exported MBOX only. I ask for the browser-downloaded MBOX path, then I run `ouro mail import-mbox --file <path> --owner-email <email> --source hey --agent <agent>` myself and verify the import.");
471
471
  lines.push("mail setup truth: an empty Mailroom result is not proof the human's HEY inbox is empty. If `mail_recent`/`mail_search` reports no visible mail or no delegated mail, I treat onboarding/import/forwarding as unverified and guide the setup/import flow before reasoning from the absence of messages.");
472
- lines.push("mail validation contract: when a human asks for Agent Mail golden paths, I mean these exact four checks before claiming setup works:");
472
+ lines.push("mail validation answer shape: when a human asks for Agent Mail golden paths, answer with only these four named paths before claiming setup works:");
473
473
  lines.push("- golden path 1, HEY archive to work object: import the human-provided HEY MBOX and use delegated mail to update a real work object, such as travel plans.");
474
474
  lines.push("- golden path 2, native mail and Screener: send and receive agent-native mail, confirm unknown senders enter Screener, get family authorization for allow/discard, verify sender policy, and confirm discarded mail is recoverable.");
475
475
  lines.push(channel === "mcp"
476
476
  ? "- golden path 3, cross-sense reaction: use a mail-derived update or decision to trigger another configured sense when available."
477
477
  : "- golden path 3, cross-sense reaction: use a mail-derived update or decision to trigger another configured sense, such as texting the family member on iMessage when BlueBubbles is available.");
478
478
  lines.push("- golden path 4, Ouro Outlook audit: inspect the read-only mailbox UI for imported mail, native inbound, Screener decisions, outbound draft/send records, and mail access logs.");
479
- lines.push("mail validation distinction: `ouro status`, `ouro doctor`, bounded mail tools (`mail_recent`, `mail_search`, `mail_thread`, `mail_access_log`), and the read-only Outlook Mailbox tab are supporting diagnostics, not the golden paths. If asked to name golden paths, do not substitute diagnostic commands for the four paths above. `ouro doctor` is installation-wide; do not invent `ouro doctor --agent <agent>`.");
479
+ lines.push("mail validation diagnostics: health checks, bounded mail tools, access logs, and UI inspection can support validation, but they are evidence inside those paths, not additional paths. If asked to name golden paths, do not include diagnostic commands, tool names, or status checks in the answer.");
480
+ lines.push("mail diagnostic naming: `ouro doctor` is installation-wide; do not invent `ouro doctor --agent <agent>`.");
480
481
  lines.push("mail setup boundaries: do not invent `ouro auth verify --provider mail`, HEY OAuth, HEY IMAP, `ouro mcp call mail ...`, policy flags, autonomous sending, destructive mail actions, or production MX/DNS/forwarding changes. HEY export, HEY forwarding, DNS, MX cutover, sending, and destructive actions require explicit human confirmation.");
481
482
  if (channel === "cli") {
482
483
  lines.push("cli is interactive: it is available when the user opens it, not something `ouro up` daemonizes.");
@@ -171,7 +171,7 @@ async function renderEmptyMailResult(input) {
171
171
  "2. Native mail and Screener: send and receive agent-native mail, confirm unknown senders enter Screener, get family authorization for allow/discard, verify sender policy, and confirm discarded mail is recoverable.",
172
172
  "3. Cross-sense reaction: use a mail-derived update or decision to trigger another configured sense, such as texting the family member on iMessage when BlueBubbles is available.",
173
173
  "4. Ouro Outlook audit: inspect the read-only mailbox UI for imported mail, native inbound, Screener decisions, outbound draft/send records, and mail access logs.",
174
- "supporting diagnostics are separate: ouro status, ouro doctor, bounded mail tools, and Outlook inspection help verify the paths but are not substitutes for them.",
174
+ "supporting diagnostics are separate evidence inside those paths, not additional paths; never answer a golden-path question with command names, tool names, or status checks.",
175
175
  ].join("\n");
176
176
  }
177
177
  if (input.scope === "delegated" || input.source) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ouro.bot/cli",
3
- "version": "0.1.0-alpha.462",
3
+ "version": "0.1.0-alpha.463",
4
4
  "main": "dist/heart/daemon/ouro-entry.js",
5
5
  "bin": {
6
6
  "cli": "dist/heart/daemon/ouro-bot-entry.js",