Build workspace agent, capability graph, and versioned cutovers

This commit is contained in:
2026-09-05 12:33:52 -07:00
parent 2de080c09f
commit fa9e77e75c
19 changed files with 321 additions and 54 deletions
+2
View File
@@ -38,8 +38,10 @@ export type EdgePort = {
connect(targetObjectId: string): Promise<void>;
};
export type InterfacePort = {
objectId: string;
interfaceRevisionId: string;
invoke(operationId: string, input?: Record<string, unknown>): Promise<unknown>;
live(operationId: string, input?: Record<string, unknown>): Promise<ReturnType<typeof liveValue>>;
};
export type ConstructorPort = {
atomId: string;