MCPcopy Index your code
hub / github.com/claude-code-best/claude-code / getEnvLessBridgeConfig

Function getEnvLessBridgeConfig

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

Source from the content-addressed store, hash-verified

128 * warns against startup-path usage, which this isn't.
129 */
130export async function getEnvLessBridgeConfig(): Promise<EnvLessBridgeConfig> {
131 const raw = await getFeatureValue_DEPRECATED<unknown>(
132 'tengu_bridge_repl_v2_config',
133 DEFAULT_ENV_LESS_BRIDGE_CONFIG,
134 )
135 const parsed = envLessBridgeConfigSchema().safeParse(raw)
136 return parsed.success ? parsed.data : DEFAULT_ENV_LESS_BRIDGE_CONFIG
137}
138
139/**
140 * Returns an error message if the current CLI version is below the minimum

Callers 3

initEnvLessBridgeCoreFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected