File size: 11,488 Bytes
1f21206 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 | /**
* TeamWatcher -- monitors ~/.claude/teams/ for changes and pushes
* real-time updates to all connected WebSocket clients.
*
* Uses polling (setInterval) rather than fs.watch for cross-platform reliability.
* Detects three kinds of events:
* - team_created : a new team directory with config.json appears
* - team_update : an existing team's config.json content changes
* - team_deleted : a previously-seen team directory disappears
*/
import * as fs from 'fs'
import * as path from 'path'
import * as os from 'os'
import { sendToSession, getActiveSessionIds } from '../ws/handler.js'
import type { ServerMessage, TeamMemberStatus } from '../ws/events.js'
// βββ Helpers ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
function getTeamsDir(): string {
const configDir = process.env.CLAUDE_CONFIG_DIR || path.join(os.homedir(), '.claude')
return path.join(configDir, 'teams')
}
// βββ TeamWatcher ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
export class TeamWatcher {
private intervalId: ReturnType<typeof setInterval> | null = null
private lastSnapshots = new Map<string, string>() // teamName -> raw JSON content
/** Start polling for team changes. */
start(intervalMs = 3000): void {
if (this.intervalId) return // already running
// Run an initial check immediately, then start the interval
this.check()
this.intervalId = setInterval(() => this.check(), intervalMs)
}
/** Stop polling. */
stop(): void {
if (this.intervalId) {
clearInterval(this.intervalId)
this.intervalId = null
}
}
/** Visible for testing -- force a single poll cycle. */
checkNow(): void {
this.check()
}
/** Clear internal snapshot state (useful in tests). */
reset(): void {
this.lastSnapshots.clear()
}
// ββ Core polling logic βββββββββββββββββββββββββββββββββββββββββββββββββ
private check(): void {
const teamsDir = getTeamsDir()
let entries: fs.Dirent[]
try {
entries = fs.readdirSync(teamsDir, { withFileTypes: true })
} catch {
// teams directory doesn't exist yet -- nothing to watch
// If we previously knew about teams, they are now all "deleted"
for (const [name] of this.lastSnapshots) {
this.broadcast({ type: 'team_deleted', teamName: name })
}
this.lastSnapshots.clear()
return
}
const currentTeamNames = new Set<string>()
for (const entry of entries) {
if (!entry.isDirectory()) continue
const teamName = entry.name
currentTeamNames.add(teamName)
const configPath = path.join(teamsDir, teamName, 'config.json')
let content: string
try {
content = fs.readFileSync(configPath, 'utf-8')
} catch {
// config.json not readable (missing / permissions) -- skip
continue
}
const lastContent = this.lastSnapshots.get(teamName)
if (lastContent === undefined) {
// New team detected
this.lastSnapshots.set(teamName, content)
this.broadcast({ type: 'team_created', teamName })
} else if (content !== lastContent) {
// Team config changed -- extract member statuses and broadcast
this.lastSnapshots.set(teamName, content)
try {
const config = JSON.parse(content)
const members = this.extractMemberStatuses(config)
// Merge inbox-discovered members that are missing from config
const inboxMembers = this.discoverInboxMembers(teamsDir, teamName, config)
const subagentMembers = this.discoverSubagentMembers(teamsDir, config)
const allMembers = [...members, ...inboxMembers, ...subagentMembers]
this.broadcast({ type: 'team_update', teamName, members: allMembers })
} catch {
// JSON parse failed (likely truncated write) β try to recover partial members
const recovered = this.recoverPartialMembers(content)
if (recovered.length > 0) {
this.broadcast({ type: 'team_update', teamName, members: recovered })
}
// If nothing recoverable, skip broadcast entirely β don't send empty members
}
}
// else: content unchanged, nothing to do
}
// Check for deleted teams (were in lastSnapshots but no longer on disk)
for (const [name] of this.lastSnapshots) {
if (!currentTeamNames.has(name)) {
this.lastSnapshots.delete(name)
this.broadcast({ type: 'team_deleted', teamName: name })
}
}
}
// ββ Member status extraction βββββββββββββββββββββββββββββββββββββββββββ
/**
* Parse the TeamFile config and derive a TeamMemberStatus for each member.
*
* The raw config has:
* members: [{ agentId, name, agentType, isActive, sessionId, ... }]
*
* We map `isActive` to the status enum and use `agentType` / `name` as role.
*/
extractMemberStatuses(config: Record<string, unknown>): TeamMemberStatus[] {
const members = config.members
if (!Array.isArray(members)) return []
return members.map((m: Record<string, unknown>) => {
const status = this.deriveStatus(m.isActive as boolean | undefined)
return {
agentId: (m.agentId as string) || '',
role: (m.name as string) || (m.agentType as string) || 'member',
status,
currentTask: (m.currentTask as string) || undefined,
}
})
}
private deriveStatus(isActive: boolean | undefined): TeamMemberStatus['status'] {
if (isActive === false) return 'idle'
// isActive === true or undefined => running
return 'running'
}
/**
* Discover members from inboxes/ that aren't in config.json.
* Fixes the race condition where concurrent writes to config.json lose members.
*/
private discoverInboxMembers(
teamsDir: string,
teamName: string,
config: Record<string, unknown>,
): TeamMemberStatus[] {
const inboxDir = path.join(teamsDir, teamName, 'inboxes')
const configMembers = Array.isArray(config.members) ? config.members : []
const configNames = new Set(
configMembers.map((m: Record<string, unknown>) => m.name as string),
)
try {
const files = fs.readdirSync(inboxDir)
const extra: TeamMemberStatus[] = []
for (const file of files) {
if (!file.endsWith('.json')) continue
const name = file.replace(/\.json$/, '')
if (name === 'team-lead' || configNames.has(name)) continue
extra.push({
agentId: `${name}@${teamName}`,
role: name,
status: 'running', // assume running β they have an inbox
})
}
return extra
} catch {
return []
}
}
private discoverSubagentMembers(
teamsDir: string,
config: Record<string, unknown>,
): TeamMemberStatus[] {
const leadSessionId =
typeof config.leadSessionId === 'string' ? config.leadSessionId : null
const teamName = typeof config.name === 'string' ? config.name : 'team'
if (!leadSessionId) return []
const configMembers = Array.isArray(config.members) ? config.members : []
const configNames = new Set(
configMembers.map((m: Record<string, unknown>) => m.name as string),
)
const projectsDir = path.join(path.dirname(teamsDir), 'projects')
try {
const projectEntries = fs.readdirSync(projectsDir, { withFileTypes: true })
const extra = new Map<string, TeamMemberStatus>()
for (const entry of projectEntries) {
if (!entry.isDirectory()) continue
const subagentsDir = path.join(
projectsDir,
entry.name,
leadSessionId,
'subagents',
)
let files: string[]
try {
files = fs.readdirSync(subagentsDir)
} catch {
continue
}
for (const file of files) {
if (!file.endsWith('.jsonl')) continue
const inferredName = this.extractSubagentName(
path.join(subagentsDir, file),
)
if (
inferredName &&
inferredName !== 'team-lead' &&
!configNames.has(inferredName) &&
!extra.has(inferredName)
) {
extra.set(inferredName, {
agentId: `${inferredName}@${teamName}`,
role: inferredName,
status: 'running',
})
}
}
}
return [...extra.values()]
} catch {
return []
}
}
/**
* Attempt to recover member data from truncated/corrupted JSON.
* Extracts agentId values via regex and constructs minimal member statuses.
*/
private recoverPartialMembers(rawContent: string): TeamMemberStatus[] {
const members: TeamMemberStatus[] = []
// Match complete member-like objects: find "agentId":"..." patterns
const agentIdRegex = /"agentId"\s*:\s*"([^"]+)"/g
const nameRegex = /"(?:agentType|name)"\s*:\s*"([^"]+)"/g
const isActiveRegex = /"isActive"\s*:\s*(true|false)/g
const agentIds: string[] = []
const names: string[] = []
const activeStates: (boolean | undefined)[] = []
let match: RegExpExecArray | null
while ((match = agentIdRegex.exec(rawContent)) !== null) {
agentIds.push(match[1]!)
}
while ((match = nameRegex.exec(rawContent)) !== null) {
names.push(match[1]!)
}
while ((match = isActiveRegex.exec(rawContent)) !== null) {
activeStates.push(match[1] === 'true')
}
for (let i = 0; i < agentIds.length; i++) {
members.push({
agentId: agentIds[i]!,
role: names[i] || 'member',
status: this.deriveStatus(activeStates[i]),
})
}
return members
}
private extractSubagentName(filePath: string): string | null {
try {
const head = fs.readFileSync(filePath, 'utf-8').slice(0, 8192)
const lines = head.split('\n').filter((line) => line.trim().length > 0)
for (const line of lines) {
try {
const entry = JSON.parse(line) as Record<string, unknown>
if (typeof entry.agentName === 'string' && entry.agentName.trim()) {
return entry.agentName
}
if (typeof entry.agentId === 'string' && entry.agentId.includes('@')) {
return entry.agentId.split('@')[0] ?? null
}
} catch {
// Ignore malformed preview lines.
}
}
const match =
head.match(/"agentName"\s*:\s*"([^"]+)"/) ||
head.match(/"name"\s*:\s*"([^"]+)"/) ||
head.match(/\*\*([a-zA-Z0-9_-]+)\*\*/)
return match?.[1] ?? null
} catch {
return null
}
}
// ββ Broadcasting βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
private broadcast(message: ServerMessage): void {
const sessionIds = getActiveSessionIds()
for (const id of sessionIds) {
sendToSession(id, message)
}
}
}
export const teamWatcher = new TeamWatcher()
|