@pellux/goodvibes-contracts 1.6.0 → 1.6.1

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.
@@ -3,7 +3,7 @@
3
3
  "product": {
4
4
  "id": "goodvibes",
5
5
  "surface": "operator",
6
- "version": "1.6.0"
6
+ "version": "1.6.1"
7
7
  },
8
8
  "auth": {
9
9
  "modes": [
@@ -616,6 +616,11 @@ export interface OperatorMethodInputMap {
616
616
  deliveryId: string;
617
617
  };
618
618
  "deliveries.list": {};
619
+ "fleet.archive": {
620
+ id: string;
621
+ };
622
+ "fleet.archiveFinished": {};
623
+ "fleet.archived.list": {};
619
624
  "fleet.list": {
620
625
  kinds?: readonly string[];
621
626
  states?: readonly string[];
@@ -623,6 +628,9 @@ export interface OperatorMethodInputMap {
623
628
  cursor?: string;
624
629
  };
625
630
  "fleet.snapshot": {};
631
+ "fleet.unarchive": {
632
+ id: string;
633
+ };
626
634
  "health.snapshot": {};
627
635
  "intelligence.snapshot": {};
628
636
  "knowledge.candidate.decide": ({
@@ -5111,6 +5119,61 @@ export interface OperatorMethodOutputMap {
5111
5119
  readonly [key: string]: unknown;
5112
5120
  }))[];
5113
5121
  };
5122
+ "fleet.archive": {
5123
+ archived: boolean;
5124
+ count: number;
5125
+ reason?: string;
5126
+ };
5127
+ "fleet.archiveFinished": {
5128
+ archivedCount: number;
5129
+ };
5130
+ "fleet.archived.list": {
5131
+ capturedAt: number;
5132
+ nodes: readonly (({
5133
+ id: string;
5134
+ kind: "agent" | "background-process" | "code-index" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
5135
+ parentId?: string;
5136
+ label: string;
5137
+ task?: string;
5138
+ state: "awaiting-approval" | "done" | "executing-tool" | "failed" | "idle" | "interrupted" | "killed" | "paused" | "queued" | "retrying" | "stalled" | "streaming" | "thinking";
5139
+ startedAt?: number;
5140
+ completedAt?: number;
5141
+ elapsedMs: number;
5142
+ usage?: {
5143
+ inputTokens: number;
5144
+ outputTokens: number;
5145
+ cacheReadTokens: number;
5146
+ cacheWriteTokens: number;
5147
+ reasoningTokens?: number;
5148
+ llmCallCount: number;
5149
+ turnCount: number;
5150
+ toolCallCount: number;
5151
+ };
5152
+ model?: string;
5153
+ provider?: string;
5154
+ costUsd?: null | number;
5155
+ costState: "estimated" | "priced" | "unpriced";
5156
+ currentActivity?: {
5157
+ kind: "output-line" | "phase" | "tool";
5158
+ text: string;
5159
+ toolName?: string;
5160
+ at: number;
5161
+ };
5162
+ capabilities: {
5163
+ interruptible: boolean;
5164
+ killable: boolean;
5165
+ pausable: boolean;
5166
+ resumable: boolean;
5167
+ steerable: boolean;
5168
+ };
5169
+ sessionRef?: {
5170
+ sessionId?: string;
5171
+ agentId?: string;
5172
+ };
5173
+ } & {
5174
+ readonly [key: string]: unknown;
5175
+ }))[];
5176
+ };
5114
5177
  "fleet.list": {
5115
5178
  items: readonly (({
5116
5179
  id: string;
@@ -5209,6 +5272,9 @@ export interface OperatorMethodOutputMap {
5209
5272
  truncated: boolean;
5210
5273
  totalCount: number;
5211
5274
  };
5275
+ "fleet.unarchive": {
5276
+ restored: number;
5277
+ };
5212
5278
  "health.snapshot": ({
5213
5279
  overall: "degraded" | "healthy";
5214
5280
  degradedDomains: readonly string[];