Add member work history and learning docs

This commit is contained in:
Yahya Alhinai
2026-06-28 08:05:59 +00:00
parent 1adb8413b5
commit 97e5af4487
48 changed files with 4491 additions and 221 deletions
+15
View File
@@ -9,6 +9,7 @@ export type DataMessage =
| { type: 'COLLISION'; collision: Collision; intervention: Intervention }
| { type: 'HERMES_MESSAGE'; message: HermesMessage }
| { type: 'VOICE_CUE'; text: string }
| { type: 'LIVE_CONVERSATION_EVENT'; event: LiveConversationEvent }
| { type: 'ACK'; interventionId: string; status: InterventionStatus; note?: string }
| { type: 'GIT_REPORT'; report: LocalGitReport }
/** Any participant → the current test-audio owner: stop publishing the shared beat. */
@@ -25,6 +26,20 @@ export interface HermesMessage {
createdAt: string;
}
/** Private-room event that lets PodMan interrupt a 1:1 live conversation. */
export interface LiveConversationEvent {
id: string;
podId: string;
sessionId: string;
kind: 'critical_collision' | 'context_refresh';
severity: 'info' | 'warn' | 'critical';
summary: string;
interrupt: boolean;
createdAt: string;
collisionId?: string;
interventionId?: string;
}
/** Outcome of an intervention — the supervision signal for policy learning. */
export interface InterventionOutcome {
interventionId: string;