@rosthq/cli 0.7.91 → 0.7.92
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,EAiR3D,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -43804,6 +43804,29 @@ var frictionBulkResolveOutputSchema = external_exports.object({
|
|
|
43804
43804
|
failed_count: external_exports.number().int().nonnegative(),
|
|
43805
43805
|
total: external_exports.number().int().nonnegative()
|
|
43806
43806
|
}).strict();
|
|
43807
|
+
var runHeartbeatStateSchema = external_exports.enum(["working", "quiet_healthy", "recovered", "stalled"]);
|
|
43808
|
+
var agentRunHeartbeatsInputSchema = external_exports.object({
|
|
43809
|
+
seat_ids: external_exports.array(uuidSchema14).min(1).max(200).optional()
|
|
43810
|
+
}).strict();
|
|
43811
|
+
var runHeartbeatSeatRollupSchema = external_exports.object({
|
|
43812
|
+
seat_id: uuidSchema14,
|
|
43813
|
+
state: runHeartbeatStateSchema,
|
|
43814
|
+
stalled: external_exports.boolean(),
|
|
43815
|
+
run_count: external_exports.number().int().nonnegative(),
|
|
43816
|
+
stalled_run_count: external_exports.number().int().nonnegative(),
|
|
43817
|
+
current_phase: external_exports.string().nullable(),
|
|
43818
|
+
last_progress_at: isoDateTime4.nullable(),
|
|
43819
|
+
expected_next_at: isoDateTime4.nullable(),
|
|
43820
|
+
stall_after_at: isoDateTime4.nullable(),
|
|
43821
|
+
done_count: external_exports.number().int().nonnegative(),
|
|
43822
|
+
in_flight_count: external_exports.number().int().nonnegative(),
|
|
43823
|
+
queued_count: external_exports.number().int().nonnegative(),
|
|
43824
|
+
lease_remaining_ms: external_exports.number().int().nullable(),
|
|
43825
|
+
reasons: external_exports.array(external_exports.string())
|
|
43826
|
+
}).strict();
|
|
43827
|
+
var agentRunHeartbeatsOutputSchema = external_exports.object({
|
|
43828
|
+
seats: external_exports.array(runHeartbeatSeatRollupSchema)
|
|
43829
|
+
}).strict();
|
|
43807
43830
|
|
|
43808
43831
|
// ../../packages/protocol/src/working-files.ts
|
|
43809
43832
|
var WORKING_FILE_MAX_PATH_CHARS = 512;
|
|
@@ -46173,6 +46196,19 @@ var syncBriefCascadeAtRiskSchema = external_exports.object({
|
|
|
46173
46196
|
classification: external_exports.enum(["at_risk", "projected_miss"]),
|
|
46174
46197
|
behind_days: external_exports.number().nullable()
|
|
46175
46198
|
}).strict();
|
|
46199
|
+
var syncBriefRunHeartbeatStalledSeatSchema = external_exports.object({
|
|
46200
|
+
seat_id: uuidSchema17,
|
|
46201
|
+
current_phase: external_exports.string().nullable(),
|
|
46202
|
+
stalled_run_count: external_exports.number().int().nonnegative()
|
|
46203
|
+
}).strict();
|
|
46204
|
+
var syncBriefRunHeartbeatRollupSchema = external_exports.object({
|
|
46205
|
+
total_runs_tracked: external_exports.number().int().nonnegative(),
|
|
46206
|
+
working_seat_count: external_exports.number().int().nonnegative(),
|
|
46207
|
+
quiet_healthy_seat_count: external_exports.number().int().nonnegative(),
|
|
46208
|
+
stalled_seat_count: external_exports.number().int().nonnegative(),
|
|
46209
|
+
recovered_seat_count: external_exports.number().int().nonnegative(),
|
|
46210
|
+
stalled_seats: external_exports.array(syncBriefRunHeartbeatStalledSeatSchema)
|
|
46211
|
+
}).strict();
|
|
46176
46212
|
var syncBriefAgentActivitySchema = external_exports.object({
|
|
46177
46213
|
agent_id: uuidSchema17,
|
|
46178
46214
|
seat_id: uuidSchema17,
|
|
@@ -46223,7 +46259,13 @@ var syncBriefSchema = external_exports.object({
|
|
|
46223
46259
|
item: syncBriefActionItemTrendSchema,
|
|
46224
46260
|
flagged_gaps: external_exports.array(syncBriefGapSchema)
|
|
46225
46261
|
}).strict().optional(),
|
|
46226
|
-
cascade_at_risk: sectionSchema(syncBriefCascadeAtRiskSchema).optional()
|
|
46262
|
+
cascade_at_risk: sectionSchema(syncBriefCascadeAtRiskSchema).optional(),
|
|
46263
|
+
// DER-1721: optional so prior briefs / fixtures without a run-heartbeat
|
|
46264
|
+
// roll-up still validate; populated by buildSyncBriefDocument going forward.
|
|
46265
|
+
run_heartbeat: external_exports.object({
|
|
46266
|
+
item: syncBriefRunHeartbeatRollupSchema,
|
|
46267
|
+
flagged_gaps: external_exports.array(syncBriefGapSchema)
|
|
46268
|
+
}).strict().optional()
|
|
46227
46269
|
}).strict(),
|
|
46228
46270
|
flagged_gaps: external_exports.array(syncBriefGapSchema),
|
|
46229
46271
|
sources: external_exports.array(external_exports.string().min(1))
|
|
@@ -48259,7 +48301,7 @@ External connectors are being rolled out provider by provider, conservatively (r
|
|
|
48259
48301
|
order: 48,
|
|
48260
48302
|
title: "CLI and MCP installation guide",
|
|
48261
48303
|
summary: "Install the public CLI, register remote token-backed MCP clients, and find the full command and tool catalog.",
|
|
48262
|
-
version: "2026-07-16.
|
|
48304
|
+
version: "2026-07-16.6",
|
|
48263
48305
|
public: true,
|
|
48264
48306
|
audiences: ["human", "cli", "mcp", "in_app_agent"],
|
|
48265
48307
|
stages: ["company_setup", "staffing"],
|
|
@@ -48865,6 +48907,7 @@ Several rows here are seat-operating commands (\`task.create\`, the \`signal.*\`
|
|
|
48865
48907
|
| \`rost_list_agent_fleet\` | \`agent.list_fleet\` | Read every staffed agent seat at once: lane, live state, last real turn, 24h/7d real turns, measurable status, escalations, and 7-day spend. | Tenant | Call with \`{}\`; counts use the same seat-run association as \`agent.list_runs\`, with sandbox dry runs excluded from real turns. |
|
|
48866
48908
|
| \`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. |
|
|
48867
48909
|
| \`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. |
|
|
48910
|
+
| \`rost_get_run_heartbeats\` | \`agent.run_heartbeats\` | Read the per-seat run-heartbeat roll-up (quiet-but-healthy vs stalled) for long-running agent programs. | Tenant | Call with \`{}\`; optional \`seat_ids\` narrows to specific seats. |
|
|
48868
48911
|
| \`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>"}\`. |
|
|
48869
48912
|
| \`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. |
|
|
48870
48913
|
| \`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>"}\`. |
|
|
@@ -52316,6 +52359,7 @@ var COMMAND_MANIFEST = [
|
|
|
52316
52359
|
{ "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." },
|
|
52317
52360
|
{ "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." },
|
|
52318
52361
|
{ "id": "agent.run_dry_run", "namespace": "agent", "action": "run_dry_run", "title": "Run agent dry run", "description": "Run the sandbox dry run for a draft agent. Durable and idempotent per Charter version; a passed result is reused, never re-run.", "requiredScope": "seat", "confirmation": "none", "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": "Run the sandbox dry run for a draft agent after the manifest is signed; the result is durable and idempotent per Charter version, and a passed run is reused.", "example": { "seat_id": "0190aaaa-aaaa-7aaa-8aaa-aaaaaaaaaaaa", "charter_version_id": "0190cccc-cccc-7ccc-8ccc-cccccccccccc" } },
|
|
52362
|
+
{ "id": "agent.run_heartbeats", "namespace": "agent", "action": "run_heartbeats", "title": "Get run heartbeats", "description": "Reads the per-seat run-heartbeat roll-up (quiet-but-healthy vs stalled) for long-running agent programs.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "seat_ids", "flag": "seat-ids", "type": "array", "required": false, "itemType": "string" }], "hasComplexInput": false, "help": "Read the per-seat run-heartbeat roll-up to tell a quiet-but-healthy long-running agent program apart from a stalled one." },
|
|
52319
52363
|
{ "id": "agent.run_now", "namespace": "agent", "action": "run_now", "title": "Run agent now", "description": "Queue and dispatch an immediate work order for a live cloud or runner agent on a seat.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "seat_id", "flag": "seat-id", "type": "string", "required": true }, { "name": "task_id", "flag": "task-id", "type": "string", "required": false }], "hasComplexInput": false, "help": "Queue and dispatch an immediate live agent run without changing the agent's saved schedule." },
|
|
52320
52364
|
{ "id": "agent.show_markdown", "namespace": "agent", "action": "show_markdown", "title": "Show agent setup as markdown", "description": "Compose a seat's agent setup, steward, model, tools, and Charter into a clean, human-skimmable markdown card for review.", "requiredScope": "tenant", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "seat_id", "flag": "seat-id", "type": "string", "required": true }], "hasComplexInput": false, "help": "Render a seat's agent setup, model, steward, tools, and Charter as a clean markdown card to show your human a quick review." },
|
|
52321
52365
|
{ "id": "agent.status", "namespace": "agent", "action": "status", "title": "Get agent status", "description": "Return the agent occupancy, lane, schedule, live/offline state, steward chain, dry-run result, and Runner availability for a seat.", "requiredScope": "seat", "confirmation": "none", "exposeOverMcp": true, "fields": [{ "name": "seat_id", "flag": "seat-id", "type": "string", "required": true }], "hasComplexInput": false, "help": "Check an agent's lane, live state, steward chain, dry-run result, and Runner availability before relying on it." },
|