overlord-cli 5.5.0 → 5.6.0

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/bin/_cli/auth.mjs CHANGED
@@ -660,6 +660,9 @@ export async function runAuthCommand(subcommand, args = []) {
660
660
 
661
661
  Subcommands:
662
662
  login Authorize the CLI via browser (works locally or over SSH)
663
+ --organization-id <id> Pre-select organization non-interactively
664
+ (required when stdin is not a TTY and
665
+ multiple organizations are available)
663
666
  status Show current login status (use --verbose for redacted diagnostics)
664
667
  repair Mirror and chmod shared Desktop/CLI credentials when possible
665
668
  logout Remove stored credentials
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "overlord-cli",
3
- "version": "5.5.0",
3
+ "version": "5.6.0",
4
4
  "description": "Overlord CLI — launch AI agents on tickets from anywhere",
5
5
  "type": "module",
6
6
  "bin": {
@@ -153,7 +153,8 @@ ovld protocol artifact-download-url --session-key <sessionKey> --ticket-id $TICK
153
153
  - The `summary` in deliver is what the PM reads first, so write it as a narrative, not a command list.
154
154
  - Use `write-context` for facts a future agent session should know.
155
155
  - If `ovld` reports `OVERLORD_URL` is unreachable, request permission escalation or network access before retrying.
156
+ - If you must run `ovld auth login`, always include `--organization-id <id>` — use the organization ID from the ticket prompt context to select the organization non-interactively and avoid a blocking TTY prompt.
156
157
  - Do not add or commit changes unless the user explicitly asks you to commit.
157
158
  - Delivery is the concluding step. After delivering, stop unless the user follows up or the ticket is reopened.
158
159
 
159
- <!-- version: 0.2.3 -->
160
+ <!-- version: 0.2.4 -->