@odla-ai/cli 0.27.6 → 0.27.7

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/dist/bin.cjs CHANGED
@@ -518,7 +518,7 @@ var SCOPE_PURPOSE = {
518
518
  "platform:status:read": "read the platform fleet health and deployment snapshot",
519
519
  "app:config:read": "compare checked-in intent with an exact-id app Registry configuration",
520
520
  "app:config:write": "apply or inspect one revision-bound configuration operation for an app you own",
521
- "platform:runbook:write": "add or edit odla's operational runbooks",
521
+ "platform:runbook:write": "read and edit all of odla's operational runbooks, including admin-visible content",
522
522
  "platform:ai:policy:write": "change System AI model routing",
523
523
  "platform:ai:policy:read": "read System AI model routing",
524
524
  "platform:ai:credential:write": "replace a stored AI provider key",
@@ -12067,8 +12067,13 @@ async function whoamiCommand(parsed, deps = {}) {
12067
12067
  out.log(`admin: ${identity.admin ? "yes" : "no"}`);
12068
12068
  if (identity.scopes.length) out.log(`scopes: ${identity.scopes.join(", ")}`);
12069
12069
  if (!identity.admin) {
12070
- out.log("\nYou can read platform runbooks but not edit them. A handshake-minted");
12071
- out.log("device token never carries admin \u2014 sign in to Studio as an admin to edit.");
12070
+ if (identity.scopes.includes("platform:runbook:write")) {
12071
+ out.log("\nThis exact scope can read and edit all platform runbook content.");
12072
+ out.log("The device token is not ambient admin and cannot change visibility.");
12073
+ } else {
12074
+ out.log("\nYou can read operator-visible platform runbooks but not edit them.");
12075
+ out.log("Use a platform-admin-approved runbook write request to edit.");
12076
+ }
12072
12077
  }
12073
12078
  }
12074
12079