MCPcopy Create free account
hub / github.com/codeaashu/claude-code / getBriefConfig

Function getBriefConfig

src/commands/brief.ts:38–45  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

36// The tool-availability gate (tengu_kairos_brief in isBriefEnabled) keeps its
37// 5-min TTL because that one IS a kill switch.
38function getBriefConfig(): BriefConfig {
39 const raw = getFeatureValue_CACHED_MAY_BE_STALE<unknown>(
40 'tengu_kairos_brief_config',
41 DEFAULT_BRIEF_CONFIG,
42 )
43 const parsed = briefConfigSchema().safeParse(raw)
44 return parsed.success ? parsed.data : DEFAULT_BRIEF_CONFIG
45}
46
47const brief = {
48 type: 'local-jsx',

Callers 1

brief.tsFile · 0.85

Tested by

no test coverage detected