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

Function checkEnvLessBridgeMinVersion

src/bridge/envLessBridgeConfig.ts:147–153  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

145 * independent floors.
146 */
147export async function checkEnvLessBridgeMinVersion(): Promise<string | null> {
148 const cfg = await getEnvLessBridgeConfig()
149 if (cfg.min_version && lt(MACRO.VERSION, cfg.min_version)) {
150 return `Your version of Claude Code (${MACRO.VERSION}) is too old for Remote Control.\nVersion ${cfg.min_version} or higher is required. Run \`claude update\` to update.`
151 }
152 return null
153}
154
155/**
156 * Whether to nudge users toward upgrading their claude.ai app when a

Callers 2

initReplBridgeFunction · 0.85
checkBridgePrerequisitesFunction · 0.85

Calls 2

getEnvLessBridgeConfigFunction · 0.85
ltFunction · 0.85

Tested by

no test coverage detected