UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio

17 lines (16 loc) 693 B
/** * Proxy file path resolver. * * In normal mode, all paths resolve under ~/.neurolink/. * In dev mode (--dev), writable paths resolve under <cwd>/.neurolink-dev/ * so a local dev proxy never touches the global proxy's state. * * Read-only paths (like .env) always point to the global location * since credentials must be shared. * * NOTE: Claude Code header snapshots (~/.neurolink/header-snapshots/) are * not redirected in dev mode. They are only written when a real Claude Code * client connects, which typically does not happen during dev testing. */ import type { ProxyPaths } from "../types/index.js"; export declare function resolveProxyPaths(dev: boolean): ProxyPaths;