You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A hands-off smart auto mode: a non-stop voice conversation with ONE agent that sits across ALL your repos — knows what's happening in each, tells you when/what finished, explains things, and chats to the remote Claudes on your behalf. Explicitly one agent across everything, with memory + self-awareness — NOT a voice agent per repo.
Why one agent, not per-repo (agreed)
Per-repo co-pilots can't answer "what's the status of everything / what just finished / which needs me?" and can't move work between repos. A single Overseer holds the global picture and routes to the right repo's Claude. It's the natural home for memory + continuous conversation.
Architecture
Scope: one Overseer per user (or per coding instance). Not tied to a session.
Global awareness: subscribes to ALL the user's coding sessions — live run-state (working/idle/needs-you — already built), each session's recent coding_timeline, deploy status. This is its always-on context.
Memory: persistent, cross-session (a new overseer_memory or reuse per-instance memory) — ongoing goals, your preferences, "what we're doing in each repo". Survives reloads.
drive_claude(repoId, instruction) — delegate work to a specific repo's Claude (reuse /coding/act + the finish watcher).
focus(repoId) / navigation for voice.
Proactive narration: when any repo's finish-watcher fires, the Overseer announces it ("platform finished adding auth — want the diff?"). Reuses the notification/watch machinery.
Continuous voice: continuous SpeechRecognition + TTS; barge-in (recording cancels playback — already built). A real back-and-forth.
This subsumes #3 (conversational routing): #3 is the same answer-from-context vs drive_claude decision, but per-session. The Overseer is that decision at GLOBAL scope. Recommend: build #3's tool-loop as the reusable core, then lift it to the Overseer with global context + memory + multi-repo drive_claude.
Continuous-voice UI (ties in Mode 1's command layer).
Acceptance
A single voice conversation where I can ask "what's everyone doing / what finished?", tell it "have the platform repo run the tests", and it routes to that repo's Claude, narrates completions, and remembers context across the session.
Vision (user's framing)
A hands-off smart auto mode: a non-stop voice conversation with ONE agent that sits across ALL your repos — knows what's happening in each, tells you when/what finished, explains things, and chats to the remote Claudes on your behalf. Explicitly one agent across everything, with memory + self-awareness — NOT a voice agent per repo.
Why one agent, not per-repo (agreed)
Per-repo co-pilots can't answer "what's the status of everything / what just finished / which needs me?" and can't move work between repos. A single Overseer holds the global picture and routes to the right repo's Claude. It's the natural home for memory + continuous conversation.
Architecture
coding_timeline, deploy status. This is its always-on context.overseer_memoryor reuse per-instance memory) — ongoing goals, your preferences, "what we're doing in each repo". Survives reloads.repos_status()— every repo's state at a glance.repo_detail(repoId)/search_history(repoId?, query)— read a repo's activity (vector + timeline).drive_claude(repoId, instruction)— delegate work to a specific repo's Claude (reuse/coding/act+ the finish watcher).focus(repoId)/ navigation for voice.POST /instances/:id/overseer— a tool-calling loop fed {user message + global context + memory}; returns a reply and/or delegates. Generalises issue Conversational agent routing: one tool-calling co-pilot (answer-from-context vs delegate-to-Claude) #3's per-session routing to global scope.Relationship to #3
This subsumes #3 (conversational routing): #3 is the same answer-from-context vs
drive_claudedecision, but per-session. The Overseer is that decision at GLOBAL scope. Recommend: build #3's tool-loop as the reusable core, then lift it to the Overseer with global context + memory + multi-repodrive_claude.Build order (proposed)
repos_status/drive_claude(repoId)— the Overseer reads all repos and routes.Acceptance
A single voice conversation where I can ask "what's everyone doing / what finished?", tell it "have the platform repo run the tests", and it routes to that repo's Claude, narrates completions, and remembers context across the session.