@fudrouter/fsrouter 0.6.62 → 0.6.63

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (572) hide show
  1. package/bin/copyJs.js +0 -4
  2. package/dist/lib/oauth/constants/oauth.js +2 -2
  3. package/dist/lib/oauth/providers.js +1 -1
  4. package/dist/routes/providers/[id]/test/testUtils.js +3 -3
  5. package/dist/shared/constants/models.js +2 -2
  6. package/dist/sse/handlers/chat.js +10 -10
  7. package/dist/sse/handlers/embeddings.js +3 -3
  8. package/dist/sse/handlers/fetch.js +4 -4
  9. package/dist/sse/handlers/imageGeneration.js +5 -5
  10. package/dist/sse/handlers/search.js +4 -4
  11. package/dist/sse/handlers/stt.js +3 -3
  12. package/dist/sse/handlers/tts.js +4 -4
  13. package/dist/sse/handlers/videoGeneration.js +4 -4
  14. package/dist/sse/services/auth.js +2 -2
  15. package/dist/sse/services/model.js +1 -1
  16. package/dist/sse/services/tokenRefresh.js +3 -3
  17. package/open-sse/AGENTS.md +39 -0
  18. package/open-sse/config/anthropicHeaders.js +87 -0
  19. package/open-sse/config/appConstants.js +238 -0
  20. package/open-sse/config/audioRegistry.js +506 -0
  21. package/open-sse/config/cliFingerprints.js +304 -0
  22. package/open-sse/config/codexInstructions.js +119 -0
  23. package/open-sse/config/codexQuotaScopes.js +42 -0
  24. package/open-sse/config/constants.js +4 -0
  25. package/open-sse/config/contextEditing.js +68 -0
  26. package/open-sse/config/credentialLoader.js +83 -0
  27. package/open-sse/config/defaultThinkingSignature.js +12 -0
  28. package/open-sse/config/embeddingRegistry.js +264 -0
  29. package/open-sse/config/errorConfig.js +96 -0
  30. package/open-sse/config/freeModelCatalog.data.js +121 -0
  31. package/open-sse/config/freeModelCatalog.js +90 -0
  32. package/open-sse/config/freeTierCatalog.js +81 -0
  33. package/open-sse/config/googleTtsLanguages.js +62 -0
  34. package/open-sse/config/imageParamDefs.js +360 -0
  35. package/open-sse/config/imageRegistry.js +493 -0
  36. package/open-sse/config/kiroConstants.js +268 -0
  37. package/open-sse/config/mediaConfig.js +27 -0
  38. package/open-sse/config/mediaServiceKinds.js +71 -0
  39. package/open-sse/config/models.js +13 -0
  40. package/open-sse/config/moderationRegistry.js +71 -0
  41. package/open-sse/config/musicRegistry.js +99 -0
  42. package/open-sse/config/ocrRegistry.js +61 -0
  43. package/open-sse/config/ollamaModels.js +19 -0
  44. package/open-sse/config/providerErrorRules.js +114 -0
  45. package/open-sse/config/providerFieldStrips.js +35 -0
  46. package/open-sse/config/providerHeaderProfiles.js +191 -0
  47. package/open-sse/config/providerModels.js +106 -0
  48. package/open-sse/config/providerRegistry.js +16 -0
  49. package/open-sse/config/providers.js +19 -0
  50. package/open-sse/config/registryUtils.js +106 -0
  51. package/open-sse/config/rerankRegistry.js +177 -0
  52. package/open-sse/config/runtimeConfig.js +96 -0
  53. package/open-sse/config/runway.js +39 -0
  54. package/open-sse/config/searchRegistry.js +153 -0
  55. package/open-sse/config/toolCloaking.js +199 -0
  56. package/open-sse/config/ttsModels.js +129 -0
  57. package/open-sse/config/videoRegistry.js +207 -0
  58. package/open-sse/executors/adapta-web.js +435 -0
  59. package/open-sse/executors/antigravity.js +534 -0
  60. package/open-sse/executors/antigravityUpstreamError.js +13 -0
  61. package/open-sse/executors/auggie.js +437 -0
  62. package/open-sse/executors/azure-openai.js +32 -0
  63. package/open-sse/executors/azure.js +57 -0
  64. package/open-sse/executors/base.js +181 -0
  65. package/open-sse/executors/bedrock.js +633 -0
  66. package/open-sse/executors/blackbox-web.js +578 -0
  67. package/open-sse/executors/chatgpt-web.js +2042 -0
  68. package/open-sse/executors/chipotle.js +357 -0
  69. package/open-sse/executors/claude-web-with-auto-refresh.js +73 -0
  70. package/open-sse/executors/claude-web.js +586 -0
  71. package/open-sse/executors/cliproxyapi.js +296 -0
  72. package/open-sse/executors/cloudflare-ai.js +46 -0
  73. package/open-sse/executors/codebuddy-cn.js +40 -0
  74. package/open-sse/executors/codex.js +1324 -0
  75. package/open-sse/executors/commandCode.js +558 -0
  76. package/open-sse/executors/commandcode.js +88 -0
  77. package/open-sse/executors/copilot-m365-connection.js +176 -0
  78. package/open-sse/executors/copilot-m365-frames.js +192 -0
  79. package/open-sse/executors/copilot-m365-web.js +299 -0
  80. package/open-sse/executors/copilot-web.js +580 -0
  81. package/open-sse/executors/cursor.js +795 -0
  82. package/open-sse/executors/deepseek-web-with-auto-refresh.js +150 -0
  83. package/open-sse/executors/deepseek-web.js +875 -0
  84. package/open-sse/executors/default.js +430 -0
  85. package/open-sse/executors/devin-cli.js +351 -0
  86. package/open-sse/executors/doubao-web.js +550 -0
  87. package/open-sse/executors/duckduckgo-web.js +629 -0
  88. package/open-sse/executors/forceResponsesUpstream.js +33 -0
  89. package/open-sse/executors/gemini-business.js +320 -0
  90. package/open-sse/executors/gemini-cli.js +89 -0
  91. package/open-sse/executors/gemini-web.js +297 -0
  92. package/open-sse/executors/github.js +379 -0
  93. package/open-sse/executors/gitlab.js +569 -0
  94. package/open-sse/executors/glm.js +361 -0
  95. package/open-sse/executors/grok-cli.js +119 -0
  96. package/open-sse/executors/grok-web.js +345 -0
  97. package/open-sse/executors/huggingchat.js +467 -0
  98. package/open-sse/executors/iflow.js +108 -0
  99. package/open-sse/executors/index.js +78 -0
  100. package/open-sse/executors/inner-ai.js +527 -0
  101. package/open-sse/executors/kimchi.js +123 -0
  102. package/open-sse/executors/kimi-web.js +325 -0
  103. package/open-sse/executors/kimi.js +97 -0
  104. package/open-sse/executors/kiro.js +503 -0
  105. package/open-sse/executors/kiroThinking.js +44 -0
  106. package/open-sse/executors/lmarena.js +395 -0
  107. package/open-sse/executors/mimo-free.js +167 -0
  108. package/open-sse/executors/mimocode.js +392 -0
  109. package/open-sse/executors/ninerouter.js +155 -0
  110. package/open-sse/executors/nlpcloud.js +438 -0
  111. package/open-sse/executors/ollama-local.js +14 -0
  112. package/open-sse/executors/opencode-go.js +41 -0
  113. package/open-sse/executors/opencode.js +32 -0
  114. package/open-sse/executors/perplexity-web.js +581 -0
  115. package/open-sse/executors/poe-web.js +133 -0
  116. package/open-sse/executors/pollinations.js +95 -0
  117. package/open-sse/executors/puter.js +31 -0
  118. package/open-sse/executors/qoder.js +448 -0
  119. package/open-sse/executors/qwen-web.js +372 -0
  120. package/open-sse/executors/qwen.js +129 -0
  121. package/open-sse/executors/t3-chat-web.js +417 -0
  122. package/open-sse/executors/theoldllm.js +290 -0
  123. package/open-sse/executors/trae.js +418 -0
  124. package/open-sse/executors/v0-vercel-web.js +141 -0
  125. package/open-sse/executors/venice-web.js +142 -0
  126. package/open-sse/executors/vertex.js +131 -0
  127. package/open-sse/executors/vertexMedia.js +236 -0
  128. package/open-sse/executors/windsurf.js +560 -0
  129. package/open-sse/executors/xai.js +46 -0
  130. package/open-sse/executors/xiaomi-tokenplan.js +19 -0
  131. package/open-sse/executors/yuanbao-web.js +385 -0
  132. package/open-sse/executors/zed-hosted.js +281 -0
  133. package/open-sse/executors/zenmux-free.js +247 -0
  134. package/open-sse/handlers/audioSpeech.js +759 -0
  135. package/open-sse/handlers/audioTranscription.js +395 -0
  136. package/open-sse/handlers/audioTranslation.js +181 -0
  137. package/open-sse/handlers/chatCore/nonStreamingHandler.js +300 -0
  138. package/open-sse/handlers/chatCore/requestDetail.js +102 -0
  139. package/open-sse/handlers/chatCore/sseToJsonHandler.js +231 -0
  140. package/open-sse/handlers/chatCore/streamingHandler.js +95 -0
  141. package/open-sse/handlers/chatCore.js +404 -0
  142. package/open-sse/handlers/embeddingProviders/_base.js +4 -0
  143. package/open-sse/handlers/embeddingProviders/gemini.js +54 -0
  144. package/open-sse/handlers/embeddingProviders/index.js +23 -0
  145. package/open-sse/handlers/embeddingProviders/openai.js +39 -0
  146. package/open-sse/handlers/embeddingProviders/openaiCompatNode.js +13 -0
  147. package/open-sse/handlers/embeddingsCore.js +126 -0
  148. package/open-sse/handlers/fetch/index.js +237 -0
  149. package/open-sse/handlers/imageGenerationCore.js +230 -0
  150. package/open-sse/handlers/imageProviders/_base.js +31 -0
  151. package/open-sse/handlers/imageProviders/antigravity.js +73 -0
  152. package/open-sse/handlers/imageProviders/blackForestLabs.js +63 -0
  153. package/open-sse/handlers/imageProviders/cloudflareAi.js +207 -0
  154. package/open-sse/handlers/imageProviders/codex.js +217 -0
  155. package/open-sse/handlers/imageProviders/comfyui.js +25 -0
  156. package/open-sse/handlers/imageProviders/falAi.js +62 -0
  157. package/open-sse/handlers/imageProviders/gemini.js +40 -0
  158. package/open-sse/handlers/imageProviders/huggingface.js +38 -0
  159. package/open-sse/handlers/imageProviders/index.js +44 -0
  160. package/open-sse/handlers/imageProviders/leonardo.js +435 -0
  161. package/open-sse/handlers/imageProviders/nanobanana.js +79 -0
  162. package/open-sse/handlers/imageProviders/openai.js +61 -0
  163. package/open-sse/handlers/imageProviders/runwayml.js +72 -0
  164. package/open-sse/handlers/imageProviders/sdwebui.js +36 -0
  165. package/open-sse/handlers/imageProviders/stabilityAi.js +59 -0
  166. package/open-sse/handlers/imageProviders/weavy.js +222 -0
  167. package/open-sse/handlers/moderations.js +92 -0
  168. package/open-sse/handlers/ocr.js +89 -0
  169. package/open-sse/handlers/rerank.js +223 -0
  170. package/open-sse/handlers/responseSanitizer/reasoning.js +144 -0
  171. package/open-sse/handlers/responsesHandler.js +99 -0
  172. package/open-sse/handlers/search/callers.js +371 -0
  173. package/open-sse/handlers/search/chatSearch.js +409 -0
  174. package/open-sse/handlers/search/index.js +201 -0
  175. package/open-sse/handlers/search/normalizers.js +223 -0
  176. package/open-sse/handlers/search.js +1056 -0
  177. package/open-sse/handlers/sseParser.js +469 -0
  178. package/open-sse/handlers/sttCore.js +193 -0
  179. package/open-sse/handlers/ttsCore.js +74 -0
  180. package/open-sse/handlers/ttsProviders/_base.js +39 -0
  181. package/open-sse/handlers/ttsProviders/edgeTts.js +89 -0
  182. package/open-sse/handlers/ttsProviders/elevenlabs.js +48 -0
  183. package/open-sse/handlers/ttsProviders/gemini.js +117 -0
  184. package/open-sse/handlers/ttsProviders/genericFormats.js +169 -0
  185. package/open-sse/handlers/ttsProviders/googleTts.js +54 -0
  186. package/open-sse/handlers/ttsProviders/index.js +50 -0
  187. package/open-sse/handlers/ttsProviders/localDevice.js +87 -0
  188. package/open-sse/handlers/ttsProviders/minimax.js +59 -0
  189. package/open-sse/handlers/ttsProviders/openai.js +30 -0
  190. package/open-sse/handlers/ttsProviders/openrouter.js +70 -0
  191. package/open-sse/handlers/usageExtractor.js +93 -0
  192. package/open-sse/handlers/videoGenerationCore.js +119 -0
  193. package/open-sse/handlers/videoProviders/index.js +22 -0
  194. package/open-sse/handlers/videoProviders/leonardo.js +511 -0
  195. package/open-sse/handlers/videoProviders/weavy.js +198 -0
  196. package/open-sse/handlers/webFetch.js +200 -0
  197. package/open-sse/index.js +79 -0
  198. package/open-sse/mcp-server/audit.js +283 -0
  199. package/open-sse/mcp-server/catalog.js +184 -0
  200. package/open-sse/mcp-server/descriptionCompressor.js +175 -0
  201. package/open-sse/mcp-server/httpAuthContext.js +32 -0
  202. package/open-sse/mcp-server/httpTransport.js +229 -0
  203. package/open-sse/mcp-server/index.js +33 -0
  204. package/open-sse/mcp-server/mcpCallerIdentity.js +21 -0
  205. package/open-sse/mcp-server/runtimeHeartbeat.js +110 -0
  206. package/open-sse/mcp-server/schemas/a2a.js +153 -0
  207. package/open-sse/mcp-server/schemas/audit.js +17 -0
  208. package/open-sse/mcp-server/schemas/index.js +166 -0
  209. package/open-sse/mcp-server/schemas/pickFastestModel.js +90 -0
  210. package/open-sse/mcp-server/schemas/toolDefinition.js +0 -0
  211. package/open-sse/mcp-server/schemas/toolSearch.js +32 -0
  212. package/open-sse/mcp-server/schemas/tools.js +1219 -0
  213. package/open-sse/mcp-server/scopeEnforcement.js +80 -0
  214. package/open-sse/mcp-server/server.js +1168 -0
  215. package/open-sse/mcp-server/toolCardinality.js +78 -0
  216. package/open-sse/mcp-server/toolSearch/catalog.js +66 -0
  217. package/open-sse/mcp-server/toolSearch/handler.js +20 -0
  218. package/open-sse/mcp-server/toolSearch/index.js +10 -0
  219. package/open-sse/mcp-server/toolSearch/register.js +21 -0
  220. package/open-sse/mcp-server/toolSearch/search.js +55 -0
  221. package/open-sse/mcp-server/toolSearch/signature.js +67 -0
  222. package/open-sse/mcp-server/tools/advancedTools.js +893 -0
  223. package/open-sse/mcp-server/tools/agentSkillTools.js +69 -0
  224. package/open-sse/mcp-server/tools/compressionTools.js +309 -0
  225. package/open-sse/mcp-server/tools/gamificationTools.js +134 -0
  226. package/open-sse/mcp-server/tools/githubSkillTools.js +102 -0
  227. package/open-sse/mcp-server/tools/memoryTools.js +118 -0
  228. package/open-sse/mcp-server/tools/notionTools.js +101 -0
  229. package/open-sse/mcp-server/tools/obsidianTools.js +307 -0
  230. package/open-sse/mcp-server/tools/pickFastestModel.js +223 -0
  231. package/open-sse/mcp-server/tools/pluginTools.js +181 -0
  232. package/open-sse/mcp-server/tools/poolTools.js +139 -0
  233. package/open-sse/mcp-server/tools/skillTools.js +113 -0
  234. package/open-sse/package.json +10 -0
  235. package/open-sse/providers/REGISTRY_TEMPLATE.js +98 -0
  236. package/open-sse/providers/capabilities.js +293 -0
  237. package/open-sse/providers/index.js +51 -0
  238. package/open-sse/providers/models/helpers.js +20 -0
  239. package/open-sse/providers/models/namePatterns.js +33 -0
  240. package/open-sse/providers/models/schema.js +40 -0
  241. package/open-sse/providers/pricing.js +308 -0
  242. package/open-sse/providers/registry/alicode-intl.js +30 -0
  243. package/open-sse/providers/registry/alicode.js +31 -0
  244. package/open-sse/providers/registry/anthropic.js +37 -0
  245. package/open-sse/providers/registry/antigravity.js +81 -0
  246. package/open-sse/providers/registry/assemblyai.js +38 -0
  247. package/open-sse/providers/registry/aws-polly.js +45 -0
  248. package/open-sse/providers/registry/azure.js +21 -0
  249. package/open-sse/providers/registry/black-forest-labs.js +32 -0
  250. package/open-sse/providers/registry/blackbox.js +41 -0
  251. package/open-sse/providers/registry/brave-search.js +35 -0
  252. package/open-sse/providers/registry/byteplus.js +35 -0
  253. package/open-sse/providers/registry/cartesia.js +36 -0
  254. package/open-sse/providers/registry/cerebras.js +31 -0
  255. package/open-sse/providers/registry/chutes.js +24 -0
  256. package/open-sse/providers/registry/claude.js +87 -0
  257. package/open-sse/providers/registry/cline.js +51 -0
  258. package/open-sse/providers/registry/clinepass.js +57 -0
  259. package/open-sse/providers/registry/cloudflare-ai.js +55 -0
  260. package/open-sse/providers/registry/codebuddy-cn.js +77 -0
  261. package/open-sse/providers/registry/codex.js +100 -0
  262. package/open-sse/providers/registry/cohere.js +27 -0
  263. package/open-sse/providers/registry/comfyui.js +20 -0
  264. package/open-sse/providers/registry/commandcode.js +43 -0
  265. package/open-sse/providers/registry/coqui.js +30 -0
  266. package/open-sse/providers/registry/cursor.js +58 -0
  267. package/open-sse/providers/registry/deepgram.js +33 -0
  268. package/open-sse/providers/registry/deepseek.js +51 -0
  269. package/open-sse/providers/registry/digitalocean.js +92 -0
  270. package/open-sse/providers/registry/edge-tts.js +24 -0
  271. package/open-sse/providers/registry/elevenlabs.js +35 -0
  272. package/open-sse/providers/registry/exa.js +50 -0
  273. package/open-sse/providers/registry/fal-ai.js +34 -0
  274. package/open-sse/providers/registry/featherless.js +34 -0
  275. package/open-sse/providers/registry/firecrawl.js +34 -0
  276. package/open-sse/providers/registry/fireworks.js +29 -0
  277. package/open-sse/providers/registry/gemini-cli.js +58 -0
  278. package/open-sse/providers/registry/gemini.js +83 -0
  279. package/open-sse/providers/registry/github.js +88 -0
  280. package/open-sse/providers/registry/gitlab.js +32 -0
  281. package/open-sse/providers/registry/glm-cn.js +35 -0
  282. package/open-sse/providers/registry/glm.js +58 -0
  283. package/open-sse/providers/registry/google-pse.js +35 -0
  284. package/open-sse/providers/registry/google-tts.js +24 -0
  285. package/open-sse/providers/registry/grok-cli.js +86 -0
  286. package/open-sse/providers/registry/grok-web.js +39 -0
  287. package/open-sse/providers/registry/groq.js +37 -0
  288. package/open-sse/providers/registry/huggingface.js +34 -0
  289. package/open-sse/providers/registry/hyperbolic.js +35 -0
  290. package/open-sse/providers/registry/ibm-bob.js +27 -0
  291. package/open-sse/providers/registry/iflow.js +52 -0
  292. package/open-sse/providers/registry/index.js +210 -0
  293. package/open-sse/providers/registry/inworld.js +36 -0
  294. package/open-sse/providers/registry/jina-ai.js +42 -0
  295. package/open-sse/providers/registry/jina-reader.js +34 -0
  296. package/open-sse/providers/registry/kilocode.js +51 -0
  297. package/open-sse/providers/registry/kimchi.js +49 -0
  298. package/open-sse/providers/registry/kimi-coding.js +65 -0
  299. package/open-sse/providers/registry/kimi.js +56 -0
  300. package/open-sse/providers/registry/kiro.js +115 -0
  301. package/open-sse/providers/registry/linkup.js +34 -0
  302. package/open-sse/providers/registry/local-device.js +24 -0
  303. package/open-sse/providers/registry/mimo-free.js +24 -0
  304. package/open-sse/providers/registry/minimax-cn.js +76 -0
  305. package/open-sse/providers/registry/minimax.js +83 -0
  306. package/open-sse/providers/registry/mistral.js +34 -0
  307. package/open-sse/providers/registry/mmf.js +19 -0
  308. package/open-sse/providers/registry/nanobanana.js +35 -0
  309. package/open-sse/providers/registry/nebius.js +27 -0
  310. package/open-sse/providers/registry/nvidia.js +43 -0
  311. package/open-sse/providers/registry/ollama-local.js +19 -0
  312. package/open-sse/providers/registry/ollama.js +36 -0
  313. package/open-sse/providers/registry/openai.js +84 -0
  314. package/open-sse/providers/registry/opencode-go.js +41 -0
  315. package/open-sse/providers/registry/opencode.js +25 -0
  316. package/open-sse/providers/registry/openrouter.js +60 -0
  317. package/open-sse/providers/registry/perplexity-agent.js +49 -0
  318. package/open-sse/providers/registry/perplexity-web.js +33 -0
  319. package/open-sse/providers/registry/perplexity.js +37 -0
  320. package/open-sse/providers/registry/playht.js +36 -0
  321. package/open-sse/providers/registry/qoder.js +54 -0
  322. package/open-sse/providers/registry/qwen.js +33 -0
  323. package/open-sse/providers/registry/recraft.js +24 -0
  324. package/open-sse/providers/registry/runwayml.js +30 -0
  325. package/open-sse/providers/registry/sdwebui.js +20 -0
  326. package/open-sse/providers/registry/searchapi.js +35 -0
  327. package/open-sse/providers/registry/searxng.js +35 -0
  328. package/open-sse/providers/registry/serper.js +35 -0
  329. package/open-sse/providers/registry/siliconflow.js +39 -0
  330. package/open-sse/providers/registry/stability-ai.js +31 -0
  331. package/open-sse/providers/registry/tavily.js +50 -0
  332. package/open-sse/providers/registry/together.js +31 -0
  333. package/open-sse/providers/registry/topaz.js +19 -0
  334. package/open-sse/providers/registry/tortoise.js +30 -0
  335. package/open-sse/providers/registry/venice.js +56 -0
  336. package/open-sse/providers/registry/vercel-ai-gateway.js +41 -0
  337. package/open-sse/providers/registry/vertex-partner.js +29 -0
  338. package/open-sse/providers/registry/vertex.js +32 -0
  339. package/open-sse/providers/registry/volcengine-ark.js +35 -0
  340. package/open-sse/providers/registry/voyage-ai.js +30 -0
  341. package/open-sse/providers/registry/xai.js +45 -0
  342. package/open-sse/providers/registry/xiaomi-mimo.js +46 -0
  343. package/open-sse/providers/registry/xiaomi-tokenplan.js +63 -0
  344. package/open-sse/providers/registry/youcom.js +35 -0
  345. package/open-sse/providers/schema.js +76 -0
  346. package/open-sse/providers/shared.js +74 -0
  347. package/open-sse/providers/thinkingLevels.js +48 -0
  348. package/open-sse/rtk/applyFilter.js +15 -0
  349. package/open-sse/rtk/autodetect.js +111 -0
  350. package/open-sse/rtk/caveman.js +100 -0
  351. package/open-sse/rtk/cavemanPrompts.js +78 -0
  352. package/open-sse/rtk/constants.js +55 -0
  353. package/open-sse/rtk/filters/buildOutput.js +127 -0
  354. package/open-sse/rtk/filters/dedupLog.js +44 -0
  355. package/open-sse/rtk/filters/find.js +50 -0
  356. package/open-sse/rtk/filters/gitDiff.js +92 -0
  357. package/open-sse/rtk/filters/gitLog.js +99 -0
  358. package/open-sse/rtk/filters/gitStatus.js +117 -0
  359. package/open-sse/rtk/filters/grep.js +48 -0
  360. package/open-sse/rtk/filters/ls.js +79 -0
  361. package/open-sse/rtk/filters/readNumbered.js +27 -0
  362. package/open-sse/rtk/filters/searchList.js +52 -0
  363. package/open-sse/rtk/filters/smartTruncate.js +15 -0
  364. package/open-sse/rtk/filters/tree.js +32 -0
  365. package/open-sse/rtk/headroom.js +215 -0
  366. package/open-sse/rtk/index.js +155 -0
  367. package/open-sse/rtk/paleo.js +47 -0
  368. package/open-sse/rtk/ponytail.js +9 -0
  369. package/open-sse/rtk/ponytailPrompt.js +52 -0
  370. package/open-sse/rtk/ponytailPrompts.js +76 -0
  371. package/open-sse/rtk/pxpipe.js +104 -0
  372. package/open-sse/rtk/registry.js +38 -0
  373. package/open-sse/rtk/systemInject.js +98 -0
  374. package/open-sse/services/accountFallback.js +323 -0
  375. package/open-sse/services/antigravityHeaders.js +91 -0
  376. package/open-sse/services/antigravityVersion.js +154 -0
  377. package/open-sse/services/clinepassModels.js +63 -0
  378. package/open-sse/services/codexQuotaFetcher.js +312 -0
  379. package/open-sse/services/codexVerbosity.js +30 -0
  380. package/open-sse/services/combo/context.js +12 -0
  381. package/open-sse/services/combo/fingerprintExpansion.js +51 -0
  382. package/open-sse/services/combo/headroomRanking.js +28 -0
  383. package/open-sse/services/combo/quotaExhaustionCutoff.js +87 -0
  384. package/open-sse/services/combo/quotaScoring.js +226 -0
  385. package/open-sse/services/combo/quotaShareConcurrency.js +25 -0
  386. package/open-sse/services/combo/quotaShareInflight.js +50 -0
  387. package/open-sse/services/combo/quotaShareStrategy.js +130 -0
  388. package/open-sse/services/combo/resolveAutoStrategy.js +231 -0
  389. package/open-sse/services/combo/responseValidation.js +140 -0
  390. package/open-sse/services/combo/runtimeUnits.js +195 -0
  391. package/open-sse/services/combo/sessionStickiness.js +128 -0
  392. package/open-sse/services/combo/shadowRouting.js +131 -0
  393. package/open-sse/services/combo/targetExhaustion.js +75 -0
  394. package/open-sse/services/combo/targetSorters.js +126 -0
  395. package/open-sse/services/combo/targetTimeoutRunner.js +65 -0
  396. package/open-sse/services/combo/validateQuality.js +271 -0
  397. package/open-sse/services/combo.js +571 -0
  398. package/open-sse/services/comboAgentMiddleware.js +91 -0
  399. package/open-sse/services/comboConfig.js +153 -0
  400. package/open-sse/services/comboManifestMetrics.js +10 -0
  401. package/open-sse/services/comboMetrics.js +278 -0
  402. package/open-sse/services/compact.js +71 -0
  403. package/open-sse/services/copilotModels.js +155 -0
  404. package/open-sse/services/emergencyFallback.js +109 -0
  405. package/open-sse/services/errorClassifier.js +190 -0
  406. package/open-sse/services/evalRouting.js +201 -0
  407. package/open-sse/services/freeWebSearch.js +4 -0
  408. package/open-sse/services/fusion.js +223 -0
  409. package/open-sse/services/intentClassifier.js +631 -0
  410. package/open-sse/services/kimchiModels.js +176 -0
  411. package/open-sse/services/kiroModels.js +332 -0
  412. package/open-sse/services/model.js +136 -0
  413. package/open-sse/services/modelCapabilities.js +5 -0
  414. package/open-sse/services/modelDeprecation.js +101 -0
  415. package/open-sse/services/modelFamilyFallback.js +166 -0
  416. package/open-sse/services/oauthCredentialManager.js +156 -0
  417. package/open-sse/services/pipeline.js +107 -0
  418. package/open-sse/services/projectId.js +306 -0
  419. package/open-sse/services/provider.js +169 -0
  420. package/open-sse/services/providerCooldownTracker.js +94 -0
  421. package/open-sse/services/providerDefaultRateLimit.js +11 -0
  422. package/open-sse/services/proxyAutoSelector.js +24 -0
  423. package/open-sse/services/qoderModels.js +214 -0
  424. package/open-sse/services/quotaFetchThrottle.js +103 -0
  425. package/open-sse/services/quotaMonitor.js +310 -0
  426. package/open-sse/services/quotaPreflight.js +266 -0
  427. package/open-sse/services/rateLimitManager/headers.js +56 -0
  428. package/open-sse/services/rateLimitManager.js +616 -0
  429. package/open-sse/services/rateLimitSemaphore.js +112 -0
  430. package/open-sse/services/responsesInputSanitizer.js +99 -0
  431. package/open-sse/services/slidingWindowLimiter.js +44 -0
  432. package/open-sse/services/streamRecovery.js +355 -0
  433. package/open-sse/services/taskAwareRouter.js +227 -0
  434. package/open-sse/services/taskAwareRouting.js +332 -0
  435. package/open-sse/services/thinkingBudget.js +247 -0
  436. package/open-sse/services/tokenRefresh/dedup.js +31 -0
  437. package/open-sse/services/tokenRefresh/providers.js +624 -0
  438. package/open-sse/services/tokenRefresh.js +254 -0
  439. package/open-sse/services/usage/claude.js +147 -0
  440. package/open-sse/services/usage/codebuddy-cn.js +138 -0
  441. package/open-sse/services/usage/codex.js +267 -0
  442. package/open-sse/services/usage/github.js +100 -0
  443. package/open-sse/services/usage/google.js +241 -0
  444. package/open-sse/services/usage/grok-cli.js +274 -0
  445. package/open-sse/services/usage/kiro.js +188 -0
  446. package/open-sse/services/usage/minimax.js +234 -0
  447. package/open-sse/services/usage/misc.js +288 -0
  448. package/open-sse/services/usage/shared.js +70 -0
  449. package/open-sse/services/usage.js +62 -0
  450. package/open-sse/services/usageDb.js +2 -0
  451. package/open-sse/services/webSearchRouting.js +25 -0
  452. package/open-sse/services/wildcardRouter.js +59 -0
  453. package/open-sse/shared/clineAuth.js +37 -0
  454. package/open-sse/shared/machineId.js +19 -0
  455. package/open-sse/shared/qoder/constants.js +64 -0
  456. package/open-sse/shared/qoder/cosy.js +175 -0
  457. package/open-sse/shared/qoder/encoding.js +55 -0
  458. package/open-sse/transformer/responsesTransformer.js +439 -0
  459. package/open-sse/transformer/streamToJsonConverter.js +103 -0
  460. package/open-sse/translator/concerns/chunk.js +11 -0
  461. package/open-sse/translator/concerns/finishReason.js +63 -0
  462. package/open-sse/translator/concerns/image.js +124 -0
  463. package/open-sse/translator/concerns/json.js +5 -0
  464. package/open-sse/translator/concerns/message.js +7 -0
  465. package/open-sse/translator/concerns/modality.js +155 -0
  466. package/open-sse/translator/concerns/paramSupport.js +75 -0
  467. package/open-sse/translator/concerns/prefetch.js +96 -0
  468. package/open-sse/translator/concerns/reasoning.js +24 -0
  469. package/open-sse/translator/concerns/thinking.js +53 -0
  470. package/open-sse/translator/concerns/thinkingUnified.js +329 -0
  471. package/open-sse/translator/concerns/toolCall.js +153 -0
  472. package/open-sse/translator/concerns/usage.js +69 -0
  473. package/open-sse/translator/formats/claude.js +368 -0
  474. package/open-sse/translator/formats/gemini.js +380 -0
  475. package/open-sse/translator/formats/maxTokens.js +34 -0
  476. package/open-sse/translator/formats/openai.js +134 -0
  477. package/open-sse/translator/formats/responsesApi.js +141 -0
  478. package/open-sse/translator/formats.js +36 -0
  479. package/open-sse/translator/helpers/claudeHelper.js +216 -0
  480. package/open-sse/translator/helpers/geminiHelper.js +372 -0
  481. package/open-sse/translator/helpers/imageHelper.js +34 -0
  482. package/open-sse/translator/helpers/maxTokensHelper.js +27 -0
  483. package/open-sse/translator/helpers/openaiHelper.js +130 -0
  484. package/open-sse/translator/helpers/responsesApiHelper.js +139 -0
  485. package/open-sse/translator/helpers/toolCallHelper.js +148 -0
  486. package/open-sse/translator/index.js +252 -0
  487. package/open-sse/translator/request/antigravity-to-openai.js +242 -0
  488. package/open-sse/translator/request/claude-to-kiro.js +478 -0
  489. package/open-sse/translator/request/claude-to-openai.js +263 -0
  490. package/open-sse/translator/request/gemini-to-openai.js +152 -0
  491. package/open-sse/translator/request/openai-responses.js +385 -0
  492. package/open-sse/translator/request/openai-to-claude.js +383 -0
  493. package/open-sse/translator/request/openai-to-commandcode.js +176 -0
  494. package/open-sse/translator/request/openai-to-cursor.js +185 -0
  495. package/open-sse/translator/request/openai-to-gemini.js +442 -0
  496. package/open-sse/translator/request/openai-to-kiro.js +607 -0
  497. package/open-sse/translator/request/openai-to-kiro.old.js +278 -0
  498. package/open-sse/translator/request/openai-to-ollama.js +195 -0
  499. package/open-sse/translator/request/openai-to-vertex.js +42 -0
  500. package/open-sse/translator/response/claude-to-openai.js +195 -0
  501. package/open-sse/translator/response/commandcode-to-openai.js +188 -0
  502. package/open-sse/translator/response/cursor-to-openai.js +30 -0
  503. package/open-sse/translator/response/gemini-to-openai.js +147 -0
  504. package/open-sse/translator/response/kiro-to-claude.js +261 -0
  505. package/open-sse/translator/response/kiro-to-openai.js +160 -0
  506. package/open-sse/translator/response/ollama-to-openai.js +134 -0
  507. package/open-sse/translator/response/openai-responses.js +535 -0
  508. package/open-sse/translator/response/openai-to-antigravity.js +123 -0
  509. package/open-sse/translator/response/openai-to-claude.js +265 -0
  510. package/open-sse/translator/schema/blocks.js +43 -0
  511. package/open-sse/translator/schema/defaults.js +7 -0
  512. package/open-sse/translator/schema/finishReasons.js +27 -0
  513. package/open-sse/translator/schema/index.js +8 -0
  514. package/open-sse/translator/schema/roles.js +16 -0
  515. package/open-sse/utils/agentGoalPolicy.js +85 -0
  516. package/open-sse/utils/aiSdkCompat.js +75 -0
  517. package/open-sse/utils/bypassHandler.js +298 -0
  518. package/open-sse/utils/cacheControlPolicy.js +189 -0
  519. package/open-sse/utils/claudeCloaking.js +155 -0
  520. package/open-sse/utils/claudeHeaderCache.js +70 -0
  521. package/open-sse/utils/claudeSignature.js +41 -0
  522. package/open-sse/utils/clientDetector.js +63 -0
  523. package/open-sse/utils/codebuddySanitizer.js +96 -0
  524. package/open-sse/utils/composerToolCalls.js +158 -0
  525. package/open-sse/utils/cors.js +13 -0
  526. package/open-sse/utils/cursorChecksum.js +149 -0
  527. package/open-sse/utils/cursorImages.js +224 -0
  528. package/open-sse/utils/cursorProtobuf.js +904 -0
  529. package/open-sse/utils/cursorVersionDetector.js +55 -0
  530. package/open-sse/utils/debugLog.js +14 -0
  531. package/open-sse/utils/diagnostics.js +143 -0
  532. package/open-sse/utils/error.js +164 -0
  533. package/open-sse/utils/estimateSize.js +33 -0
  534. package/open-sse/utils/finishReason.js +32 -0
  535. package/open-sse/utils/flattenToolHistory.js +68 -0
  536. package/open-sse/utils/headers.js +36 -0
  537. package/open-sse/utils/heapPressure.js +35 -0
  538. package/open-sse/utils/jsonToSse.js +125 -0
  539. package/open-sse/utils/keepaliveThreshold.js +40 -0
  540. package/open-sse/utils/logger.js +104 -0
  541. package/open-sse/utils/noThinkingAlias.js +74 -0
  542. package/open-sse/utils/number.js +7 -0
  543. package/open-sse/utils/ollamaTransform.js +85 -0
  544. package/open-sse/utils/opencodeHeaders.js +47 -0
  545. package/open-sse/utils/progressTracker.js +81 -0
  546. package/open-sse/utils/providerRequestLogging.js +219 -0
  547. package/open-sse/utils/proxyFetch.js +369 -0
  548. package/open-sse/utils/reasoningContentInjector.js +79 -0
  549. package/open-sse/utils/reasoningFields.js +70 -0
  550. package/open-sse/utils/requestLogger.js +260 -0
  551. package/open-sse/utils/responsesInputNormalization.js +92 -0
  552. package/open-sse/utils/responsesStatePolicy.js +52 -0
  553. package/open-sse/utils/responsesStreamHelpers.js +49 -0
  554. package/open-sse/utils/sessionManager.js +240 -0
  555. package/open-sse/utils/sleep.js +6 -0
  556. package/open-sse/utils/sse.js +14 -0
  557. package/open-sse/utils/sseConstants.js +23 -0
  558. package/open-sse/utils/sseHeartbeat.js +104 -0
  559. package/open-sse/utils/stream.js +517 -0
  560. package/open-sse/utils/streamFailureFinalization.js +134 -0
  561. package/open-sse/utils/streamHandler.js +250 -0
  562. package/open-sse/utils/streamHelpers.js +137 -0
  563. package/open-sse/utils/textualToolCall.js +104 -0
  564. package/open-sse/utils/thinkCloseMarker.js +72 -0
  565. package/open-sse/utils/thinkTagParser.js +146 -0
  566. package/open-sse/utils/toolCallArguments.js +12 -0
  567. package/open-sse/utils/toolDeduper.js +49 -0
  568. package/open-sse/utils/toolSources.js +31 -0
  569. package/open-sse/utils/upstreamResponseHeaders.js +25 -0
  570. package/open-sse/utils/urlSanitize.js +15 -0
  571. package/open-sse/utils/usageTracking.js +347 -0
  572. package/package.json +1 -1
