| 440 | |
| 441 | |
| 442 | export interface Agent { |
| 443 | apiVersion?: string; |
| 444 | kind?: string; |
| 445 | metadata: ResourceMetadata; |
| 446 | spec: AgentSpec; |
| 447 | status?: { |
| 448 | observedGeneration?: number; |
| 449 | conditions?: Array<{ |
| 450 | type: string; |
| 451 | status: string; |
| 452 | reason?: string; |
| 453 | message?: string; |
| 454 | /** RFC3339 from `lastTransitionTime` on Agent conditions */ |
| 455 | lastTransitionTime?: string; |
| 456 | }>; |
| 457 | }; |
| 458 | } |
| 459 | |
| 460 | /** Merged into GET /api/agents for an AgentHarness backed by Agent Substrate. */ |
| 461 | export interface AgentHarnessListEntry { |
no outgoing calls
no test coverage detected