@rosthq/cli 0.7.114 → 0.7.115

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/index.js CHANGED
@@ -39870,6 +39870,8 @@ var tenantCapabilityGrantDtoSchema = external_exports.object({
39870
39870
  default_agent_access_level: capabilityGrantAccessLevelSchema,
39871
39871
  compile_status: capabilityGrantCompileStatusSchema
39872
39872
  }).strict();
39873
+ var capabilityGrantGrantSourceSchema = external_exports.enum(["charter", "template"]);
39874
+ var capabilityGrantCeilingSourceSchema = external_exports.enum(["tenant_policy", "unset"]);
39873
39875
  var agentEffectiveCapabilityGrantDtoSchema = external_exports.object({
39874
39876
  tool_grant_id: uuidSchema5,
39875
39877
  agent_tool_grant_id: uuidSchema5.nullable(),
@@ -39879,6 +39881,8 @@ var agentEffectiveCapabilityGrantDtoSchema = external_exports.object({
39879
39881
  availability: capabilityGrantAvailabilitySchema,
39880
39882
  source: capabilityGrantSourceSchema,
39881
39883
  selection_source: capabilityGrantSourceSchema.nullable(),
39884
+ grant_source: capabilityGrantGrantSourceSchema.nullable(),
39885
+ ceiling_source: capabilityGrantCeilingSourceSchema,
39882
39886
  max_access_level: capabilityGrantAccessLevelSchema,
39883
39887
  default_agent_access_level: capabilityGrantAccessLevelSchema,
39884
39888
  selected_access_level: capabilityGrantAccessLevelSchema,
@@ -48853,7 +48857,7 @@ External connectors are being rolled out provider by provider, conservatively (r
48853
48857
  order: 48,
48854
48858
  title: "CLI and MCP installation guide",
48855
48859
  summary: "Install the public CLI, register remote token-backed MCP clients, and find the full command and tool catalog.",
48856
- version: "2026-07-20.1",
48860
+ version: "2026-07-21.1",
48857
48861
  public: true,
48858
48862
  audiences: ["human", "cli", "mcp", "in_app_agent"],
48859
48863
  stages: ["company_setup", "staffing"],
@@ -49593,7 +49597,7 @@ Several rows here are seat-operating commands (\`task.create\`, the \`signal.*\`
49593
49597
  | \`rost_list_tool_catalog\` | \`tool.catalog\` | List the discoverable tool catalog the agent builder reads \u2014 id, prescriptive description, scope tiers, credential requirement, access policy, and execution-boundary guidance. | Tenant | Call with \`{}\` or \`{"provider":"google"}\`. |
49594
49598
  | \`rost_list_tenant_capability_grants\` | \`tool_grants.tenant.list\` | List tenant capability ceilings/defaults with connection, availability, source, and compile status. | Tenant | Call with \`{}\`; no secrets or vault refs. |
49595
49599
  | \`rost_update_tenant_capability_policy\` | \`tool_grants.tenant.update\` | Change tenant-wide capability ceilings/defaults with optimistic policy version or digest protection. | Tenant-admin | Human-gated; call with \`expected_policy_version\` or \`expected_policy_digest\`, \`mode\`, and grant ceiling changes. Returns changed grants, clamped defaults, and affected live agents. |
49596
- | \`rost_list_agent_effective_capability_grants\` | \`tool_grants.agent.effective\` | Read one agent's effective capability grants after tenant ceilings, agent selections, and compile availability are applied. | Tenant | Call with \`{"agent_id":"<agent-id>"}\`. |
49600
+ | \`rost_list_agent_effective_capability_grants\` | \`tool_grants.agent.effective\` | Read one agent's effective capability grants as a projection of the signed Charter manifest clamped by the tenant ceiling. Each grant carries provenance: \`grant_source\` (\`charter\` when the selected access comes from the signed manifest, else \`null\`) and \`ceiling_source\` (\`tenant_policy\`). This is the same computation the seat's Tools tab and the activation receipt project from, so the three agree \u2014 a charter-granted capability reads as granted, never a bare \`off\`. | Tenant | Call with \`{"agent_id":"<agent-id>"}\`. |
49597
49601
  | \`rost_update_agent_capability_grants\` | \`tool_grants.agent.update\` | Compile a Charter supersession proposal for agent capability grant reductions or expansions. | Tenant | Human steward/admin only; call with \`{"agent_id":"<agent-id>","grants":[{"tool_grant_id":"<grant-id>","access_level":"read"}]}\`; active authority changes only after the signed Charter is superseded. |
49598
49602
  | \`rost_build_agent_activation_receipt\` | \`agent.activation_receipt\` | Build the current activation receipt for an agent: capabilities, connection metadata, digest, budget, and always-human boundary. | Seat or tenant-admin | Call with \`{"agent_id":"<agent-id>"}\`; rebuild after Charter, connection, lane, schedule, or grant changes. |
49599
49603
  | \`rost_sign_agent_activation_receipt\` | \`agent.activation_sign\` | Human steward/admin sign-off for the exact activation receipt digest. | Tenant | Human-gated; call with \`{"agent_id":"<agent-id>","expected_scope_digest":"sha256:...","budget_cents":2500}\`. |