MCPcopy Index your code
hub / github.com/codeaashu/claude-code / isAutoDreamEnabled

Function isAutoDreamEnabled

src/services/autoDream/config.ts:13–21  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

11 * when explicitly set; otherwise falls through to tengu_onyx_plover.
12 */
13export function isAutoDreamEnabled(): boolean {
14 const setting = getInitialSettings().autoDreamEnabled
15 if (setting !== undefined) return setting
16 const gb = getFeatureValue_CACHED_MAY_BE_STALE<{ enabled?: unknown } | null>(
17 'tengu_onyx_plover',
18 null,
19 )
20 return gb?.enabled === true
21}
22

Callers 1

isGateOpenFunction · 0.85

Calls 2

getInitialSettingsFunction · 0.85

Tested by

no test coverage detected