@rosthq/cli 0.7.82 → 0.7.83
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"command-manifest.d.ts","sourceRoot":"","sources":["../../src/generated/command-manifest.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAE3E,eAAO,MAAM,gBAAgB,EAAE,SAAS,oBAAoB,
|
|
1
|
+
{"version":3,"file":"command-manifest.d.ts","sourceRoot":"","sources":["../../src/generated/command-manifest.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAE3E,eAAO,MAAM,gBAAgB,EAAE,SAAS,oBAAoB,EAuQ3D,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -39891,6 +39891,86 @@ var toolGrantsAgentUpdateOutputSchema = external_exports.object({
|
|
|
39891
39891
|
}).strict();
|
|
39892
39892
|
var scopeDigestSchema = external_exports.string().regex(/^sha256:[0-9a-f]{64}$/);
|
|
39893
39893
|
var classifierVersionSchema = external_exports.string().regex(/^[a-z][a-z0-9_.-]{0,79}$/);
|
|
39894
|
+
var toolGrantsTenantUpdateGrantInputSchema = external_exports.object({
|
|
39895
|
+
tool_grant_id: uuidSchema5,
|
|
39896
|
+
max_access_level: capabilityGrantAccessLevelSchema,
|
|
39897
|
+
default_agent_access_level: capabilityGrantAccessLevelSchema.optional()
|
|
39898
|
+
}).strict();
|
|
39899
|
+
var toolGrantsTenantUpdateInputSchema = external_exports.object({
|
|
39900
|
+
expected_policy_version: external_exports.number().int().nonnegative().optional(),
|
|
39901
|
+
expected_policy_digest: scopeDigestSchema.optional(),
|
|
39902
|
+
mode: external_exports.enum(["managed", "open"]),
|
|
39903
|
+
grants: external_exports.array(toolGrantsTenantUpdateGrantInputSchema).max(50).default([])
|
|
39904
|
+
}).strict().superRefine((value, ctx) => {
|
|
39905
|
+
if (value.expected_policy_version === void 0 && value.expected_policy_digest === void 0) {
|
|
39906
|
+
ctx.addIssue({
|
|
39907
|
+
code: external_exports.ZodIssueCode.custom,
|
|
39908
|
+
message: "Provide expected_policy_version or expected_policy_digest.",
|
|
39909
|
+
path: ["expected_policy_version"]
|
|
39910
|
+
});
|
|
39911
|
+
}
|
|
39912
|
+
const seen = /* @__PURE__ */ new Set();
|
|
39913
|
+
for (const [index, grant] of value.grants.entries()) {
|
|
39914
|
+
if (seen.has(grant.tool_grant_id)) {
|
|
39915
|
+
ctx.addIssue({
|
|
39916
|
+
code: external_exports.ZodIssueCode.custom,
|
|
39917
|
+
message: "Duplicate tool_grant_id values are not allowed.",
|
|
39918
|
+
path: ["grants", index, "tool_grant_id"]
|
|
39919
|
+
});
|
|
39920
|
+
continue;
|
|
39921
|
+
}
|
|
39922
|
+
seen.add(grant.tool_grant_id);
|
|
39923
|
+
if (grant.default_agent_access_level !== void 0) {
|
|
39924
|
+
const levels = capabilityGrantAccessLevelSchema.options;
|
|
39925
|
+
const maxRank = levels.indexOf(grant.max_access_level);
|
|
39926
|
+
const defaultRank = levels.indexOf(grant.default_agent_access_level);
|
|
39927
|
+
if (defaultRank > maxRank) {
|
|
39928
|
+
ctx.addIssue({
|
|
39929
|
+
code: external_exports.ZodIssueCode.custom,
|
|
39930
|
+
message: "default_agent_access_level cannot exceed max_access_level.",
|
|
39931
|
+
path: ["grants", index, "default_agent_access_level"]
|
|
39932
|
+
});
|
|
39933
|
+
}
|
|
39934
|
+
}
|
|
39935
|
+
}
|
|
39936
|
+
});
|
|
39937
|
+
var toolGrantsTenantUpdateGrantResultSchema = external_exports.object({
|
|
39938
|
+
tool_grant_id: uuidSchema5,
|
|
39939
|
+
capability_id: external_exports.string().min(1),
|
|
39940
|
+
max_access_level: capabilityGrantAccessLevelSchema,
|
|
39941
|
+
default_agent_access_level: capabilityGrantAccessLevelSchema
|
|
39942
|
+
}).strict();
|
|
39943
|
+
var toolGrantsTenantUpdateAgentImpactSchema = external_exports.object({
|
|
39944
|
+
agent_id: uuidSchema5,
|
|
39945
|
+
seat_id: uuidSchema5,
|
|
39946
|
+
capability_ids: external_exports.array(external_exports.string().min(1)).min(1)
|
|
39947
|
+
}).strict();
|
|
39948
|
+
var toolGrantsTenantUpdateOutputSchema = external_exports.object({
|
|
39949
|
+
policy: external_exports.object({
|
|
39950
|
+
mode: external_exports.enum(["managed", "open"]),
|
|
39951
|
+
version: external_exports.number().int().nonnegative(),
|
|
39952
|
+
digest: scopeDigestSchema
|
|
39953
|
+
}).strict(),
|
|
39954
|
+
changed_grants: external_exports.array(toolGrantsTenantUpdateGrantResultSchema),
|
|
39955
|
+
clamped_defaults: external_exports.array(toolGrantsTenantUpdateGrantResultSchema),
|
|
39956
|
+
affected_live_agents: external_exports.array(toolGrantsTenantUpdateAgentImpactSchema)
|
|
39957
|
+
}).strict();
|
|
39958
|
+
var executableHandlerCoverageItemSchema = external_exports.object({
|
|
39959
|
+
tool_name: external_exports.string().min(1),
|
|
39960
|
+
implemented: external_exports.boolean()
|
|
39961
|
+
}).strict();
|
|
39962
|
+
var executableHandlerCoverageInputSchema = external_exports.object({
|
|
39963
|
+
registry_tool_names: external_exports.array(external_exports.string().min(1)).default([]),
|
|
39964
|
+
catalog_tool_names: external_exports.array(external_exports.string().min(1)).default([]),
|
|
39965
|
+
required_tool_names: external_exports.array(external_exports.string().min(1)).default([])
|
|
39966
|
+
}).strict();
|
|
39967
|
+
var executableHandlerCoverageOutputSchema = external_exports.object({
|
|
39968
|
+
coverage_digest: scopeDigestSchema,
|
|
39969
|
+
covered_tool_names: external_exports.array(external_exports.string().min(1)),
|
|
39970
|
+
missing_registry_tool_names: external_exports.array(external_exports.string().min(1)),
|
|
39971
|
+
missing_catalog_tool_names: external_exports.array(external_exports.string().min(1)),
|
|
39972
|
+
items: external_exports.array(executableHandlerCoverageItemSchema)
|
|
39973
|
+
}).strict();
|
|
39894
39974
|
var agentActivationReceiptInputSchema = external_exports.object({
|
|
39895
39975
|
agent_id: uuidSchema5,
|
|
39896
39976
|
proposed_budget_cents: external_exports.number().int().nonnegative().max(1e7).optional()
|
|
@@ -42457,6 +42537,14 @@ var tenantAnthropicKeySaveInputSchema = external_exports.object({
|
|
|
42457
42537
|
var tenantAnthropicKeySaveOutputSchema = external_exports.object({
|
|
42458
42538
|
stored: external_exports.literal(true)
|
|
42459
42539
|
}).strict();
|
|
42540
|
+
var tenantAnthropicKeyDisableInputSchema = external_exports.object({}).strict();
|
|
42541
|
+
var tenantAnthropicKeyDisableOutputSchema = external_exports.object({
|
|
42542
|
+
tenant_id: uuidSchema11,
|
|
42543
|
+
credential_id: uuidSchema11.nullable(),
|
|
42544
|
+
disabled: external_exports.boolean(),
|
|
42545
|
+
already_disabled: external_exports.boolean(),
|
|
42546
|
+
managed_fallback_ready: external_exports.boolean()
|
|
42547
|
+
}).strict();
|
|
42460
42548
|
var seatCreateInputSchema = external_exports.object({
|
|
42461
42549
|
name: external_exports.string().trim().min(1).max(120),
|
|
42462
42550
|
parent_seat_id: uuidSchema11.nullable().optional(),
|
|
@@ -42781,6 +42869,7 @@ var markNotificationsReadRequestSchema = external_exports.object({
|
|
|
42781
42869
|
|
|
42782
42870
|
// ../../packages/protocol/src/product-analytics.ts
|
|
42783
42871
|
var uuidSchema12 = external_exports.string().uuid();
|
|
42872
|
+
var opaqueRequestIdSchema = external_exports.string().trim().min(1).max(240);
|
|
42784
42873
|
var safeNameSchema = external_exports.string().trim().min(1).max(120).regex(/^[a-z][a-z0-9._:-]*$/);
|
|
42785
42874
|
var safeSurfaceSchema = external_exports.string().trim().min(1).max(80).regex(/^[a-z][a-z0-9_-]*$/);
|
|
42786
42875
|
var routeSegmentSchema = /^(?:[a-z][a-z0-9-]{0,31}|:[a-z][a-z0-9_]{0,31}|\*)$/;
|
|
@@ -42866,15 +42955,21 @@ var commandInvocationInputSchema = external_exports.object({
|
|
|
42866
42955
|
tenant_id: uuidSchema12,
|
|
42867
42956
|
user_id: uuidSchema12.optional(),
|
|
42868
42957
|
seat_id: uuidSchema12.optional(),
|
|
42958
|
+
run_id: uuidSchema12.optional(),
|
|
42959
|
+
agent_turn_execution_id: uuidSchema12.optional(),
|
|
42960
|
+
session_id: uuidSchema12.optional(),
|
|
42869
42961
|
command_id: safeNameSchema,
|
|
42870
42962
|
source: analyticsSourceSchema,
|
|
42871
42963
|
actor_kind: external_exports.enum(["user", "agent", "system"]),
|
|
42964
|
+
execution_lane: external_exports.enum(["chat", "run", "mcp_session", "runner", "system"]).optional(),
|
|
42965
|
+
initiator_kind: external_exports.enum(["user", "agent", "system"]).optional(),
|
|
42966
|
+
initiator_user_id: uuidSchema12.nullable().optional(),
|
|
42872
42967
|
scope_kind: external_exports.enum(["tenant_admin", "tenant", "seat"]),
|
|
42873
42968
|
status: commandInvocationStatusSchema,
|
|
42874
42969
|
guard_result: external_exports.enum(["allowed", "denied_manifest", "denied_budget", "escalated", "denied_tenant_policy"]).optional(),
|
|
42875
42970
|
duration_ms: durationMsSchema,
|
|
42876
42971
|
confirmation_required: external_exports.boolean().optional(),
|
|
42877
|
-
request_id:
|
|
42972
|
+
request_id: opaqueRequestIdSchema.optional(),
|
|
42878
42973
|
properties: analyticsPropertiesSchema.optional(),
|
|
42879
42974
|
occurred_at: external_exports.string().datetime({ offset: true }).optional()
|
|
42880
42975
|
}).strict().superRefine((value, ctx) => {
|
|
@@ -43343,8 +43438,8 @@ var seatTrustSummarySchema = external_exports.object({
|
|
|
43343
43438
|
run_count: external_exports.number().int().nonnegative(),
|
|
43344
43439
|
failed_run_count: external_exports.number().int().nonnegative(),
|
|
43345
43440
|
tool_call_count: external_exports.number().int().nonnegative(),
|
|
43346
|
-
// The hero metric: actions held this period because they exceeded the charter.
|
|
43347
43441
|
denied_tool_call_count: external_exports.number().int().nonnegative(),
|
|
43442
|
+
held_tool_call_count: external_exports.number().int().nonnegative(),
|
|
43348
43443
|
last_activity_at: isoDateTime4.nullable()
|
|
43349
43444
|
}).strict();
|
|
43350
43445
|
var agentListRunsInputSchema = external_exports.object({
|
|
@@ -43372,6 +43467,7 @@ var seatRunSchema = external_exports.object({
|
|
|
43372
43467
|
cost_usd: external_exports.string(),
|
|
43373
43468
|
tool_call_count: external_exports.number().int().nonnegative(),
|
|
43374
43469
|
denied_tool_call_count: external_exports.number().int().nonnegative(),
|
|
43470
|
+
held_tool_call_count: external_exports.number().int().nonnegative(),
|
|
43375
43471
|
skill_activation_count: external_exports.number().int().nonnegative()
|
|
43376
43472
|
}).strict();
|
|
43377
43473
|
var seatRunErrorLogSchema = runErrorLogSchema.extend({
|
|
@@ -43677,6 +43773,34 @@ var runnerExecutionReadinessSchema = external_exports.object({
|
|
|
43677
43773
|
recent_completed_at: isoDateTime6.nullable(),
|
|
43678
43774
|
recent_failed_at: isoDateTime6.nullable()
|
|
43679
43775
|
}).strict();
|
|
43776
|
+
var runnerClaimabilityCheckSchema = external_exports.object({
|
|
43777
|
+
key: external_exports.string(),
|
|
43778
|
+
actual: external_exports.union([external_exports.string(), external_exports.number(), external_exports.boolean(), external_exports.null()]),
|
|
43779
|
+
required: external_exports.union([external_exports.string(), external_exports.number(), external_exports.boolean(), external_exports.null()]),
|
|
43780
|
+
passed: external_exports.boolean(),
|
|
43781
|
+
remediation: external_exports.string()
|
|
43782
|
+
}).strict();
|
|
43783
|
+
var runnerClaimabilityExplainSchema = external_exports.object({
|
|
43784
|
+
claimable: external_exports.boolean(),
|
|
43785
|
+
build_claimable: external_exports.boolean(),
|
|
43786
|
+
merge_claimable: external_exports.boolean(),
|
|
43787
|
+
checks: external_exports.array(runnerClaimabilityCheckSchema),
|
|
43788
|
+
hold_reasons: external_exports.array(external_exports.enum([
|
|
43789
|
+
"dependency",
|
|
43790
|
+
"serial",
|
|
43791
|
+
"evidence",
|
|
43792
|
+
"human",
|
|
43793
|
+
"runner_capability",
|
|
43794
|
+
"runner_version",
|
|
43795
|
+
"runner_sandbox",
|
|
43796
|
+
"capacity",
|
|
43797
|
+
"schedule",
|
|
43798
|
+
"paused",
|
|
43799
|
+
"policy",
|
|
43800
|
+
"unknown"
|
|
43801
|
+
])),
|
|
43802
|
+
remediation: external_exports.string()
|
|
43803
|
+
}).strict();
|
|
43680
43804
|
var runnerSandboxPostureSchema = external_exports.enum(["guard", "strict", "off", "none", "unknown"]);
|
|
43681
43805
|
var runnerPostureSchema = external_exports.object({
|
|
43682
43806
|
sandbox: runnerSandboxPostureSchema,
|
|
@@ -43777,6 +43901,7 @@ var runnerDiagnoseOutputSchema = external_exports.object({
|
|
|
43777
43901
|
last_heartbeat_at: isoDateTime6.nullable(),
|
|
43778
43902
|
paired_at: isoDateTime6.nullable(),
|
|
43779
43903
|
revocation_state: external_exports.enum(["active", "revoked", "unpaired"]),
|
|
43904
|
+
claimability: runnerClaimabilityExplainSchema,
|
|
43780
43905
|
repair_guidance: external_exports.array(external_exports.object({
|
|
43781
43906
|
action: external_exports.string(),
|
|
43782
43907
|
command: external_exports.string(),
|
|
@@ -44626,6 +44751,62 @@ var softwarePhaseSchedulerStateSchema = external_exports.object({
|
|
|
44626
44751
|
remediation_href: external_exports.string().nullable(),
|
|
44627
44752
|
work_order_id: uuid11.nullable()
|
|
44628
44753
|
});
|
|
44754
|
+
var softwareDispatchHoldReasonSchema = external_exports.enum([
|
|
44755
|
+
"dependency",
|
|
44756
|
+
"serial",
|
|
44757
|
+
"evidence",
|
|
44758
|
+
"human",
|
|
44759
|
+
"runner_capability",
|
|
44760
|
+
"runner_version",
|
|
44761
|
+
"runner_sandbox",
|
|
44762
|
+
"capacity",
|
|
44763
|
+
"schedule",
|
|
44764
|
+
"paused",
|
|
44765
|
+
"policy",
|
|
44766
|
+
"unknown"
|
|
44767
|
+
]);
|
|
44768
|
+
var softwareDispatchPreviewRunnerRequirementSchema = external_exports.object({
|
|
44769
|
+
profile: external_exports.enum(["forge_build", "forge_merge", "grooming"]),
|
|
44770
|
+
min_cli_version: external_exports.string().nullable(),
|
|
44771
|
+
min_merge_version: external_exports.string().nullable(),
|
|
44772
|
+
sandbox_postures: external_exports.array(external_exports.enum(["guard", "strict"]))
|
|
44773
|
+
}).strict();
|
|
44774
|
+
var softwareDispatchPreviewItemSchema = external_exports.object({
|
|
44775
|
+
kind: external_exports.enum(["changeset", "task"]),
|
|
44776
|
+
id: uuid11,
|
|
44777
|
+
ordinal: external_exports.number().int().positive(),
|
|
44778
|
+
title: external_exports.string(),
|
|
44779
|
+
changeset_ordinal: external_exports.number().int().positive().nullable(),
|
|
44780
|
+
task_key: external_exports.string().nullable(),
|
|
44781
|
+
depends_on: external_exports.array(external_exports.string()),
|
|
44782
|
+
parallelizable: external_exports.boolean(),
|
|
44783
|
+
est_turns: external_exports.number().int().nullable(),
|
|
44784
|
+
hold_reason: softwareDispatchHoldReasonSchema.nullable(),
|
|
44785
|
+
hold_detail: external_exports.string().nullable()
|
|
44786
|
+
}).strict();
|
|
44787
|
+
var softwareDispatchPreviewSchema = external_exports.object({
|
|
44788
|
+
status: external_exports.enum(["ready", "grooming", "held"]),
|
|
44789
|
+
digest: external_exports.string().min(1),
|
|
44790
|
+
expires_at: external_exports.string(),
|
|
44791
|
+
included_order: external_exports.array(softwareDispatchPreviewItemSchema),
|
|
44792
|
+
held_items: external_exports.array(softwareDispatchPreviewItemSchema),
|
|
44793
|
+
dependencies: external_exports.array(external_exports.object({
|
|
44794
|
+
from_task_key: external_exports.string(),
|
|
44795
|
+
to_task_key: external_exports.string()
|
|
44796
|
+
}).strict()).default([]),
|
|
44797
|
+
serial_lanes: external_exports.array(external_exports.string()).default([]),
|
|
44798
|
+
estimated_turns: external_exports.number().int().nullable(),
|
|
44799
|
+
runner_requirements: softwareDispatchPreviewRunnerRequirementSchema,
|
|
44800
|
+
authority_budget_envelope: external_exports.object({
|
|
44801
|
+
automation_mode: softwareAutomationModeSchema,
|
|
44802
|
+
inferred_risk: softwareRiskLevelSchema,
|
|
44803
|
+
max_iterations: external_exports.number().int().nullable(),
|
|
44804
|
+
max_wall_clock_seconds: external_exports.number().int().nullable(),
|
|
44805
|
+
cost_budget_usd: external_exports.string().nullable()
|
|
44806
|
+
}).strict(),
|
|
44807
|
+
grooming_required: external_exports.boolean(),
|
|
44808
|
+
grooming_reason: external_exports.string().nullable()
|
|
44809
|
+
}).strict();
|
|
44629
44810
|
var softwareBuildRequestSummarySchema = external_exports.object({
|
|
44630
44811
|
id: uuid11,
|
|
44631
44812
|
software_project_id: uuid11,
|
|
@@ -44821,7 +45002,8 @@ var softwareRequestShowOutputSchema = external_exports.object({
|
|
|
44821
45002
|
gates: external_exports.array(softwareGateSummarySchema),
|
|
44822
45003
|
plan_versions: external_exports.array(softwarePlanVersionSummarySchema),
|
|
44823
45004
|
changesets: external_exports.array(softwareChangesetSummarySchema),
|
|
44824
|
-
tasks: external_exports.array(softwareTaskSummarySchema)
|
|
45005
|
+
tasks: external_exports.array(softwareTaskSummarySchema),
|
|
45006
|
+
dispatch_preview: softwareDispatchPreviewSchema.nullable()
|
|
44825
45007
|
});
|
|
44826
45008
|
var softwareRequestLifecycleReason = external_exports.string().trim().min(1).max(2e3);
|
|
44827
45009
|
var softwareRequestPauseInputSchema = external_exports.object({
|
|
@@ -45786,6 +45968,7 @@ var syncBriefAgentActivitySchema = external_exports.object({
|
|
|
45786
45968
|
failed_run_count: external_exports.number().int().nonnegative(),
|
|
45787
45969
|
tool_call_count: external_exports.number().int().nonnegative(),
|
|
45788
45970
|
denied_tool_call_count: external_exports.number().int().nonnegative(),
|
|
45971
|
+
held_tool_call_count: external_exports.number().int().nonnegative().optional(),
|
|
45789
45972
|
cost_usd: external_exports.number().nonnegative(),
|
|
45790
45973
|
note: external_exports.string().min(1)
|
|
45791
45974
|
}).strict();
|
|
@@ -47134,7 +47317,7 @@ Drafting can be assisted by agents. Activation is a human decision. When authori
|
|
|
47134
47317
|
order: 40,
|
|
47135
47318
|
title: "Agent staffing playbook",
|
|
47136
47319
|
summary: "How to decide whether a seat should be human, agent, or hybrid, and how to go live safely.",
|
|
47137
|
-
version: "2026-07-14.
|
|
47320
|
+
version: "2026-07-14.2",
|
|
47138
47321
|
public: true,
|
|
47139
47322
|
audiences: ["human", "cli", "mcp", "in_app_agent"],
|
|
47140
47323
|
stages: ["staffing"],
|
|
@@ -47193,7 +47376,7 @@ Two creation paths, both draft-first. Read the stock-agents guide for templates
|
|
|
47193
47376
|
- Custom: \`agent_setup.start\` / \`rost_start_agent_setup\` (returns a \`setup_id\`), iterate with \`agent_setup.get\` and \`agent_setup.update\`, then \`agent.create_custom\` / \`rost_create_custom_agent\`. Stage tools with \`agent.configure_tools\` (vault refs only) and sandbox with \`agent.run_dry_run\`.
|
|
47194
47377
|
- Inspect runtime: \`agent.status\` / \`rost_get_agent_status\` with \`{"seat_id":"<seat-id>"}\` returns lane, live state, steward chain, dry-run result, and Runner availability.
|
|
47195
47378
|
- Run on demand: \`{{cli}} agent run-now --seat-id <seat-id>\` / \`agent.run_now\` / \`rost_run_agent_now\` queues an immediate live run without changing the saved schedule. Cloud agents dispatch to the Inngest executor; runner agents queue work for the paired runner. The command is ungated but still requires a live staffed agent and the normal server-side tool guard.
|
|
47196
|
-
- Audit what an agent did (Trust Card): \`{{cli}} command agent.list_runs --json '{"seat_id":"<seat-id>"}'\` / \`rost_list_agent_runs\` returns the seat's run history with per-run Skill activation counts plus tool-call and guard-held counts; \`{{cli}} agent get-run --seat-id <seat-id> --run-id <run-id>\` / \`agent.get_run\` / \`rost_get_agent_run_diagnostics\` reads one run's transcript reference, token/cost usage, outcome, product-visible run errors, and any Skill versions/files loaded for that run. Pass \`--transcript\` (\`{"transcript":true}\`) to also return the persisted, secret-scrubbed session transcript for that run when one exists \u2014 cloud-lane and runner turns persist a bounded transcript at turn end. Final run outcomes are no longer chopped to a short summary; the full report survives. Loaded Skill file hashes and sizes identify the immutable source package; the runtime may still bound or truncate prompt text before sending it to the model. \`{{cli}} command agent.list_tool_calls --json '{"seat_id":"<seat-id>"}'\` / \`rost_list_agent_tool_calls\` returns the tool-call ledger with each call's guard result. Both list commands include
|
|
47379
|
+
- Audit what an agent did (Trust Card): \`{{cli}} command agent.list_runs --json '{"seat_id":"<seat-id>"}'\` / \`rost_list_agent_runs\` returns the seat's run history with per-run Skill activation counts plus tool-call, guard-denied, and guard-held counts; \`{{cli}} agent get-run --seat-id <seat-id> --run-id <run-id>\` / \`agent.get_run\` / \`rost_get_agent_run_diagnostics\` reads one run's transcript reference, token/cost usage, outcome, product-visible run errors, and any Skill versions/files loaded for that run. Pass \`--transcript\` (\`{"transcript":true}\`) to also return the persisted, secret-scrubbed session transcript for that run when one exists \u2014 cloud-lane and runner turns persist a bounded transcript at turn end. Final run outcomes are no longer chopped to a short summary; the full report survives. Loaded Skill file hashes and sizes identify the immutable source package; the runtime may still bound or truncate prompt text before sending it to the model. \`{{cli}} command agent.list_tool_calls --json '{"seat_id":"<seat-id>"}'\` / \`rost_list_agent_tool_calls\` returns the tool-call ledger with each call's guard result. Both list commands include \`denied_tool_call_count\` and \`held_tool_call_count\` rollups: hard guard denials stay separate from actions escalated for review. Pass \`{"seat_id":"<seat-id>","held_only":true}\` to \`agent.list_tool_calls\` for only the held calls. The web seat page shows the same facts as a Trust Card, and its Activity tab additionally renders the full persisted transcript and artifacts rail for a selected session inline (no \`--transcript\` flag needed there) alongside the business-activity ledger (\`work.record\`/\`work.list\`) \u2014 counter tiles and a run-grouped feed with each record's verb, object, outcome, evidence, and \`template_ref\` when one was used.
|
|
47197
47380
|
|
|
47198
47381
|
## Review readiness before go-live
|
|
47199
47382
|
|
|
@@ -47721,7 +47904,7 @@ External connectors are being rolled out provider by provider, conservatively (r
|
|
|
47721
47904
|
order: 48,
|
|
47722
47905
|
title: "CLI and MCP installation guide",
|
|
47723
47906
|
summary: "Install the public CLI, register remote token-backed MCP clients, and find the full command and tool catalog.",
|
|
47724
|
-
version: "2026-07-15.
|
|
47907
|
+
version: "2026-07-15.3",
|
|
47725
47908
|
public: true,
|
|
47726
47909
|
audiences: ["human", "cli", "mcp", "in_app_agent"],
|
|
47727
47910
|
stages: ["company_setup", "staffing"],
|
|
@@ -47794,7 +47977,9 @@ External connectors are being rolled out provider by provider, conservatively (r
|
|
|
47794
47977
|
"error_log.resolve",
|
|
47795
47978
|
"error_log.supersede",
|
|
47796
47979
|
"runner.diagnose",
|
|
47797
|
-
"runner.repair"
|
|
47980
|
+
"runner.repair",
|
|
47981
|
+
"tenant.anthropic_key.disable",
|
|
47982
|
+
"tool_grants.tenant.update"
|
|
47798
47983
|
],
|
|
47799
47984
|
legal: {
|
|
47800
47985
|
publicRisk: "low",
|
|
@@ -47835,7 +48020,7 @@ A headless agent cannot complete setup unattended. Two things always require a h
|
|
|
47835
48020
|
|
|
47836
48021
|
Treat these as blocking prerequisites: the agent prepares the request and waits for the human approver.
|
|
47837
48022
|
|
|
47838
|
-
- **Secrets never travel through the CLI.** Raw-secret sinks (\`credential.ingress\`, \`tenant.anthropic_key.save\`) are refused on every CLI path \u2014 an ergonomic verb, \`--input\`, and \`{{cli}} command <id> --json\` all stop with guidance instead of accepting the secret, because a value in argv lands in shell history and process arguments before any redaction. Provide the secret through the vault-backed flow (web Settings or the integration connect flow); the CLI only ever carries the non-secret credential *name*, scope, and provider.
|
|
48023
|
+
- **Secrets never travel through the CLI.** Raw-secret sinks (\`credential.ingress\`, \`tenant.anthropic_key.save\`) are refused on every CLI path \u2014 an ergonomic verb, \`--input\`, and \`{{cli}} command <id> --json\` all stop with guidance instead of accepting the secret, because a value in argv lands in shell history and process arguments before any redaction. Provide the secret through the vault-backed flow (web Settings or the integration connect flow); the CLI only ever carries the non-secret credential *name*, scope, and provider. Disabling tenant BYOK (\`tenant.anthropic_key.disable\`) never returns the old key; it revokes the active vault-backed credential only after managed Anthropic fallback is available.
|
|
47839
48024
|
|
|
47840
48025
|
## Placeholder legend
|
|
47841
48026
|
|
|
@@ -48086,7 +48271,7 @@ A leaked tenant-admin token can administer the whole tenant, not just one seat.
|
|
|
48086
48271
|
|
|
48087
48272
|
### Storing the Anthropic key and other credentials
|
|
48088
48273
|
|
|
48089
|
-
Storing the tenant model key or any other secret goes through **credential ingress** as a vault reference \u2014 the secret is never pasted into a prompt, config, or log. Use \`rost_save_tenant_anthropic_key\` (\`tenant.anthropic_key.save\`) for the tenant Anthropic key; other secrets go through the Settings vault-ingress flow (\`credential.ingress\`), a human-only interactive flow that is deliberately not an agent-callable MCP tool and refuses raw secrets over CLI argv. \`rost_configure_agent_tools\` stages credential *requests* (provider, scope, and label only) but never accepts raw secrets. Credential storage is a gated \`credential_flow\` confirmation that a human approves. For the vault model and the security posture behind this, see the security-model-guide and the tool-access-and-vault guide; for model-bound data, BYOK provider handling, and local-client provider settings, see the ai-model-data-handling-guide; for the confirmation gate, see the confirmations-guide.
|
|
48274
|
+
Storing the tenant model key or any other secret goes through **credential ingress** as a vault reference \u2014 the secret is never pasted into a prompt, config, or log. Use \`rost_save_tenant_anthropic_key\` (\`tenant.anthropic_key.save\`) for the tenant Anthropic key; other secrets go through the Settings vault-ingress flow (\`credential.ingress\`), a human-only interactive flow that is deliberately not an agent-callable MCP tool and refuses raw secrets over CLI argv. Disabling the tenant Anthropic key uses \`tenant.anthropic_key.disable\`: it is owner/admin-only, always human-gated, revokes the active credential row without reading or returning secret material, and first checks that managed Anthropic fallback is configured. \`rost_configure_agent_tools\` stages credential *requests* (provider, scope, and label only) but never accepts raw secrets. Credential storage is a gated \`credential_flow\` confirmation that a human approves. For the vault model and the security posture behind this, see the security-model-guide and the tool-access-and-vault guide; for model-bound data, BYOK provider handling, and local-client provider settings, see the ai-model-data-handling-guide; for the confirmation gate, see the confirmations-guide.
|
|
48090
48275
|
|
|
48091
48276
|
## When to use MCP or CLI
|
|
48092
48277
|
|
|
@@ -48185,7 +48370,7 @@ The signed-in app exposes the same Skill command surface at **Skills**, linked f
|
|
|
48185
48370
|
| \`{{cli}} escalation list|get|resolve|reject\` | \`escalation.list\`, \`escalation.get\`, \`escalation.resolve\`, \`escalation.reject\` | Work the steward escalation queue. | Steward | \`{{cli}} escalation list --json\` |
|
|
48186
48371
|
| \`{{cli}} error list|resolve|supersede\` | \`error_log.list\`, \`error_log.resolve\`, \`error_log.supersede\` | List active, acknowledged, resolved, or superseded product error logs and let a human acknowledge, resolve, or supersede stale errors with evidence links. | Tenant | \`{{cli}} error list --resolved active --json\`; \`{{cli}} error resolve --error-log-id <id> --reason "Fixed in PR #123"\` |
|
|
48187
48372
|
| \`{{cli}} sync brief|compile|complete\` | \`sync.brief.get\`, \`sync.brief.compile\`, \`sync.run.complete\` | Compile, read, and complete a weekly Sync. | Tenant | \`{{cli}} sync brief --json\` |
|
|
48188
|
-
| \`{{cli}} runner list|status|diagnose|repair|work-orders|revoke|serve\` | \`runner.list\`, \`runner.status\`, \`runner.diagnose\`, \`runner.repair\`, \`work_order.list\`, \`runner.revoke\`, runner endpoint APIs | Inspect heartbeat and execute-readiness evidence, inspect work orders, diagnose offline runners, get repair guidance, revoke a runner, or run the headless local runner loop. | Tenant | \`{{cli}} runner diagnose --runner-id <id> --json\`; \`{{cli}} runner serve --once\` |
|
|
48373
|
+
| \`{{cli}} runner list|status|diagnose|repair|work-orders|revoke|serve\` | \`runner.list\`, \`runner.status\`, \`runner.diagnose\`, \`runner.repair\`, \`work_order.list\`, \`runner.revoke\`, runner endpoint APIs | Inspect heartbeat and execute-readiness evidence, inspect work orders, diagnose offline runners, explain claimability gates, get repair guidance, revoke a runner, or run the headless local runner loop. | Tenant | \`{{cli}} runner diagnose --runner-id <id> --json\`; \`{{cli}} runner serve --once\` |
|
|
48189
48374
|
| \`{{cli}} runner install-service|start|stop|restart|status|logs|uninstall --name <name> [--user-code <code>]\` | launchd/service manager (macOS today) + \`{{cli}} runner serve\` | Install and manage an always-on local runner service that keeps the runner online across reboots. The service runs the runner under the absolute Node binary with an explicit PATH (so it works under nvm/Homebrew) and bootstraps into whichever launchd domain the session supports. Pass \`--user-code\` to pair the service at install; otherwise install prints the exact command to pair it. No secret is stored in the service definition, its arguments, or logs. Non-macOS emits an explicit unsupported message. | Tenant (local machine) | \`{{cli}} runner install-service --name mac-mini --execute --user-code ABCD-EFGH\`; \`{{cli}} runner logs --name mac-mini\` |
|
|
48190
48375
|
| \`{{cli}} notification settings|test|errors\` | \`notification.settings.get\`, \`notification.test\`, \`notification.list_errors\` | Read notification settings, send a test, and list failed deliveries with linked product error source, seat id, and run id when available. | Tenant | \`{{cli}} notification errors --limit 10 --json\` |
|
|
48191
48376
|
| \`{{cli}} integration list|readiness|status|test\` / credential flow for Baserow REST connect | \`integration.connect_rest\`, \`integration.list\`, \`integration.readiness\`, \`integration.status\`, \`integration.test\` | Create a vault-backed Baserow REST integration through the credential flow, list connector metadata, read setup-readiness, read one connector's health, and run provider-specific tests without exposing credentials. | Tenant-admin for connect; tenant for reads/tests | \`{{cli}} integration readiness --provider google --json\` |
|
|
@@ -48206,7 +48391,7 @@ The signed-in app exposes the same Skill command surface at **Skills**, linked f
|
|
|
48206
48391
|
| \`{{cli}} deliverable list|get|create|attach\` | \`deliverable.list\`, \`deliverable.get\`, \`deliverable.create\`, \`deliverable.attach\` | List, get, create, or attach agent deliverables for a seat. Deliverables are durable work outputs visible across UI, CLI, and MCP. | Tenant (list/get), Seat (create/attach) | \`{{cli}} deliverable list --seat-id <id> --json\`; \`{{cli}} deliverable create --title "Brief" --kind brief\` |
|
|
48207
48392
|
| \`{{cli}} graph show\` | \`graph.get\` | Print a table view of the Responsibility Graph with explicit \`seat_id\` and \`parent_seat_id\` columns. | Tenant | \`{{cli}} graph show\` |
|
|
48208
48393
|
| \`{{cli}} seat list|get|create|rename|reparent|decommission\` | \`graph.get\`, \`seat.get\`, \`seat.create\`, \`seat.rename\`, \`seat.reparent\`, \`seat.decommission\`, \`seat.decommission_preview\` | Work with seats as first-class CLI primitives. \`seat decommission --dry-run\` previews affected occupancies, agents, Charters, tokens, credentials, work orders, and schedules before the human-gated teardown. | Tenant / Seat for targeted mutations | \`{{cli}} seat list\`; \`{{cli}} seat decommission --seat-id <id> --dry-run\` |
|
|
48209
|
-
| \`{{cli}} forge project-create|project-list|request-create|request-list|request-show|request-pause|request-cancel|request-resume\` | \`software_factory.project.create\`, \`software_factory.project.list\`, \`software_factory.request.create\`, \`software_factory.request.list\`, \`software_factory.request.show\`, \`software_factory.request.pause\`, \`software_factory.request.cancel\`, \`software_factory.request.resume\` | Create/list Forge projects, open/read governed Forge build requests, and control request lifecycle. Request create/list/show return \`scheduler_state\`: \`queued\` when a runner work order exists, \`parked\` when the Forge team is staffed but no paired online runner can claim it, and \`not_configured\` when the runner-lane Forge Seat is missing. Parked and not-configured states link to \`/settings/runners/setup\`; runner pairing or the repair sweep re-enqueues the same pending intake idempotently. Project creation plus pause/cancel/resume are tenant-admin, entitlement-gated, and human-gated; reads and request creation require the Forge add-on. | Tenant / Tenant-admin for create and lifecycle controls | \`{{cli}} forge project-create --name "Leiluna app" --base-branch main\`; \`{{cli}} forge request-create --project <slug-or-name> --title "Add invoice export"\` (accepts \`--software-project-id <id>\` instead of \`--project\` too); \`{{cli}} forge request-pause --build-request-id <id> --reason "Operator hold"\` |
|
|
48394
|
+
| \`{{cli}} forge project-create|project-list|request-create|request-list|request-show|request-pause|request-cancel|request-resume\` | \`software_factory.project.create\`, \`software_factory.project.list\`, \`software_factory.request.create\`, \`software_factory.request.list\`, \`software_factory.request.show\`, \`software_factory.request.pause\`, \`software_factory.request.cancel\`, \`software_factory.request.resume\` | Create/list Forge projects, open/read governed Forge build requests, and control request lifecycle. Request create/list/show return \`scheduler_state\`: \`queued\` when a runner work order exists, \`parked\` when the Forge team is staffed but no paired online runner can claim it, and \`not_configured\` when the runner-lane Forge Seat is missing. Request detail also surfaces the signed, expiring dispatch preview with included order, held items, dependencies, estimated turns, runner requirements, and authority budget envelope. Parked and not-configured states link to \`/settings/runners/setup\`; runner pairing or the repair sweep re-enqueues the same pending intake idempotently. Project creation plus pause/cancel/resume are tenant-admin, entitlement-gated, and human-gated; reads and request creation require the Forge add-on. | Tenant / Tenant-admin for create and lifecycle controls | \`{{cli}} forge project-create --name "Leiluna app" --base-branch main\`; \`{{cli}} forge request-create --project <slug-or-name> --title "Add invoice export"\` (accepts \`--software-project-id <id>\` instead of \`--project\` too); \`{{cli}} forge request-pause --build-request-id <id> --reason "Operator hold"\` |
|
|
48210
48395
|
|
|
48211
48396
|
Skills wrapper help:
|
|
48212
48397
|
|
|
@@ -48285,6 +48470,7 @@ Several rows here are seat-operating commands (\`task.create\`, the \`signal.*\`
|
|
|
48285
48470
|
| \`rost_upload_org_context\` | \`onboarding.upload_context\` | Back-compat alias of \`onboarding.attach_reference\`. | Tenant | Prefer \`rost_attach_reference_document\`; same widened schema. |
|
|
48286
48471
|
| \`rost_create_onboarding_invite\` | \`onboarding.create_invite\` | Invite a team member during onboarding. | Tenant | Call with a business email and role. |
|
|
48287
48472
|
| \`rost_save_tenant_anthropic_key\` | \`tenant.anthropic_key.save\` | Store a tenant model key through the vault. | Tenant | Use only with a real human-provided secret. |
|
|
48473
|
+
| \`rost_disable_tenant_anthropic_key\` | \`tenant.anthropic_key.disable\` | Revoke the active tenant Anthropic BYOK credential after managed fallback is available. | Tenant-admin | Human-gated; call with \`{}\`. The old key value is never returned. |
|
|
48288
48474
|
| \`rost_create_seat\` | \`seat.create\` | Create a Responsibility Graph seat. | Tenant | Call with \`{"name":"Finance","seat_type":"human"}\`. |
|
|
48289
48475
|
| \`rost_rename_seat\` | \`seat.rename\` | Rename a seat. | Seat or tenant-admin | Call with \`seat_id\` and \`name\`. |
|
|
48290
48476
|
| \`rost_reparent_seat\` | \`seat.reparent\` | Move a seat under a new parent. | Seat or tenant-admin | Call with \`seat_id\` and \`parent_seat_id\`. |
|
|
@@ -48324,7 +48510,7 @@ Several rows here are seat-operating commands (\`task.create\`, the \`signal.*\`
|
|
|
48324
48510
|
| \`rost_get_dogfood_fleet_health_digest\` | \`agent.fleet_digest\` | Capture the daily dogfood fleet-health digest: live/idle state, 24h/7d turns, spend, recent failed runs, unresolved errors, failed notifications, and next actions. | Tenant | Call with \`{}\`; optional \`window_hours\` bounds recent failed-run evidence, while \`error_limit\` caps linked evidence per seat. |
|
|
48325
48511
|
| \`rost_system_health\` | \`system.health\` | Read the scoped system-health snapshot across agent runs, unresolved errors, Signals, Cascade setup, work loop, integrations, runners, notifications, and Sync Brief readiness. | Tenant, member, or seat token | Call with \`{}\`; optional \`seat_id\` narrows inside the caller's server-derived scope. |
|
|
48326
48512
|
| \`rost_run_agent_now\` | \`agent.run_now\` | Queue an immediate run for a live staffed agent without changing its saved schedule; cloud lane dispatches to the executor and runner lane queues for the paired runner. | Tenant | Call with \`{"seat_id":"<seat-id>"}\`. |
|
|
48327
|
-
| \`rost_list_agent_runs\` | \`agent.list_runs\` | Read a seat's agent run history (status, lane, model, cost, per-run Skill activation, tool-call, and guard-held counts) plus the seat's run/tool-call rollup including held-action count. | Seat or tenant-admin | Call with \`{"seat_id":"<seat-id>"}\`; pass \`limit\` for a deeper window. |
|
|
48513
|
+
| \`rost_list_agent_runs\` | \`agent.list_runs\` | Read a seat's agent run history (status, lane, model, cost, per-run Skill activation, tool-call, guard-denied, and guard-held counts) plus the seat's run/tool-call rollup including held-action count. | Seat or tenant-admin | Call with \`{"seat_id":"<seat-id>"}\`; pass \`limit\` for a deeper window. |
|
|
48328
48514
|
| \`rost_get_agent_run_diagnostics\` | \`agent.get_run\` | Read one run's diagnostic record: transcript reference, token/cost usage, outcome, linked product-visible run errors, and loaded Skill activation file metadata. File hashes/sizes identify the immutable source package, while model prompt text may be bounded or truncated. | Seat or tenant-admin | Call with \`{"seat_id":"<seat-id>","run_id":"<run-id>"}\`. |
|
|
48329
48515
|
| \`rost_list_agent_tool_calls\` | \`agent.list_tool_calls\` | Read a seat's tool-call ledger (tool name, guard result, manifest clause, outcome) with the held-action count as the hero metric. Never returns argument summaries or secret material. | Seat or tenant-admin | Call with \`{"seat_id":"<seat-id>"}\`; pass \`held_only: true\` for only guard-held calls. |
|
|
48330
48516
|
| \`rost_list_agent_deliverables\` | \`deliverable.list\` | List durable agent deliverables for a seat, including explicit outputs and successful-run summaries. | Seat or tenant-admin | Call with \`{"seat_id":"<seat-id>"}\`. |
|
|
@@ -48348,7 +48534,7 @@ Several rows here are seat-operating commands (\`task.create\`, the \`signal.*\`
|
|
|
48348
48534
|
| \`rost_list_mcp_tokens\` | \`mcp_token.list\` | List MCP token metadata (never token material). | Tenant | Call with \`{}\` or \`{"include_revoked":true}\`. |
|
|
48349
48535
|
| \`rost_list_runners\` | \`runner.list\` | List local runners with heartbeat health, execution readiness, queue counts, and recent result evidence. | Tenant | Call with \`{}\`. |
|
|
48350
48536
|
| \`rost_runner_status\` | \`runner.status\` | Read a single runner's capability, heartbeat health, and execute-readiness state. | Tenant | Call with \`runner_id\`. |
|
|
48351
|
-
| \`rost_diagnose_runner\` | \`runner.diagnose\` | Return runner health, capabilities, and repair guidance without secrets. | Tenant | Call with \`runner_id\`;
|
|
48537
|
+
| \`rost_diagnose_runner\` | \`runner.diagnose\` | Return runner health, claimability checks, capabilities, and repair guidance without secrets. | Tenant | Call with \`runner_id\`; claimability exposes safe predicates, required vs actual values, pass/fail state, and remediation for claimable work. |
|
|
48352
48538
|
| \`rost_runner_repair_guidance\` | \`runner.repair\` | Return focused repair steps for a runner: restart, re-pair, revoke stale, or install missing CLI runtime. | Tenant | Call with \`runner_id\` and optional \`issue\` (restart, re_pair, revoke_stale, missing_cli_runtime). |
|
|
48353
48539
|
| \`rost_start_runner_pairing\` | \`runner.pairing.start\` | Open a runner pairing session and return the human pairing code. | Tenant-admin | Call with \`name\` and \`platform\`; owner/admin only. |
|
|
48354
48540
|
| \`rost_revoke_runner\` | \`runner.revoke\` | Revoke a runner so it can no longer authenticate. | Tenant | Call with \`runner_id\`; expect human confirmation. |
|
|
@@ -48437,6 +48623,7 @@ Several rows here are seat-operating commands (\`task.create\`, the \`signal.*\`
|
|
|
48437
48623
|
| \`rost_show_agent_setup_as_markdown\` | \`agent.show_markdown\` | Render a seat's agent setup, model, steward, tools, and Charter as a clean markdown card for review. | Tenant | Call with \`{"seat_id":"<seat-id>"}\`. |
|
|
48438
48624
|
| \`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"}\`. |
|
|
48439
48625
|
| \`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. |
|
|
48626
|
+
| \`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. |
|
|
48440
48627
|
| \`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>"}\`. |
|
|
48441
48628
|
| \`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. |
|
|
48442
48629
|
| \`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. |
|
|
@@ -48471,7 +48658,7 @@ Several rows here are seat-operating commands (\`task.create\`, the \`signal.*\`
|
|
|
48471
48658
|
| \`rost_resume_a_forge_build_request\` | \`software_factory.request.resume\` | Resume a paused or human-blocked Forge build request from the last completed task checkpoint and requeue the current phase. Human-gated. | Tenant-admin | Call with \`{"build_request_id":"<request-id>","reason":"Budget raised"}\`; non-interactive callers receive a confirmation handoff. |
|
|
48472
48659
|
| \`rost_list_forge_projects\` | \`software_factory.project.list\` | List active Forge software projects so a tenant can choose a project for build requests, GitHub repository bindings, and config. | Tenant | Call with \`{}\`; use the returned \`id\` as \`software_project_id\`. |
|
|
48473
48660
|
| \`rost_list_forge_build_requests\` | \`software_factory.request.list\` | The Forge control-room board: build requests with status, current phase, risk, and current \`scheduler_state\` remediation. Read-only; requires the Forge add-on. | Tenant | Call with \`{}\` or \`{"limit":20}\`. |
|
|
48474
|
-
| \`rost_show_a_forge_build_request\` | \`software_factory.request.show\` | The Forge request detail: the request, current phase, phase-run history, gates, and current \`scheduler_state\` remediation. Read-only; requires the Forge add-on. | Tenant | Call with \`{"build_request_id":"<request-id>"}\`. |
|
|
48661
|
+
| \`rost_show_a_forge_build_request\` | \`software_factory.request.show\` | The Forge request detail: the request, current phase, signed dispatch preview, phase-run history, gates, and current \`scheduler_state\` remediation. Read-only; requires the Forge add-on. | Tenant | Call with \`{"build_request_id":"<request-id>"}\`. |
|
|
48475
48662
|
| \`rost_advance_a_forge_build_request_phase\` | \`software_factory.phase.advance\` | Advance a build request to its next phase; the server enforces the closed phase state machine and rejects an illegal transition. | Tenant | Call with \`{"build_request_id":"<request-id>","to_phase":"discovery_scoping"}\`. |
|
|
48476
48663
|
| \`rost_decide_a_forge_gate\` | \`software_factory.gate.decide\` | A human approves or rejects a Forge gate; an agent caller routes to \`/approvals\` and can never self-approve. Sensitive gates record a linked human decision. | Tenant | Call with \`{"gate_id":"<gate-id>","decision":"approve"}\`; non-interactive callers receive a confirmation handoff. |
|
|
48477
48664
|
| \`rost_answer_forge_plan_clarifications\` | \`software_factory.request.answer_clarification\` | Write structured human answers to a draft plan's clarifying questions and optionally mark it ready for plan review; answers append to the versioned planning artifact and never widen authority or automation mode. | Tenant | Call with \`{"build_request_id":"<request-id>","answers":[{"question":"Which database?","answer":"Postgres"}],"mark_ready_for_plan_review":true}\`. |
|
|
@@ -50063,12 +50250,13 @@ Name the failing surface, collect evidence, recommend the smallest correction, a
|
|
|
50063
50250
|
order: 78,
|
|
50064
50251
|
title: "AI model data handling guide",
|
|
50065
50252
|
summary: "How {{brand}} cloud agents, local MCP sessions, runners, BYOK, and connected tools handle model-bound data.",
|
|
50066
|
-
version: "2026-07-01.
|
|
50253
|
+
version: "2026-07-01.4",
|
|
50067
50254
|
public: true,
|
|
50068
50255
|
audiences: ["human", "cli", "mcp", "in_app_agent"],
|
|
50069
50256
|
stages: ["company_setup", "staffing", "operating_rhythm"],
|
|
50070
50257
|
relatedCommandIds: [
|
|
50071
50258
|
"tenant.anthropic_key.save",
|
|
50259
|
+
"tenant.anthropic_key.disable",
|
|
50072
50260
|
"credential.ingress",
|
|
50073
50261
|
"agent.configure_tools",
|
|
50074
50262
|
"mcp_token.create",
|
|
@@ -50154,7 +50342,7 @@ Tenant BYOK changes which provider account is used for eligible \`cloud\` model
|
|
|
50154
50342
|
|
|
50155
50343
|
{{brand}} also includes a capped, app-provided Claude allowance for agent-assisted setup so a new company can complete onboarding before saving its own key. That allowance is shown in the onboarding provider card and in Settings as an approximate number of included setup tokens \u2014 never a dollar amount \u2014 and is enforced server-side on every platform-key call: an agent turn or an org-intake step reserves the allowance before the provider request and settles actual usage after. When the included tokens are used, agent-assisted steps stop before calling the provider and prompt you to add your own Anthropic API key, while non-AI setup steps stay available. Saving a tenant Anthropic key (BYOK) switches those calls to your provider account and does not draw down the included allowance.
|
|
50156
50344
|
|
|
50157
|
-
Store a tenant Anthropic key only through \`tenant.anthropic_key.save\` / \`rost_save_tenant_anthropic_key\` or the generic credential ingress path. The key is handled as a vault-backed credential: {{brand}} stores a vault reference and safe metadata, not the raw key in prompts, config, logs, or command output. A human approves the credential flow.
|
|
50345
|
+
Store a tenant Anthropic key only through \`tenant.anthropic_key.save\` / \`rost_save_tenant_anthropic_key\` or the generic credential ingress path. Disable it through \`tenant.anthropic_key.disable\` or Settings, which revokes the active credential only after managed Anthropic fallback is configured and never reads or returns the old secret. The key is handled as a vault-backed credential: {{brand}} stores a vault reference and safe metadata, not the raw key in prompts, config, logs, or command output. A human approves the credential flow and the disable flow.
|
|
50158
50346
|
|
|
50159
50347
|
After BYOK is saved, provider-side retention, training, regional, HIPAA, or zero-data-retention posture depends on that Anthropic organization, workspace, model, feature, and contract. Do not tell a customer "BYOK means zero retention" or "BYOK means no training" unless their provider arrangement actually says that.
|
|
50160
50348
|
|
|
@@ -50249,6 +50437,7 @@ When asked about AI data handling:
|
|
|
50249
50437
|
"charter.sign_manifest",
|
|
50250
50438
|
"credential.ingress",
|
|
50251
50439
|
"tenant.anthropic_key.save",
|
|
50440
|
+
"tenant.anthropic_key.disable",
|
|
50252
50441
|
"runner.pairing.start",
|
|
50253
50442
|
"agent.configure_tools",
|
|
50254
50443
|
"agent.list_tool_calls",
|
|
@@ -51760,7 +51949,7 @@ var COMMAND_MANIFEST = [
|
|
|
51760
51949
|
{ "id": "agent.go_live", "namespace": "agent", "action": "go_live", "title": "Go live", "description": "Promote a dry-run agent seat to live after the human approval gate.", "requiredScope": "seat", "confirmation": "human_required", "exposeOverMcp": true, "fields": [{ "name": "seat_id", "flag": "seat-id", "type": "string", "required": true }, { "name": "charter_version_id", "flag": "charter-version-id", "type": "string", "required": true }], "hasComplexInput": false, "help": "Move an agent live only after dry-run evidence, signed permissions, and a human Steward chain are clear.", "example": { "seat_id": "0190aaaa-aaaa-7aaa-8aaa-aaaaaaaaaaaa", "charter_version_id": "0190cccc-cccc-7ccc-8ccc-cccccccccccc" } },
|
|
51761
51950
|
{ "id": "agent.import_definition", "namespace": "agent", "action": "import_definition", "title": "Import agent definition", "description": "Import a versioned ROST agent definition into a canonical draft Seat and setup state without credentials, placement identifiers, or go-live side effects.", "requiredScope": "tenant", "confirmation": "human_required", "exposeOverMcp": true, "fields": [{ "name": "definition_json", "flag": "definition-json", "type": "string", "required": true }, { "name": "idempotency_key", "flag": "idempotency-key", "type": "string", "required": false }], "hasComplexInput": false, "help": "Import a strict, versioned ROST agent definition into a canonical draft Seat/setup. The file cannot carry credentials or tenant-local placement ids; tools remain proposal-only until reviewed through setup." },
|
|
51762
51951
|
{ "id": "agent.list_fleet", "namespace": "agent", "action": "list_fleet", "title": "List agent fleet", "description": "Return every agent-occupied seat with lane, live state, last real turn, recent turn counts, top measurable status, open escalations, and 7-day real-run spend.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [], "hasComplexInput": false, "help": "Read every agent-occupied seat at once: lane, live state, last real turn, 24h/7d turns, measurable status, escalations, and spend." },
|
|
51763
|
-
{ "id": "agent.list_runs", "namespace": "agent", "action": "list_runs", "title": "List agent runs", "description": "Return a seat's agent run history (status, lane, model, cost, per-run tool-call and guard-
|
|
51952
|
+
{ "id": "agent.list_runs", "namespace": "agent", "action": "list_runs", "title": "List agent runs", "description": "Return a seat's agent run history (status, lane, model, cost, per-run tool-call, guard-denied, and guard-held counts) plus the seat's run/tool-call rollup with held-action count.", "requiredScope": "seat", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "seat_id", "flag": "seat-id", "type": "string", "required": true }, { "name": "limit", "flag": "limit", "type": "integer", "required": false }], "hasComplexInput": false, "help": "Audit a seat's agent run history with per-run tool-call, guard-denied, and guard-held counts (the Trust Card)." },
|
|
51764
51953
|
{ "id": "agent.list_tool_calls", "namespace": "agent", "action": "list_tool_calls", "title": "List agent tool calls", "description": "Return a seat's tool-call ledger (tool name, guard result, manifest clause, outcome) with the held-action count as the hero metric. Pass held_only to return only guard-held calls. Never returns argument summaries or secret material.", "requiredScope": "seat", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "seat_id", "flag": "seat-id", "type": "string", "required": true }, { "name": "limit", "flag": "limit", "type": "integer", "required": false }, { "name": "held_only", "flag": "held-only", "type": "boolean", "required": false }], "hasComplexInput": false, "help": "Audit a seat's tool-call ledger with each call's guard result; held actions are the hero metric." },
|
|
51765
51954
|
{ "id": "agent.pause", "namespace": "agent", "action": "pause", "title": "Pause agent", "description": "Pause a live agent so it stops scheduled and on-demand runs. Reversible with agent.resume.", "requiredScope": "tenant", "confirmation": "human_required", "exposeOverMcp": true, "fields": [{ "name": "seat_id", "flag": "seat-id", "type": "string", "required": true }, { "name": "reason", "flag": "reason", "type": "string", "required": false }], "hasComplexInput": false, "help": "Pause a live agent so it stops scheduled and on-demand runs; queued work orders are expired and a paused agent refuses to run until resumed. Reversible, unlike agent.decommission." },
|
|
51766
51955
|
{ "id": "agent.resume", "namespace": "agent", "action": "resume", "title": "Resume agent", "description": "Resume a paused agent back to live. Blocks if the steward chain no longer resolves to a human.", "requiredScope": "tenant", "confirmation": "human_required", "exposeOverMcp": true, "fields": [{ "name": "seat_id", "flag": "seat-id", "type": "string", "required": true }, { "name": "reason", "flag": "reason", "type": "string", "required": false }], "hasComplexInput": false, "help": "Resume a paused agent back to live; the no-orphan guard blocks a resume whose steward chain no longer resolves to a human." },
|
|
@@ -51869,7 +52058,7 @@ var COMMAND_MANIFEST = [
|
|
|
51869
52058
|
{ "id": "onboarding.finish", "namespace": "onboarding", "action": "finish", "title": "Finish onboarding", "description": "Mark onboarding complete after the existing onboarding requirements pass.", "requiredScope": "tenant", "confirmation": "human_required", "exposeOverMcp": true, "fields": [], "hasComplexInput": false, "help": "Finish onboarding when the graph, at least one Charter, and the first operating rhythm are clear." },
|
|
51870
52059
|
{ "id": "onboarding.status", "namespace": "onboarding", "action": "status", "title": "Onboard status", "description": "Return current onboarding progress, graph summary, and the next recommended actions.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [], "hasComplexInput": false, "help": "Start by checking onboarding status, then use the implementation method guide to choose the next setup step." },
|
|
51871
52060
|
{ "id": "onboarding.upload_context", "namespace": "onboarding", "action": "upload_context", "title": "Upload org context", "description": "Compatibility alias for onboarding.attach_reference: attach a company reference document (text/markdown) that Compass and Charters can cite. Reference-only \u2014 it does not build a Compass.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "text", "flag": "text", "type": "string", "required": true }, { "name": "filename", "flag": "filename", "type": "string", "required": false }, { "name": "mime_type", "flag": "mime-type", "type": "enum", "required": false, "enumValues": ["text/plain", "text/markdown", "text/csv"] }, { "name": "title", "flag": "title", "type": "string", "required": false }, { "name": "kind", "flag": "kind", "type": "enum", "required": false, "enumValues": ["plan", "financial", "org_chart", "process"] }, { "name": "source", "flag": "source", "type": "string", "required": false }], "hasComplexInput": false, "help": "Compatibility alias for onboarding.attach_reference: attach a company reference document so Compass and Charters can cite it. It does not build a Compass.", "example": { "text": "# Company handbook\n\nWe build precision components for the aerospace supply chain.", "filename": "handbook.md", "mime_type": "text/markdown", "title": "Company handbook", "kind": "plan", "source": "handbook/overview.md" } },
|
|
51872
|
-
{ "id": "runner.diagnose", "namespace": "runner", "action": "diagnose", "title": "Diagnose runner", "description": "Returns a runner's health, capabilities, and repair guidance without exposing secrets.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "runner_id", "flag": "runner-id", "type": "string", "required": true }], "hasComplexInput": false, "help": "Inspect a runner's health,
|
|
52061
|
+
{ "id": "runner.diagnose", "namespace": "runner", "action": "diagnose", "title": "Diagnose runner", "description": "Returns a runner's health, capabilities, and repair guidance without exposing secrets.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "runner_id", "flag": "runner-id", "type": "string", "required": true }], "hasComplexInput": false, "help": "Inspect a runner's health, claimability checks, and repair guidance without exposing secrets." },
|
|
51873
52062
|
{ "id": "runner.list", "namespace": "runner", "action": "list", "title": "List runners", "description": "List local runners registered to the tenant with online/offline/revoked state.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "include_revoked", "flag": "include-revoked", "type": "boolean", "required": false }], "hasComplexInput": false, "help": "List local runners and their online/offline/revoked state before queueing runner work." },
|
|
51874
52063
|
{ "id": "runner.pairing.start", "namespace": "runner", "action": "pairing.start", "title": "Start runner pairing", "description": "Open a runner pairing session and return the human pairing code and URL. The runner bearer secret is never returned here.", "requiredScope": "tenant_admin", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "name", "flag": "name", "type": "string", "required": true }, { "name": "platform", "flag": "platform", "type": "string", "required": true }], "hasComplexInput": false, "help": "Open a runner pairing session and share the user code; the runner bearer secret is never surfaced here." },
|
|
51875
52064
|
{ "id": "runner.repair", "namespace": "runner", "action": "repair", "title": "Runner repair guidance", "description": "Returns actionable repair steps for a runner: restart, re-pair, revoke stale, or install missing CLI runtime. No secrets exposed.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "runner_id", "flag": "runner-id", "type": "string", "required": true }, { "name": "issue", "flag": "issue", "type": "enum", "required": false, "enumValues": ["restart", "re_pair", "revoke_stale", "missing_cli_runtime"] }], "hasComplexInput": false, "help": "Get focused repair steps for a runner: restart, re-pair, revoke a stale runner, or install missing CLI runtime." },
|
|
@@ -51954,7 +52143,7 @@ var COMMAND_MANIFEST = [
|
|
|
51954
52143
|
{ "id": "software_factory.request.list", "namespace": "software_factory", "action": "request.list", "title": "List Forge build requests", "description": "The Forge control-room board: the tenant's build requests with status, current phase, and risk/automation mode. Read-only, entitlement-gated.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "limit", "flag": "limit", "type": "integer", "required": false }], "hasComplexInput": false, "help": "List Forge build requests (the control-room board) with status, current phase, and risk. Read-only; requires the Forge add-on." },
|
|
51955
52144
|
{ "id": "software_factory.request.pause", "namespace": "software_factory", "action": "request.pause", "title": "Pause a Forge build request", "description": "Pause an in-flight Forge build request. New runner claims stop immediately; any running task halts at the next task checkpoint before resume. Human-gated and entitlement-gated.", "requiredScope": "tenant_admin", "confirmation": "human_required", "exposeOverMcp": true, "fields": [{ "name": "build_request_id", "flag": "build-request-id", "type": "string", "required": true }, { "name": "reason", "flag": "reason", "type": "string", "required": false }], "hasComplexInput": false, "help": "Pause an in-flight Forge build request so no new runner work starts; running work stops at the next task checkpoint. Tenant-admin and human-gated." },
|
|
51956
52145
|
{ "id": "software_factory.request.resume", "namespace": "software_factory", "action": "request.resume", "title": "Resume a Forge build request", "description": "Resume a paused or human-blocked Forge build request from the last completed task checkpoint and requeue the current phase. Human-gated and entitlement-gated.", "requiredScope": "tenant_admin", "confirmation": "human_required", "exposeOverMcp": true, "fields": [{ "name": "build_request_id", "flag": "build-request-id", "type": "string", "required": true }, { "name": "reason", "flag": "reason", "type": "string", "required": false }], "hasComplexInput": true, "help": "Resume a paused or blocked Forge build request from its last completed task checkpoint after human review. Tenant-admin and human-gated." },
|
|
51957
|
-
{ "id": "software_factory.request.show", "namespace": "software_factory", "action": "request.show", "title": "Show a Forge build request", "description": "The Forge request detail: the build request, its current phase, phase-run history, and gates. Read-only, entitlement-gated, tenant-scoped.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "build_request_id", "flag": "build-request-id", "type": "string", "required": true }], "hasComplexInput": false, "help": "Show a Forge build request's detail: current phase, phase-run history, and gates. Read-only; requires the Forge add-on." },
|
|
52146
|
+
{ "id": "software_factory.request.show", "namespace": "software_factory", "action": "request.show", "title": "Show a Forge build request", "description": "The Forge request detail: the build request, its current phase, phase-run history, and gates. Read-only, entitlement-gated, tenant-scoped.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "build_request_id", "flag": "build-request-id", "type": "string", "required": true }], "hasComplexInput": false, "help": "Show a Forge build request's detail: current phase, dispatch preview, phase-run history, and gates. Read-only; requires the Forge add-on." },
|
|
51958
52147
|
{ "id": "software_factory.secret_request.list", "namespace": "software_factory", "action": "secret_request.list", "title": "List Forge secret requests", "description": "List durable Forge missing-secret/config requests. Metadata only; no secret values or vault refs are returned.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "software_project_id", "flag": "software-project-id", "type": "string", "required": false }, { "name": "status", "flag": "status", "type": "enum", "required": false, "enumValues": ["pending", "fulfilled", "rejected", "canceled"] }], "hasComplexInput": false, "help": "List durable Forge missing-secret requests and their approval-task status. Metadata only; no secret values or vault refs." },
|
|
51959
52148
|
{ "id": "software_factory.secret.grant", "namespace": "software_factory", "action": "secret.grant", "title": "Grant a Forge secret", "description": "A human grants a seat scoped access to a project secret by VAULT REF (project \xD7 env \xD7 seat \xD7 action \xD7 key). Postgres stores only the pointer \u2014 never secret material (invariant #5). Owner-only, human-gated. Entitlement-gated.", "requiredScope": "tenant_admin", "confirmation": "human_required", "exposeOverMcp": true, "fields": [{ "name": "software_project_id", "flag": "software-project-id", "type": "string", "required": true }, { "name": "environment", "flag": "environment", "type": "enum", "required": true, "enumValues": ["development", "preview", "production"] }, { "name": "seat_id", "flag": "seat-id", "type": "string", "required": true }, { "name": "action", "flag": "action", "type": "string", "required": true }, { "name": "key_name", "flag": "key-name", "type": "string", "required": true }, { "name": "vault_ref", "flag": "vault-ref", "type": "string", "required": true }], "hasComplexInput": false, "help": "A human grants a seat scoped access to a project secret by vault ref (Postgres stores only the pointer, never secret material). Owner-only and human-gated." },
|
|
51960
52149
|
{ "id": "software_factory.secret.request", "namespace": "software_factory", "action": "secret.request", "title": "Request a Forge secret grant", "description": "An agent or user REQUESTS access to a project secret by key (draft-and-confirm \u2014 no value, no grant). Records the ask as a durable event for a human to grant. Never accepts a secret value (invariant #5). Entitlement-gated.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "software_project_id", "flag": "software-project-id", "type": "string", "required": true }, { "name": "environment", "flag": "environment", "type": "enum", "required": true, "enumValues": ["development", "preview", "production"] }, { "name": "seat_id", "flag": "seat-id", "type": "string", "required": true }, { "name": "action", "flag": "action", "type": "string", "required": true }, { "name": "key_name", "flag": "key-name", "type": "string", "required": true }, { "name": "reason", "flag": "reason", "type": "string", "required": false }], "hasComplexInput": false, "help": "Request access to a project secret by key; persists the request and creates a human approval task. Never accepts a secret value." },
|
|
@@ -51984,6 +52173,7 @@ var COMMAND_MANIFEST = [
|
|
|
51984
52173
|
{ "id": "task.list", "namespace": "task", "action": "list", "title": "List seat tasks", "description": "List open handoff tasks owned by the acting seat.", "requiredScope": "seat", "confirmation": "none", "exposeOverMcp": true, "fields": [], "hasComplexInput": false, "help": "List the seat's open handoff tasks before accepting, declining, or completing work." },
|
|
51985
52174
|
{ "id": "task.update", "namespace": "task", "action": "update", "title": "Update task", "description": "Reschedule (due date), reassign (owner seat), or edit a non-terminal task's title, description, or acceptance criteria. Terminal tasks cannot be edited \u2014 a correction is a new task.", "requiredScope": "tenant_admin", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "task_id", "flag": "task-id", "type": "string", "required": true }, { "name": "owner_seat_id", "flag": "owner-seat-id", "type": "string", "required": false }, { "name": "due_on", "flag": "due-on", "type": "string", "required": false }, { "name": "title", "flag": "title", "type": "string", "required": false }, { "name": "description", "flag": "description", "type": "string", "required": false }, { "name": "acceptance_criteria", "flag": "acceptance-criteria", "type": "array", "required": false, "itemType": "string" }], "hasComplexInput": false, "help": "Reschedule, reassign, or edit a non-terminal task; terminal tasks are immutable (a correction is a new task)." },
|
|
51986
52175
|
{ "id": "team.health_score", "namespace": "team", "action": "health_score", "title": "Team health score", "description": "Return the single rolled-up 0\u2013100 team-health score (latest month) with its band (green/yellow/red) and label. Honest insufficient-data state when no metrics exist yet.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [], "hasComplexInput": false, "help": "Read the single rolled-up 0-100 team-health score (latest month) with its band and label." },
|
|
52176
|
+
{ "id": "tenant.anthropic_key.disable", "namespace": "tenant", "action": "anthropic_key.disable", "title": "Disable tenant Anthropic key", "description": "Revoke the active tenant Anthropic BYOK credential while preserving audit history, after validating managed inference fallback is available.", "requiredScope": "tenant_admin", "confirmation": "human_required", "exposeOverMcp": true, "fields": [], "hasComplexInput": false, "help": "Disable tenant BYOK only after managed Anthropic fallback is available; this revokes metadata without reading or returning the old key." },
|
|
51987
52177
|
{ "id": "tenant.anthropic_key.save", "namespace": "tenant", "action": "anthropic_key.save", "title": "Save tenant Anthropic key", "description": "Store a tenant-scoped Anthropic key in the configured vault.", "requiredScope": "tenant", "confirmation": "credential_flow", "exposeOverMcp": true, "fields": [], "hasComplexInput": false, "secretBlocked": true, "help": "Save model-provider credentials only through vault-backed flows and keep raw keys out of prompts, logs, and command metadata." },
|
|
51988
52178
|
{ "id": "tenant.create", "namespace": "tenant", "action": "create", "title": "Create additional company", "description": "Create a new clean company for an already-provisioned account after checking tenant.create.additional entitlement.", "requiredScope": "tenant_admin", "confirmation": "none", "exposeOverMcp": false, "fields": [{ "name": "company_name", "flag": "company-name", "type": "string", "required": true }], "hasComplexInput": false, "help": "Create an additional clean company from an existing company session. Requires tenant.create.additional entitlement; first-company bootstrap stays signup.provision_tenant." },
|
|
51989
52179
|
{ "id": "tenant.model_gateway_policy.update", "namespace": "tenant", "action": "model_gateway_policy.update", "title": "Update model gateway policy", "description": "Unlock or relock managed models that do not offer a zero-retention (ZDR) tier (ADR-0019). Locked (the conservative default) restricts the AI Gateway to zero-retention-eligible managed models. Owner-only and human-gated: unlocking is a deliberate ADR-0018 \xA76 standing authorization that lets managed brains without a zero-retention tier run. This provider retains data up to 30 days for abuse monitoring.", "requiredScope": "tenant_admin", "confirmation": "dangerous", "exposeOverMcp": true, "fields": [{ "name": "allow_non_zdr_models", "flag": "allow-non-zdr-models", "type": "boolean", "required": true }], "hasComplexInput": false, "help": "Unlock or relock managed models that do not offer a zero-retention (ZDR) tier (ADR-0019). Locked (default) restricts the AI Gateway to zero-retention-eligible managed models. Owner-only and human-gated; unlocking establishes an ADR-0018 \xA76 standing authorization and surfaces the per-model retention disclosure." },
|
|
@@ -51991,6 +52181,7 @@ var COMMAND_MANIFEST = [
|
|
|
51991
52181
|
{ "id": "tool_grants.agent.effective", "namespace": "tool_grants", "action": "agent.effective", "title": "List agent effective capability grants", "description": "Read the effective capability grants for one agent, including the lower-of-ceiling-and-selection access level and compile status. Returns metadata only.", "requiredScope": "seat", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "agent_id", "flag": "agent-id", "type": "string", "required": true }], "hasComplexInput": false, "help": "Read one agent's effective capability grants after tenant ceilings, agent selections, and compile availability are applied." },
|
|
51992
52182
|
{ "id": "tool_grants.agent.update", "namespace": "tool_grants", "action": "agent.update", "title": "Update agent capability grants", "description": "Compile a Charter supersession proposal for per-agent capability grant reductions or expansions. Human steward/admin only.", "requiredScope": "tenant", "confirmation": "human_required", "exposeOverMcp": true, "fields": [{ "name": "agent_id", "flag": "agent-id", "type": "string", "required": true }, { "name": "reason", "flag": "reason", "type": "string", "required": false }], "hasComplexInput": true, "help": "Compile a Charter supersession proposal for an agent capability grant reduction or expansion. Human steward/admin only." },
|
|
51993
52183
|
{ "id": "tool_grants.tenant.list", "namespace": "tool_grants", "action": "tenant.list", "title": "List tenant capability grants", "description": "Read the tenant capability ceiling/default matrix with connection, availability, source, ceiling, and compile status. Returns metadata only.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [], "hasComplexInput": false, "help": "List tenant capability ceilings/defaults with connection, availability, source, and compile status. Read-only." },
|
|
52184
|
+
{ "id": "tool_grants.tenant.update", "namespace": "tool_grants", "action": "tenant.update", "title": "Update tenant capability policy", "description": "Atomically update tenant capability mode, company maximums, and new-agent defaults with stale-write protection and affected-agent impact.", "requiredScope": "tenant_admin", "confirmation": "human_required", "exposeOverMcp": true, "fields": [{ "name": "expected_policy_version", "flag": "expected-policy-version", "type": "integer", "required": false }, { "name": "expected_policy_digest", "flag": "expected-policy-digest", "type": "string", "required": false }, { "name": "mode", "flag": "mode", "type": "enum", "required": true, "enumValues": ["managed", "open"] }], "hasComplexInput": true, "help": "Update tenant capability ceilings/defaults with stale-write protection; owner/admin only, human-gated, and event-audited." },
|
|
51994
52185
|
{ "id": "tool.catalog", "namespace": "tool", "action": "catalog", "title": "List tool catalog", "description": "List the discoverable tool catalog the agent builder reads \u2014 tool id, title, provider, prescriptive description, default scope tiers, credential requirement, access policy, and execution-boundary guidance.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "provider", "flag": "provider", "type": "string", "required": false }], "hasComplexInput": false, "help": "List the tool catalog the builder reads \u2014 id, prescriptive description, scope tiers, credential requirement, access policy, and execution-boundary guidance." },
|
|
51995
52186
|
{ "id": "usage.report", "namespace": "usage", "action": "report", "title": "AI-workforce ROI report", "description": "Return the tenant's immutable per-period usage snapshots \u2014 agents ran, outputs, token/run cost, human-accepted value, exceptions, and approvals \u2014 for the AI-workforce ROI report.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "limit", "flag": "limit", "type": "integer", "required": false }], "hasComplexInput": false, "help": "Read the AI-workforce ROI report \u2014 per-period agents/outputs/token+run cost, human-accepted value, exceptions, and approvals \u2014 from immutable usage snapshots." },
|
|
51996
52187
|
{ "id": "usage.snapshot", "namespace": "usage", "action": "snapshot", "title": "Capture usage period snapshot", "description": "Freeze the current (or a given) period's usage and accepted-value totals into an immutable snapshot for the ROI report. Insert-only and idempotent \u2014 re-running a captured period changes nothing.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [], "hasComplexInput": true, "help": "Freeze the current period's usage and accepted-value totals into an immutable snapshot for the ROI report; insert-only and idempotent, so re-running a captured period changes nothing." },
|