d25d482dc2
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
67 lines
2.4 KiB
TypeScript
67 lines
2.4 KiB
TypeScript
import {
|
|
MothershipStreamV1SpanLifecycleEvent,
|
|
MothershipStreamV1SpanPayloadKind,
|
|
} from '@/lib/copilot/generated/mothership-stream-v1'
|
|
import type { StreamHandler } from './types'
|
|
|
|
/**
|
|
* Mirror Go-emitted span lifecycle events onto the Sim-side TraceCollector.
|
|
*
|
|
* Go publishes `span` events for subagent lifecycles and structured-result
|
|
* payloads. For subagents, the start/end pair is also used for UI routing
|
|
* elsewhere; here we additionally record a named span on the trace collector
|
|
* so the final RequestTraceV1 report shows the full nested structure without
|
|
* requiring the reader to inspect the raw envelope stream.
|
|
*/
|
|
export const handleSpanEvent: StreamHandler = (event, context) => {
|
|
if (event.type !== 'span') {
|
|
return
|
|
}
|
|
|
|
const payload = event.payload as {
|
|
kind?: string
|
|
event?: string
|
|
agent?: string
|
|
data?: unknown
|
|
}
|
|
const kind = payload?.kind ?? ''
|
|
const evt = payload?.event ?? ''
|
|
|
|
if (kind === MothershipStreamV1SpanPayloadKind.subagent) {
|
|
const scopeAgent =
|
|
typeof payload.agent === 'string' && payload.agent ? payload.agent : 'subagent'
|
|
// Key by the deterministic spanId so two concurrent runs of the SAME agent
|
|
// (e.g. two parallel `research` subagents) get distinct trace spans. Fall
|
|
// back to agent:parentToolCallId for legacy events that predate span ids.
|
|
const traceKey = event.scope?.spanId || `${scopeAgent}:${event.scope?.parentToolCallId || ''}`
|
|
if (evt === MothershipStreamV1SpanLifecycleEvent.start) {
|
|
const span = context.trace.startSpan(`subagent:${scopeAgent}`, 'go.subagent', {
|
|
agent: scopeAgent,
|
|
parentToolCallId: event.scope?.parentToolCallId,
|
|
spanId: event.scope?.spanId,
|
|
})
|
|
context.subAgentTraceSpans ??= new Map()
|
|
context.subAgentTraceSpans.set(traceKey, span)
|
|
} else if (evt === MothershipStreamV1SpanLifecycleEvent.end) {
|
|
const span = context.subAgentTraceSpans?.get(traceKey)
|
|
if (span) {
|
|
context.trace.endSpan(span, 'ok')
|
|
context.subAgentTraceSpans?.delete(traceKey)
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
if (
|
|
kind === MothershipStreamV1SpanPayloadKind.structured_result ||
|
|
kind === MothershipStreamV1SpanPayloadKind.subagent_result
|
|
) {
|
|
const span = context.trace.startSpan(`${kind}:${payload.agent ?? 'main'}`, `go.${kind}`, {
|
|
agent: payload.agent,
|
|
hasData: payload.data !== undefined,
|
|
})
|
|
context.trace.endSpan(span, 'ok')
|
|
return
|
|
}
|
|
}
|