SYMBOL INDEX (48 symbols across 8 files) FILE: packages/brief-sdk/__tests__/brief.test.ts constant SAMPLE_BRIEF_MD (line 4) | const SAMPLE_BRIEF_MD = `--- FILE: packages/brief-sdk/__tests__/response.test.ts constant SAMPLE_RESPONSE_MD (line 4) | const SAMPLE_RESPONSE_MD = `--- FILE: packages/brief-sdk/src/brief.ts class Brief (line 17) | class Brief { method constructor (line 27) | private constructor(meta: BriefMeta, body: string, content: string) { method id (line 35) | get id(): string { method delegator (line 39) | get delegator(): string { method delegatee (line 43) | get delegatee(): string { method parentId (line 47) | get parentId(): string | undefined { method isSubBrief (line 52) | get isSubBrief(): boolean { method canDelegate (line 57) | get canDelegate(): boolean { method parse (line 78) | static parse(content: string): Brief { method createResponse (line 104) | createResponse(options: CreateResponseOptions): BriefResponse { method createSubBrief (line 129) | createSubBrief(options: Omit { constant FRONTMATTER_REGEX (line 28) | const FRONTMATTER_REGEX = /^---\r?\n([\s\S]*?)\r?\n---\r?\n?([\s\S]*)$/; function parseDocument (line 37) | function parseDocument( function serializeDocument (line 73) | function serializeDocument = Record & { timestamp?: string }):... method getEntries (line 111) | getEntries(): readonly TraceEntry[] { method length (line 116) | get length(): number { method clone (line 124) | clone(): Trace { method merge (line 133) | merge(other: Trace): this { method toString (line 161) | toString(): string { FILE: packages/brief-sdk/src/types.ts type BriefMeta (line 16) | interface BriefMeta { type CreateBriefOptions (line 55) | interface CreateBriefOptions { type BriefStatus (line 86) | type BriefStatus = 'success' | 'failure' | 'partial' | 'rejected'; type ResponseMeta (line 91) | interface ResponseMeta { type CreateResponseOptions (line 105) | interface CreateResponseOptions { type TraceEntry (line 120) | interface TraceEntry { type ValidationResult (line 141) | interface ValidationResult { FILE: packages/brief-sdk/src/validator.ts constant ISO_DATE_REGEX (line 9) | const ISO_DATE_REGEX = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}/; constant SEMVER_REGEX (line 10) | const SEMVER_REGEX = /^\d+\.\d+\.\d+/; function validateBriefMeta (line 15) | function validateBriefMeta(meta: Partial): ValidationResult { function validateResponseMeta (line 66) | function validateResponseMeta(meta: Partial): ValidationRe...