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

Function getRemoteControlAtStartup

src/utils/config.ts:1094–1101  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1092 * 3. false (Remote Control must be explicitly opted into)
1093 */
1094export function getRemoteControlAtStartup(): boolean {
1095 const explicit = getGlobalConfig().remoteControlAtStartup
1096 if (explicit !== undefined) return explicit
1097 if (feature('CCR_AUTO_CONNECT')) {
1098 if (ccrAutoConnect?.getCcrAutoConnectDefault()) return true
1099 }
1100 return false
1101}
1102
1103export function getCustomApiKeyStatus(
1104 truncatedApiKey: string,

Callers 4

runFunction · 0.85
callFunction · 0.85
onChangeFunction · 0.85

Calls 2

getGlobalConfigFunction · 0.85
featureFunction · 0.85

Tested by

no test coverage detected