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

12 lines (11 loc) 637 B
/** * SystemPromptInjector — injects Claude Code session context blocks into the * system prompt so that the request looks like it originates from a genuine * Claude Code session (IDE metadata, session timestamp, etc.). * * This is designed for "cloaking" proxy requests to appear as native Claude * Code interactions. Only applies to OAuth accounts — API key accounts are * skipped since they do not need session mimicry. */ import type { CloakingPlugin, SystemPromptInjectorOptions } from "../../../types/index.js"; export declare function createSystemPromptInjector(options?: SystemPromptInjectorOptions): CloakingPlugin;