- Add hooks/notify.ps1 as single hook handler for all events - Refactor settings.local.json to use notify.ps1 instead of inline PS - Add Notification hook, auto-detect agent from session_id/transcript - Rename agent 'main' to 'claude' across server routes and terminal - Add loading overlay and error state for terminal switching transitions - Add transitionError ref to useTranscriptDebug composable
126 lines
4.7 KiB
TypeScript
126 lines
4.7 KiB
TypeScript
import { jsonResponse, errorResponse } from '../utils/cors'
|
|
import { PORT_TERMINAL } from '../config'
|
|
import { existsSync, readFileSync } from 'fs'
|
|
import { setActiveSession, getIncrementalMessages } from '../services/transcript-engine'
|
|
import { deriveStatus, sessionState, type HookPayload } from '../services/session-state'
|
|
|
|
export async function handleClaudeHook(req: Request): Promise<Response | null> {
|
|
if (req.method !== 'POST') return null
|
|
|
|
try {
|
|
const url = new URL(req.url)
|
|
let agent = url.searchParams.get('agent') || ''
|
|
const body = await req.json() as HookPayload
|
|
|
|
// Auto-detect agent from session_id or transcript_path
|
|
if (!agent && body.session_id) {
|
|
agent = sessionState.findAgentBySessionId(body.session_id) || ''
|
|
}
|
|
if (!agent && body.transcript_path) {
|
|
const matches = sessionState.findAgentsByTranscript(body.transcript_path as string)
|
|
if (matches.length === 1) agent = matches[0]
|
|
}
|
|
if (!agent) agent = 'claude'
|
|
|
|
// On Stop events, extract last assistant response from transcript
|
|
if (body.hook_event_name === 'Stop' && body.transcript_path) {
|
|
try {
|
|
let tp = body.transcript_path as string
|
|
// Normalize path for Windows (handle both C:\ and /c/ formats)
|
|
tp = tp.replace(/\\/g, '/')
|
|
if (/^\/[a-zA-Z]\//.test(tp)) {
|
|
tp = tp[1].toUpperCase() + ':' + tp.slice(2)
|
|
}
|
|
if (existsSync(tp)) {
|
|
const lines = readFileSync(tp, 'utf8').trim().split('\n')
|
|
for (let i = lines.length - 1; i >= Math.max(0, lines.length - 30); i--) {
|
|
try {
|
|
const obj = JSON.parse(lines[i])
|
|
if (obj.type === 'assistant' && obj.message?.role === 'assistant') {
|
|
const content = obj.message.content
|
|
if (Array.isArray(content)) {
|
|
const text = content.filter((c: any) => c.type === 'text').map((c: any) => c.text).join('\n')
|
|
if (text) {
|
|
body.assistant_response = text.slice(0, 500)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
} catch { /* skip unparseable lines */ }
|
|
}
|
|
}
|
|
} catch (e) {
|
|
console.error('[claude-hook] Failed to read transcript:', e)
|
|
}
|
|
}
|
|
|
|
// Inject agent name into hook data for WS consumers
|
|
const hookData = { ...body, agent_name: agent }
|
|
|
|
// 1. Broadcast full hook data via WebSocket (always, even for subagents)
|
|
try {
|
|
await fetch(`http://localhost:${PORT_TERMINAL}/claude-hook`, {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify(hookData)
|
|
})
|
|
} catch (e) {
|
|
console.error('[claude-hook] Failed to forward hook to terminal server:', e)
|
|
}
|
|
|
|
// 2. Forward PermissionRequest to /claude-permission for hooks approval system
|
|
if (body.hook_event_name === 'PermissionRequest') {
|
|
try {
|
|
await fetch(`http://localhost:${PORT_TERMINAL}/claude-permission`, {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify(hookData)
|
|
})
|
|
} catch (e) {
|
|
console.error('[claude-hook] Failed to forward permission to terminal server:', e)
|
|
}
|
|
}
|
|
|
|
// 3. Derive status and broadcast via WebSocket
|
|
const derived = deriveStatus(body)
|
|
if (derived) {
|
|
try {
|
|
await fetch(`http://localhost:${PORT_TERMINAL}/claude-status`, {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ status: derived.status, tool: derived.tool, agent })
|
|
})
|
|
} catch (e) {
|
|
console.error('[claude-hook] Failed to forward status to terminal server:', e)
|
|
}
|
|
}
|
|
|
|
// 4. Incremental transcript reading for real-time chat
|
|
if (body.session_id && body.transcript_path) {
|
|
setActiveSession(agent, body.session_id, body.transcript_path as string)
|
|
|
|
const newMessages = getIncrementalMessages(body.session_id, body.transcript_path as string)
|
|
if (newMessages.length > 0) {
|
|
try {
|
|
await fetch(`http://localhost:${PORT_TERMINAL}/transcript-update`, {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({
|
|
sessionId: body.session_id,
|
|
agent,
|
|
messages: newMessages,
|
|
hookEvent: body.hook_event_name
|
|
})
|
|
})
|
|
} catch (e) {
|
|
console.error('[claude-hook] Failed to forward transcript update:', e)
|
|
}
|
|
}
|
|
}
|
|
|
|
return jsonResponse({ success: true, event: body.hook_event_name, agent })
|
|
} catch (e) {
|
|
return errorResponse('Invalid JSON body', 400)
|
|
}
|
|
}
|