@juspay/neurolink 11.15.4 → 11.15.6
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.
- package/CHANGELOG.md +2 -2
- package/dist/cli/parser.js +3 -0
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
## [11.15.
|
|
1
|
+
## [11.15.6](https://github.com/juspay/neurolink/compare/v11.15.5...v11.15.6) (2026-08-22)
|
|
2
2
|
|
|
3
3
|
### Bug Fixes
|
|
4
4
|
|
|
5
|
-
- **(
|
|
5
|
+
- **(docs):** restore the docs MCP server and cover it so it stops regressing ([b097392](https://github.com/juspay/neurolink/commit/b097392c8f8c94c674b81db0369959972d5b8610))
|
|
6
6
|
|
|
7
7
|
## [11.2.3](https://github.com/juspay/neurolink/compare/v11.2.2...v11.2.3) (2026-08-19)
|
|
8
8
|
|
package/dist/cli/parser.js
CHANGED
|
@@ -28,6 +28,7 @@ import { EvaluateCommandFactory } from "./commands/evaluate.js";
|
|
|
28
28
|
import { TaskCommandFactory } from "./commands/task.js";
|
|
29
29
|
import { AutoresearchCommandFactory } from "./commands/autoresearch.js";
|
|
30
30
|
import { voiceServerCommand } from "./commands/voiceServer.js";
|
|
31
|
+
import { DocsCommandFactory } from "./commands/docs.js";
|
|
31
32
|
// Enhanced CLI with Professional UX
|
|
32
33
|
export function initializeCliParser() {
|
|
33
34
|
return (yargs(hideBin(process.argv))
|
|
@@ -153,6 +154,8 @@ export function initializeCliParser() {
|
|
|
153
154
|
})
|
|
154
155
|
// Generate Command (Primary) - Using CLICommandFactory
|
|
155
156
|
.command(CLICommandFactory.createGenerateCommand())
|
|
157
|
+
// Docs MCP Server Command
|
|
158
|
+
.command(DocsCommandFactory.createDocsCommand())
|
|
156
159
|
// Stream Text Command - Using CLICommandFactory
|
|
157
160
|
.command(CLICommandFactory.createStreamCommand())
|
|
158
161
|
// Batch Processing Command - Using CLICommandFactory
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juspay/neurolink",
|
|
3
|
-
"version": "11.15.
|
|
3
|
+
"version": "11.15.6",
|
|
4
4
|
"packageManager": "pnpm@10.15.1",
|
|
5
5
|
"description": "TypeScript AI SDK with 24+ LLM providers behind one consistent API. MCP-native (connect any MCP server), voice TTS/STT/realtime, RAG, agents, memory, context compaction. OpenAI · Anthropic · Gemini · Bedrock · Azure · Ollama · DeepSeek · NVIDIA NIM and more.",
|
|
6
6
|
"author": {
|
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
"// CI tier — fast, no live AI calls, safe for every commit (test:unit; also see the separate provider-safety-net CI job, which runs build + test:providers-mocked + test:provider-structure + test:error-classifier-contract on every PR)": "",
|
|
140
140
|
"test:tool-routing": "npx tsx test/continuous-test-suite-tool-routing.ts",
|
|
141
141
|
"test:tool-routing-semantic": "npx tsx test/continuous-test-suite-tool-routing-semantic.ts",
|
|
142
|
-
"test:unit": "pnpm run test:bugfixes && pnpm run test:mcp:infra && pnpm run test:mcp:spans && pnpm run test:tool-routing && pnpm run test:tool-routing-cli && pnpm run test:tool-dedup && pnpm run test:model-pool && pnpm run test:tool-routing-semantic && pnpm run test:mcp-result-cache && pnpm run test:model-not-found-retryable && pnpm run test:archive:security && pnpm run test:office:security && pnpm run test:vector-chroma && pnpm run test:vector-pgvector && pnpm run test:vector-pinecone && pnpm run test:provider-wiring",
|
|
142
|
+
"test:unit": "pnpm run test:bugfixes && pnpm run test:mcp:infra && pnpm run test:mcp:spans && pnpm run test:tool-routing && pnpm run test:tool-routing-cli && pnpm run test:tool-dedup && pnpm run test:model-pool && pnpm run test:tool-routing-semantic && pnpm run test:mcp-result-cache && pnpm run test:model-not-found-retryable && pnpm run test:archive:security && pnpm run test:office:security && pnpm run test:vector-chroma && pnpm run test:vector-pgvector && pnpm run test:vector-pinecone && pnpm run test:provider-wiring && pnpm run test:docs-mcp",
|
|
143
143
|
"// CI tier — live providers, runs only when API keys are present (test:credentials and test:dynamic make real provider calls when keys are set, so they live here, not in test:unit; test:matrix, a different suite covering the full provider capability matrix, runs nightly via .github/workflows/live-matrix.yml — test:providers itself is still only wired into test:live, not any GitHub Actions workflow)": "",
|
|
144
144
|
"test:live": "pnpm run test:providers && pnpm run test:mcp:http && pnpm run test:mcp:sdk && pnpm run test:mcp:cli && pnpm run test:observability && pnpm run test:context && pnpm run test:memory && pnpm run test:tool-reliability && pnpm run test:evaluation && pnpm run test:autoresearch && pnpm run test:credentials && pnpm run test:dynamic",
|
|
145
145
|
"// CI tier — product output (image/video/TTS/PPT) — costs $$ per run (not wired into any GitHub Actions workflow as of this comment; run manually or add to live-matrix.yml if nightly coverage is needed)": "",
|
|
@@ -210,7 +210,8 @@
|
|
|
210
210
|
"test:bedrock-loop-characterization": "tsx test/continuous-test-suite-bedrock-loop-characterization.ts",
|
|
211
211
|
"test:sagemaker-streaming": "tsx test/continuous-test-suite-sagemaker-streaming.ts",
|
|
212
212
|
"test:anthropic-loop-characterization": "tsx test/continuous-test-suite-anthropic-loop-characterization.ts",
|
|
213
|
-
"test:aistudio-loop-characterization": "tsx test/continuous-test-suite-aistudio-loop-characterization.ts"
|
|
213
|
+
"test:aistudio-loop-characterization": "tsx test/continuous-test-suite-aistudio-loop-characterization.ts",
|
|
214
|
+
"test:docs-mcp": "npx tsx test/continuous-test-suite-docs-mcp.ts"
|
|
214
215
|
},
|
|
215
216
|
"files": [
|
|
216
217
|
"dist",
|
|
@@ -377,6 +378,7 @@
|
|
|
377
378
|
"js-yaml": "^4.3.1",
|
|
378
379
|
"json-schema-to-zod": "^2.7.0",
|
|
379
380
|
"jsonrepair": "^3.14.0",
|
|
381
|
+
"minisearch": "^7.2.0",
|
|
380
382
|
"nanoid": "^5.1.16",
|
|
381
383
|
"ora": "^9.3.0",
|
|
382
384
|
"p-limit": "^7.3.0",
|
|
@@ -601,7 +603,7 @@
|
|
|
601
603
|
"ajv@>=8.0.0 <8.18.0": ">=8.18.0",
|
|
602
604
|
"@grpc/grpc-js@<1.14.4": ">=1.14.4",
|
|
603
605
|
"@protobufjs/utf8@<1.1.1": ">=1.1.1",
|
|
604
|
-
"fast-uri@<3.1.
|
|
606
|
+
"fast-uri@<3.1.5": ">=3.1.5 <4",
|
|
605
607
|
"ip-address@<10.1.1": ">=10.1.1",
|
|
606
608
|
"basic-ftp@<5.2.2": ">=5.2.2",
|
|
607
609
|
"fast-xml-builder@<1.1.7": ">=1.1.7",
|