docs: add workflow research, architecture, strategy, and critique

Generated by the planning workflow: validated API findings (Gemini/LiveKit/
GitHub/DO), full architecture synthesis, winning strategy, and red-team critique.
Canonical source files staged under docs/generated/files/.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Kartikeya
2026-06-27 14:31:25 -07:00
parent da5b2622b2
commit 2d7adea8e5
16 changed files with 1577 additions and 0 deletions
@@ -0,0 +1,45 @@
import type { Collision } from './collision.js';
import type { Intervention, InterventionStatus } from './intervention.js';
/** Topics multiplexed over the LiveKit data channel. */
export const DATA_TOPIC = 'podman.intervention' as const;
/** Wire messages exchanged between the PodMan agent and engineer PWAs. */
export type DataMessage =
| { type: 'COLLISION'; collision: Collision; intervention: Intervention }
| { type: 'VOICE_CUE'; text: string }
| { type: 'ACK'; interventionId: string; status: InterventionStatus; note?: string }
| { type: 'GIT_REPORT'; report: LocalGitReport };
/** Outcome of an intervention — the supervision signal for policy learning. */
export interface InterventionOutcome {
interventionId: string;
collisionId: string;
podId: string;
/** Did the predicted collision turn out real? (engineer-confirmed or inferred). */
wasRealCollision: boolean;
/** Did the engineer accept the offered action (e.g. sync PR)? */
accepted: boolean;
recordedAt: string;
}
/** The continually-refined per-pod world model (Loop A). */
export interface TeamModel {
podId: string;
/** filePath/dir -> engineerId most associated with it (de-facto owner). */
ownership: Record<string, string>;
/** Pairs of files that historically collide, with a co-occurrence weight. */
hotspots: Array<{ files: [string, string]; weight: number }>;
updatedAt: string;
}
/** OPTIONAL Tier-2 ground-truth from a per-laptop git sidecar. */
export interface LocalGitReport {
engineerId: string;
branch: string;
/** Commits ahead of upstream (invisible to the GitHub API). */
unpushedCount: number;
/** Working-tree files with uncommitted edits. */
dirtyFiles: string[];
reportedAt: string;
}