@@ -0,0 +1,69 @@
1
+ import { z } from "zod";
2
+ import { getCatalog, getSkillById, filterCatalog, computeCoverage, fetchSkillMarkdown } from '../../../dist/lib/agentSkills/catalog.js';
3
+ const AgentSkillsListSchema = z.object({
4
+ category: z.enum(["api", "cli"]).optional().describe("Filter by category: 'api' or 'cli'"),
5
+ area: z.string().optional().describe("Filter by area (e.g. 'providers', 'models', 'cli-serve')")
6
+ });
7
+ const AgentSkillsGetSchema = z.object({
8
+ id: z.string().describe("Canonical skill ID (e.g. 'omni-providers', 'cli-serve')")
9
+ });
10
+ const AgentSkillsCoverageSchema = z.object({});
11
+ const agentSkillTools = {
12
+ omniroute_agent_skills_list: {
13
+ name: "omniroute_agent_skills_list",
14
+ description: "List OmniRoute agent skills with optional filtering by category (api/cli) or area. Returns skill metadata including id, name, description, endpoints/commands, and URLs.",
15
+ inputSchema: AgentSkillsListSchema,
16
+ handler: async (args) => {
17
+ const skills = args.category || args.area ? filterCatalog({ category: args.category, area: args.area }) : getCatalog();
18
+ return {
19
+ skills: skills.map((s) => ({
20
+ id: s.id,
21
+ name: s.name,
22
+ description: s.description,
23
+ category: s.category,
24
+ area: s.area,
25
+ endpoints: s.endpoints,
26
+ cliCommands: s.cliCommands,
27
+ icon: s.icon,
28
+ isEntry: s.isEntry,
29
+ isNew: s.isNew,
30
+ rawUrl: s.rawUrl,
31
+ githubUrl: s.githubUrl
32
+ })),
33
+ count: skills.length,
34
+ coverage: computeCoverage()
35
+ };
36
+ }
37
+ },
38
+ omniroute_agent_skills_get: {
39
+ name: "omniroute_agent_skills_get",
40
+ description: "Get detailed metadata and SKILL.md markdown for a single agent skill by its canonical ID. Returns all skill fields plus the raw markdown content.",
41
+ inputSchema: AgentSkillsGetSchema,
42
+ handler: async (args) => {
43
+ const skill = getSkillById(args.id);
44
+ if (!skill) {
45
+ throw new Error(`Skill not found: ${args.id}`);
46
+ }
47
+ const markdown = await fetchSkillMarkdown(args.id);
48
+ return {
49
+ ...skill,
50
+ markdown
51
+ };
52
+ }
53
+ },
54
+ omniroute_agent_skills_coverage: {
55
+ name: "omniroute_agent_skills_coverage",
56
+ description: "Returns the current SKILL.md coverage stats: how many of the 22 API skills and 20 CLI skills have generated SKILL.md files on the filesystem vs the catalog total.",
57
+ inputSchema: AgentSkillsCoverageSchema,
58
+ handler: async (_args) => {
59
+ const coverage = computeCoverage();
60
+ return coverage;
61
+ }
62
+ }
63
+ };
64
+ export {
65
+ AgentSkillsCoverageSchema,
66
+ AgentSkillsGetSchema,
67
+ AgentSkillsListSchema,
68
+ agentSkillTools
69
+ };
@@ -0,0 +1,309 @@
1
+ import { logToolCall } from "../audit.ts";
2
+ import {
3
+ getCompressionSettings,
4
+ updateCompressionSettings
5
+ } from '../../../dist/lib/db/compression.ts.js';
6
+ import { getCompressionAnalyticsSummary } from '../../../dist/lib/db/compressionAnalytics.ts.js';
7
+ import { getCacheStatsSummary } from '../../../dist/lib/db/compressionCacheStats.ts.js';
8
+ import { listCompressionCombos } from '../../../dist/lib/db/compressionCombos.ts.js';
9
+ import {
10
+ getMcpDescriptionCompressionStats,
11
+ snapshotMcpDescriptionCompressionStats
12
+ } from "../descriptionCompressor.ts";
13
+ async function handleCompressionStatus(args, extra) {
14
+ const start = Date.now();
15
+ try {
16
+ const settings = await getCompressionSettings();
17
+ await snapshotMcpDescriptionCompressionStats();
18
+ const analyticsSummary = getCompressionAnalyticsSummary();
19
+ const mcpDescriptionStats = getMcpDescriptionCompressionStats();
20
+ const cacheStats = getCacheStatsSummary();
21
+ const result = {
22
+ enabled: settings.enabled,
23
+ strategy: settings.defaultMode || "standard",
24
+ settings: {
25
+ maxTokens: settings.autoTriggerTokens,
26
+ autoTriggerMode: settings.autoTriggerMode ?? "lite",
27
+ targetRatio: 0.7,
28
+ // Default target ratio
29
+ preserveSystemPrompt: settings.preserveSystemPrompt,
30
+ mcpDescriptionCompressionEnabled: settings.mcpDescriptionCompressionEnabled !== false
31
+ },
32
+ analytics: {
33
+ totalRequests: analyticsSummary.totalRequests,
34
+ compressedRequests: Object.values(analyticsSummary.byMode ?? {}).reduce(
35
+ (sum, mode) => sum + mode.count,
36
+ 0
37
+ ),
38
+ tokensSaved: analyticsSummary.totalTokensSaved,
39
+ avgCompressionRatio: analyticsSummary.avgSavingsPct,
40
+ byMode: analyticsSummary.byMode ?? {},
41
+ byEngine: analyticsSummary.byEngine ?? {},
42
+ byCompressionCombo: analyticsSummary.byCompressionCombo ?? {},
43
+ validationFallbacks: analyticsSummary.validationFallbacks,
44
+ requestsWithReceipts: analyticsSummary.realUsage.requestsWithReceipts,
45
+ realUsage: analyticsSummary.realUsage,
46
+ mcpDescriptionCompression: {
47
+ descriptionsCompressed: mcpDescriptionStats.descriptionsCompressed,
48
+ charsBefore: mcpDescriptionStats.charsBefore,
49
+ charsAfter: mcpDescriptionStats.charsAfter,
50
+ charsSaved: mcpDescriptionStats.charsSaved,
51
+ estimatedTokensSaved: mcpDescriptionStats.estimatedTokensSaved,
52
+ persistedEstimatedTokensSaved: analyticsSummary.mcpDescriptionCompression.estimatedTokensSaved,
53
+ persistedSnapshots: analyticsSummary.mcpDescriptionCompression.snapshots,
54
+ source: "mcp_metadata_estimate",
55
+ notProviderUsage: true
56
+ }
57
+ },
58
+ cacheStats: cacheStats ? {
59
+ hits: Math.round(cacheStats.cacheHitRate * (cacheStats.totalRequests || 1)),
60
+ misses: Math.round((1 - cacheStats.cacheHitRate) * (cacheStats.totalRequests || 1)),
61
+ hitRate: `${(cacheStats.cacheHitRate * 100).toFixed(2)}%`,
62
+ tokensSaved: Math.round(cacheStats.avgNetSavings)
63
+ } : null
64
+ };
65
+ const duration = Date.now() - start;
66
+ await logToolCall("omniroute_compression_status", args, result, duration, true);
67
+ return result;
68
+ } catch (error) {
69
+ const duration = Date.now() - start;
70
+ const errorMessage = error instanceof Error ? error.message : String(error);
71
+ await logToolCall(
72
+ "omniroute_compression_status",
73
+ args,
74
+ { error: errorMessage },
75
+ duration,
76
+ false,
77
+ "ERROR"
78
+ );
79
+ throw error;
80
+ }
81
+ }
82
+ async function handleCompressionConfigure(args, extra) {
83
+ const start = Date.now();
84
+ try {
85
+ const updates = {};
86
+ if (args.enabled !== void 0) {
87
+ updates.enabled = args.enabled;
88
+ }
89
+ if (args.strategy !== void 0) {
90
+ updates.defaultMode = args.strategy;
91
+ }
92
+ if (args.autoTriggerMode !== void 0) {
93
+ updates.autoTriggerMode = args.autoTriggerMode;
94
+ }
95
+ if (args.maxTokens !== void 0) {
96
+ updates.autoTriggerTokens = args.maxTokens;
97
+ }
98
+ if (args.preserveSystemPrompt !== void 0) {
99
+ updates.preserveSystemPrompt = args.preserveSystemPrompt;
100
+ }
101
+ if (args.mcpDescriptionCompressionEnabled !== void 0) {
102
+ updates.mcpDescriptionCompressionEnabled = args.mcpDescriptionCompressionEnabled;
103
+ }
104
+ const settings = await updateCompressionSettings(updates);
105
+ const result = {
106
+ success: true,
107
+ updated: updates,
108
+ settings: {
109
+ enabled: settings.enabled,
110
+ strategy: settings.defaultMode || "standard",
111
+ autoTriggerMode: settings.autoTriggerMode ?? "lite",
112
+ maxTokens: settings.autoTriggerTokens,
113
+ targetRatio: 0.7,
114
+ // Default target ratio
115
+ preserveSystemPrompt: settings.preserveSystemPrompt,
116
+ mcpDescriptionCompressionEnabled: settings.mcpDescriptionCompressionEnabled !== false
117
+ }
118
+ };
119
+ const duration = Date.now() - start;
120
+ await logToolCall("omniroute_compression_configure", args, result, duration, true);
121
+ return result;
122
+ } catch (error) {
123
+ const duration = Date.now() - start;
124
+ const errorMessage = error instanceof Error ? error.message : String(error);
125
+ await logToolCall(
126
+ "omniroute_compression_configure",
127
+ args,
128
+ { error: errorMessage },
129
+ duration,
130
+ false,
131
+ "ERROR"
132
+ );
133
+ throw error;
134
+ }
135
+ }
136
+ import { z } from "zod";
137
+ import {
138
+ compressionStatusInput,
139
+ compressionConfigureInput,
140
+ setCompressionEngineInput,
141
+ listCompressionCombosInput,
142
+ compressionComboStatsInput
143
+ } from "../schemas/tools.ts";
144
+ import { handleCcrRetrieve } from "../../services/compression/engines/ccr/index.ts";
145
+ import {
146
+ listRtkCommandSamples,
147
+ discoverRepeatedNoise,
148
+ suggestFilter,
149
+ commandToId
150
+ } from "../../services/compression/engines/rtk/index.ts";
151
+ import { resolveCallerScopeContext } from "../scopeEnforcement.ts";
152
+ import { resolveMcpCallerApiKeyId } from "../mcpCallerIdentity.ts";
153
+ const ccrRetrieveInput = z.object({
154
+ hash: z.string().min(6).max(64).describe("24-hex content hash from a [CCR retrieve hash=<hash>] marker"),
155
+ mode: z.enum(["full", "head", "tail", "lines", "grep", "stats"]).optional().describe("Retrieval mode: full (default) | head | tail | lines | grep | stats"),
156
+ n: z.number().int().positive().max(1e4).optional().describe("head/tail: number of lines"),
157
+ start: z.number().int().positive().optional().describe("lines: 1-indexed inclusive start"),
158
+ end: z.number().int().positive().optional().describe("lines: 1-indexed inclusive end"),
159
+ pattern: z.string().max(512).optional().describe("grep: regex (validated safe; ReDoS-rejected)"),
160
+ unique: z.boolean().optional().describe("grep: dedupe matching lines")
161
+ });
162
+ async function handleSetCompressionEngine(args) {
163
+ const updates = { enabled: true };
164
+ if (args.engine) {
165
+ updates.defaultMode = args.engine === "caveman" ? "standard" : args.engine;
166
+ if (args.engine === "off") updates.enabled = false;
167
+ }
168
+ if (args.cavemanIntensity) {
169
+ const current = await getCompressionSettings();
170
+ updates.cavemanConfig = {
171
+ ...current.cavemanConfig ?? {},
172
+ intensity: args.cavemanIntensity
173
+ };
174
+ }
175
+ if (args.rtkIntensity) {
176
+ const current = await getCompressionSettings();
177
+ updates.rtkConfig = {
178
+ ...current.rtkConfig ?? {},
179
+ intensity: args.rtkIntensity
180
+ };
181
+ }
182
+ if (args.outputMode !== void 0) {
183
+ const current = await getCompressionSettings();
184
+ updates.cavemanOutputMode = {
185
+ ...current.cavemanOutputMode ?? {},
186
+ enabled: args.outputMode
187
+ };
188
+ }
189
+ const settings = await updateCompressionSettings(updates);
190
+ return { success: true, settings };
191
+ }
192
+ async function handleListCompressionCombos() {
193
+ return { combos: listCompressionCombos() };
194
+ }
195
+ async function handleCompressionComboStats(args) {
196
+ const summary = getCompressionAnalyticsSummary(args.since === "all" ? void 0 : args.since);
197
+ if (!args.comboId) return summary;
198
+ return {
199
+ comboId: args.comboId,
200
+ summary,
201
+ combo: summary.byCompressionCombo[args.comboId] ?? { count: 0, tokensSaved: 0 }
202
+ };
203
+ }
204
+ const rtkDiscoverInput = z.object({
205
+ limit: z.number().int().positive().max(2e3).optional().describe("Max samples to scan (default 500)")
206
+ });
207
+ const rtkLearnInput = z.object({
208
+ command: z.string().min(1).max(500).describe("The command to learn an RTK filter draft for"),
209
+ limit: z.number().int().positive().max(2e3).optional().describe("Max samples to scan (default 500)")
210
+ });
211
+ function resolveSampleLimit(limit) {
212
+ if (!Number.isFinite(limit) || !limit || limit <= 0) return 500;
213
+ return Math.min(2e3, Math.floor(limit));
214
+ }
215
+ async function handleRtkDiscover(args) {
216
+ const start = Date.now();
217
+ const samples = listRtkCommandSamples({ limit: resolveSampleLimit(args.limit) });
218
+ const candidates = discoverRepeatedNoise(samples);
219
+ const result = { sampleCount: samples.length, candidates };
220
+ await logToolCall("omniroute_rtk_discover", args, result, Date.now() - start, true);
221
+ return result;
222
+ }
223
+ async function handleRtkLearn(args) {
224
+ const start = Date.now();
225
+ const command = args.command.trim();
226
+ const targetId = commandToId(command);
227
+ const matching = listRtkCommandSamples({ limit: resolveSampleLimit(args.limit) }).filter(
228
+ (sample) => commandToId(sample.command) === targetId
229
+ );
230
+ const filter = suggestFilter(command, matching);
231
+ const result = { command, sampleCount: matching.length, filter };
232
+ await logToolCall("omniroute_rtk_learn", args, result, Date.now() - start, true);
233
+ return result;
234
+ }
235
+ const compressionTools = {
236
+ omniroute_compression_status: {
237
+ name: "omniroute_compression_status",
238
+ description: "Returns current compression configuration, strategy, analytics summary (requests compressed, tokens saved, avg ratio), and provider-aware cache statistics.",
239
+ scopes: ["read:compression"],
240
+ inputSchema: compressionStatusInput,
241
+ handler: (args) => handleCompressionStatus(args)
242
+ },
243
+ omniroute_compression_configure: {
244
+ name: "omniroute_compression_configure",
245
+ description: "Configure compression settings at runtime. Supports enabling/disabling compression, changing strategy (off/lite/standard/aggressive/ultra/rtk/stacked), adjusting maxTokens threshold, targetRatio, auto-trigger mode, system prompt preservation, and MCP description compression.",
246
+ scopes: ["write:compression"],
247
+ inputSchema: compressionConfigureInput,
248
+ handler: (args) => handleCompressionConfigure(args)
249
+ },
250
+ omniroute_set_compression_engine: {
251
+ name: "omniroute_set_compression_engine",
252
+ description: "Set the active compression engine and Caveman/RTK runtime options.",
253
+ scopes: ["write:compression"],
254
+ inputSchema: setCompressionEngineInput,
255
+ handler: (args) => handleSetCompressionEngine(args)
256
+ },
257
+ omniroute_list_compression_combos: {
258
+ name: "omniroute_list_compression_combos",
259
+ description: "List compression combos and their engine pipelines.",
260
+ scopes: ["read:compression"],
261
+ inputSchema: listCompressionCombosInput,
262
+ handler: (_args) => handleListCompressionCombos()
263
+ },
264
+ omniroute_compression_combo_stats: {
265
+ name: "omniroute_compression_combo_stats",
266
+ description: "Get compression analytics grouped by engine and compression combo.",
267
+ scopes: ["read:compression"],
268
+ inputSchema: compressionComboStatsInput,
269
+ handler: (args) => handleCompressionComboStats(args)
270
+ },
271
+ omniroute_ccr_retrieve: {
272
+ name: "omniroute_ccr_retrieve",
273
+ description: "Retrieve the verbatim content block stored by the CCR compression engine. When a large block is compressed, a marker `[CCR retrieve hash=<24hex> chars=N]` is inserted. Pass the hash from the marker to this tool to get the original text back. Optional `mode` (head/tail/lines/grep/stats) retrieves a slice or summary instead of the whole block; omit for the full block. Scope: read:compression. Always available (sticky-on).",
274
+ scopes: ["read:compression"],
275
+ inputSchema: ccrRetrieveInput,
276
+ handler: async (args, extra) => {
277
+ const apiKeyPrincipal = await resolveMcpCallerApiKeyId();
278
+ if (apiKeyPrincipal) {
279
+ return handleCcrRetrieve(args, apiKeyPrincipal);
280
+ }
281
+ const { callerId } = resolveCallerScopeContext(extra, ["read:compression"]);
282
+ return handleCcrRetrieve(args, callerId === "anonymous" ? void 0 : callerId);
283
+ }
284
+ },
285
+ omniroute_rtk_discover: {
286
+ name: "omniroute_rtk_discover",
287
+ description: "Mine the opt-in RTK raw-output sample store for recurring noise lines and return them as ranked candidates the operator can turn into strip/collapse filters. Read-only; suggestions only. Scope: read:compression.",
288
+ scopes: ["read:compression"],
289
+ inputSchema: rtkDiscoverInput,
290
+ handler: (args) => handleRtkDiscover(args)
291
+ },
292
+ omniroute_rtk_learn: {
293
+ name: "omniroute_rtk_learn",
294
+ description: "Suggest an RTK filter draft for a specific command, learned from that command's captured outputs in the opt-in raw-output sample store. Read-only; returns a draft for the operator to review and save. Scope: read:compression.",
295
+ scopes: ["read:compression"],
296
+ inputSchema: rtkLearnInput,
297
+ handler: (args) => handleRtkLearn(args)
298
+ }
299
+ };
300
+ export {
301
+ compressionTools,
302
+ handleCompressionComboStats,
303
+ handleCompressionConfigure,
304
+ handleCompressionStatus,
305
+ handleListCompressionCombos,
306
+ handleRtkDiscover,
307
+ handleRtkLearn,
308
+ handleSetCompressionEngine
309
+ };
@@ -0,0 +1,134 @@
1
+ import { z } from "zod";
2
+ const gamificationTools = [
3
+ {
4
+ name: "gamification_leaderboard",
5
+ description: "Get leaderboard rankings for a scope (global, weekly, monthly, tokens_shared).",
6
+ scopes: ["read:gamification"],
7
+ inputSchema: z.object({
8
+ scope: z.enum(["global", "weekly", "monthly", "tokens_shared"]).default("global"),
9
+ limit: z.number().min(1).max(100).default(50)
10
+ }),
11
+ handler: async (args) => {
12
+ const { getTopN } = await import('../../../dist/lib/gamification/leaderboard.js');
13
+ const entries = await getTopN(args.scope, args.limit);
14
+ return { entries };
15
+ }
16
+ },
17
+ {
18
+ name: "gamification_rank",
19
+ description: "Get rank for an API key in a leaderboard scope.",
20
+ scopes: ["read:gamification"],
21
+ inputSchema: z.object({
22
+ apiKeyId: z.string(),
23
+ scope: z.enum(["global", "weekly", "monthly", "tokens_shared"]).default("global")
24
+ }),
25
+ handler: async (args) => {
26
+ const { getRank } = await import('../../../dist/lib/gamification/leaderboard.js');
27
+ const rank = await getRank(args.apiKeyId, args.scope);
28
+ return { rank };
29
+ }
30
+ },
31
+ {
32
+ name: "gamification_profile",
33
+ description: "Get XP, level, and badges for an API key.",
34
+ scopes: ["read:gamification"],
35
+ inputSchema: z.object({
36
+ apiKeyId: z.string()
37
+ }),
38
+ handler: async (args) => {
39
+ const { getXp, getBadges } = await import('../../../dist/lib/db/gamification.js');
40
+ const { calculateLevel, getLevelTitle, getLevelTier } = await import('../../../dist/lib/gamification/xp.js');
41
+ const { getStreak } = await import('../../../dist/lib/gamification/streaks.js');
42
+ const xp = getXp(args.apiKeyId);
43
+ const badges = getBadges(args.apiKeyId);
44
+ const streak = await getStreak(args.apiKeyId);
45
+ const level = xp ? calculateLevel(xp.totalXp) : 1;
46
+ return {
47
+ totalXp: xp?.totalXp || 0,
48
+ level,
49
+ title: getLevelTitle(level),
50
+ tier: getLevelTier(level),
51
+ streak: streak.currentStreak,
52
+ longestStreak: streak.longestStreak,
53
+ badges: badges.map((b) => ({ id: b.badgeId, unlockedAt: b.unlockedAt }))
54
+ };
55
+ }
56
+ },
57
+ {
58
+ name: "gamification_badges",
59
+ description: "List all badge definitions or earned badges for an API key.",
60
+ scopes: ["read:gamification"],
61
+ inputSchema: z.object({
62
+ apiKeyId: z.string().optional(),
63
+ category: z.string().optional()
64
+ }),
65
+ handler: async (args) => {
66
+ const { getBadgeDefinitions, getBadges } = await import('../../../dist/lib/db/gamification.js');
67
+ if (args.apiKeyId) {
68
+ const badges = getBadges(args.apiKeyId);
69
+ return { earned: badges };
70
+ }
71
+ const definitions = getBadgeDefinitions(args.category);
72
+ return { definitions };
73
+ }
74
+ },
75
+ {
76
+ name: "gamification_transfer",
77
+ description: "Transfer tokens between API keys.",
78
+ scopes: ["write:gamification"],
79
+ inputSchema: z.object({
80
+ fromApiKeyId: z.string(),
81
+ toApiKeyId: z.string(),
82
+ amount: z.number().positive(),
83
+ reason: z.string().optional()
84
+ }),
85
+ handler: async (args) => {
86
+ const { transferTokens } = await import('../../../dist/lib/gamification/sharing.js');
87
+ const result = await transferTokens(
88
+ args.fromApiKeyId,
89
+ args.toApiKeyId,
90
+ args.amount,
91
+ args.reason
92
+ );
93
+ return result;
94
+ }
95
+ },
96
+ {
97
+ name: "gamification_invite",
98
+ description: "Create an invite token for server connection.",
99
+ scopes: ["write:gamification"],
100
+ inputSchema: z.object({
101
+ apiKeyId: z.string(),
102
+ serverUrl: z.string().optional(),
103
+ maxUses: z.number().positive().default(1)
104
+ }),
105
+ handler: async (args) => {
106
+ const { createInvite } = await import('../../../dist/lib/gamification/invites.js');
107
+ const result = await createInvite(args.apiKeyId, args.serverUrl, args.maxUses);
108
+ return result;
109
+ }
110
+ },
111
+ {
112
+ name: "gamification_servers",
113
+ description: "List connected community servers.",
114
+ scopes: ["read:gamification"],
115
+ inputSchema: z.object({}),
116
+ handler: async () => {
117
+ const { listServers } = await import('../../../dist/lib/gamification/servers.js');
118
+ return { servers: await listServers() };
119
+ }
120
+ },
121
+ {
122
+ name: "gamification_anomalies",
123
+ description: "Get flagged anomalous XP activity (admin only).",
124
+ scopes: ["read:gamification"],
125
+ inputSchema: z.object({}),
126
+ handler: async () => {
127
+ const { getAnomalies } = await import('../../../dist/lib/gamification/antiCheat.js');
128
+ return { anomalies: await getAnomalies() };
129
+ }
130
+ }
131
+ ];
132
+ export {
133
+ gamificationTools
134
+ };
@@ -0,0 +1,102 @@
1
+ import { sanitizeErrorMessage } from "../../utils/error.ts";
2
+ import {
3
+ searchGitHubSkills,
4
+ scanText,
5
+ resolveInstallPath,
6
+ GitHubSkillsSearchSchema,
7
+ GitHubSkillsScanSchema,
8
+ GitHubSkillsInstallSchema
9
+ } from '../../../dist/lib/skills/githubCollector.js';
10
+ async function handleSearch(args) {
11
+ const { repos, errors } = await searchGitHubSkills({
12
+ minStars: args.minStars,
13
+ maxResults: args.maxResults
14
+ });
15
+ let filtered = repos;
16
+ if (args.minScore > 0) filtered = filtered.filter((r) => r.score >= args.minScore);
17
+ if (args.query) {
18
+ const q = args.query.toLowerCase();
19
+ filtered = filtered.filter(
20
+ (r) => r.fullName.toLowerCase().includes(q) || r.description.toLowerCase().includes(q)
21
+ );
22
+ }
23
+ return {
24
+ skills: filtered.map((r) => ({
25
+ fullName: r.fullName,
26
+ stars: r.stars,
27
+ score: r.score,
28
+ description: r.description.slice(0, 200),
29
+ topics: r.topics,
30
+ htmlUrl: r.htmlUrl,
31
+ hasSkillFile: r.hasSkillFile,
32
+ license: r.license
33
+ })),
34
+ total: filtered.length,
35
+ errors: errors.length > 0 ? errors : void 0
36
+ };
37
+ }
38
+ async function handleScan(args) {
39
+ const findings = scanText(args.content, args.repoName);
40
+ return {
41
+ repoName: args.repoName,
42
+ clean: findings.length === 0,
43
+ findings: findings.map((f) => ({
44
+ pattern: f.pattern,
45
+ context: f.context
46
+ }))
47
+ };
48
+ }
49
+ async function handleInstall(args) {
50
+ const results = [];
51
+ const skillName = args.repoName.split("/").pop() || args.repoName;
52
+ for (const target of args.targets) {
53
+ try {
54
+ const dest = resolveInstallPath(target, skillName, args.description);
55
+ results.push({
56
+ target,
57
+ ok: true,
58
+ action: "installed",
59
+ destDir: dest
60
+ });
61
+ } catch (err) {
62
+ results.push({
63
+ target,
64
+ ok: false,
65
+ action: "error",
66
+ error: sanitizeErrorMessage(err.message)
67
+ });
68
+ }
69
+ }
70
+ return {
71
+ repoName: args.repoName,
72
+ skillName,
73
+ results,
74
+ allOk: results.every((r) => r.ok)
75
+ };
76
+ }
77
+ const githubSkillTools = {
78
+ omniroute_github_skills_search: {
79
+ name: "omniroute_github_skills_search",
80
+ description: "Search GitHub for agent skill repositories that contain SKILL.md, CLAUDE.md, .cursorrules, or similar agent configuration files. Returns scored results sorted by relevance. Scores are 0.0\u20131.0 based on stars, name signals, description keywords, and topic tags. Ideal for discovering community agent skills from GitHub.",
81
+ inputSchema: GitHubSkillsSearchSchema,
82
+ scopes: ["read:skills"],
83
+ handler: handleSearch
84
+ },
85
+ omniroute_github_skills_scan: {
86
+ name: "omniroute_github_skills_scan",
87
+ description: "Scan SKILL.md or README content from a GitHub repo for blocked patterns including eval(base64), hardcoded secrets (API keys, passwords, private keys), dangerous function calls (os.system, subprocess.Popen), and other malware indicators. Returns findings with context or 'clean' status.",
88
+ inputSchema: GitHubSkillsScanSchema,
89
+ scopes: ["read:skills"],
90
+ handler: handleScan
91
+ },
92
+ omniroute_github_skills_install: {
93
+ name: "omniroute_github_skills_install",
94
+ description: "Preview or plan the installation of a discovered GitHub skill into one or more agent directories (Hermes: ~/AppData/Local/hermes/skills/, Claude: ~/.claude/skills/, Gemini: ~/.gemini/skills/, OpenCode: ~/.opencode/skills/). Categorizes the skill based on its name and description. Returns the target paths where the skill would be installed.",
95
+ inputSchema: GitHubSkillsInstallSchema,
96
+ scopes: ["read:skills", "write:skills"],
97
+ handler: handleInstall
98
+ }
99
+ };
100
+ export {
101
+ githubSkillTools
102
+ };