@juspay/neurolink 7.8.0 → 7.10.0
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 +22 -5
- package/README.md +22 -7
- package/dist/agent/directTools.d.ts +23 -843
- package/dist/agent/directTools.js +1 -3
- package/dist/cli/commands/mcp.js +66 -27
- package/dist/cli/commands/ollama.js +7 -3
- package/dist/cli/commands/sagemaker.js +145 -144
- package/dist/cli/factories/commandFactory.js +10 -6
- package/dist/core/dynamicModels.js +6 -0
- package/dist/core/types.d.ts +15 -4
- package/dist/core/types.js +23 -3
- package/dist/factories/providerFactory.js +10 -1
- package/dist/factories/providerRegistry.js +1 -1
- package/dist/lib/agent/directTools.d.ts +23 -843
- package/dist/lib/agent/directTools.js +1 -3
- package/dist/lib/core/dynamicModels.js +6 -0
- package/dist/lib/core/types.d.ts +15 -4
- package/dist/lib/core/types.js +23 -3
- package/dist/lib/factories/providerFactory.js +10 -1
- package/dist/lib/factories/providerRegistry.js +1 -1
- package/dist/lib/neurolink.d.ts +15 -0
- package/dist/lib/neurolink.js +73 -1
- package/dist/lib/providers/googleVertex.d.ts +4 -0
- package/dist/lib/providers/googleVertex.js +44 -3
- package/dist/lib/providers/sagemaker/client.js +2 -2
- package/dist/lib/sdk/toolRegistration.d.ts +1 -1
- package/dist/lib/sdk/toolRegistration.js +13 -5
- package/dist/lib/utils/providerHealth.js +20 -5
- package/dist/mcp/servers/agent/directToolsServer.js +0 -1
- package/dist/mcp/servers/aiProviders/aiCoreServer.js +0 -1
- package/dist/models/modelResolver.js +0 -1
- package/dist/neurolink.d.ts +15 -0
- package/dist/neurolink.js +73 -1
- package/dist/providers/amazonBedrock.js +2 -2
- package/dist/providers/anthropic.js +2 -2
- package/dist/providers/anthropicBaseProvider.js +2 -2
- package/dist/providers/googleAiStudio.js +2 -3
- package/dist/providers/googleVertex.d.ts +4 -0
- package/dist/providers/googleVertex.js +44 -3
- package/dist/providers/litellm.js +4 -4
- package/dist/providers/ollama.js +1 -2
- package/dist/providers/openAI.js +2 -2
- package/dist/providers/openaiCompatible.js +1 -2
- package/dist/providers/sagemaker/client.js +2 -2
- package/dist/providers/sagemaker/errors.js +1 -1
- package/dist/providers/sagemaker/language-model.js +1 -1
- package/dist/sdk/toolRegistration.d.ts +1 -1
- package/dist/sdk/toolRegistration.js +13 -6
- package/dist/telemetry/telemetryService.js +0 -2
- package/dist/types/tools.js +0 -1
- package/dist/utils/providerHealth.js +20 -5
- package/package.json +43 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,21 +1,38 @@
|
|
|
1
|
-
|
|
1
|
+
## [7.10.0](https://github.com/juspay/neurolink/compare/v7.9.0...v7.10.0) (2025-08-12)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **(build):** implement comprehensive build rule enforcement system ([7648cad](https://github.com/juspay/neurolink/commit/7648cadde1676fa20ef74c555919e036bc559ad5))
|
|
6
|
+
|
|
7
|
+
## [7.9.0](https://github.com/juspay/neurolink/compare/v7.8.0...v7.9.0) (2025-08-11)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
2
10
|
|
|
11
|
+
- **(core):** add EventEmitter functionality for real-time event monitoring ([fd8b6b0](https://github.com/juspay/neurolink/commit/fd8b6b075ca46df4f35a58d26ad6cd4839fe2361))
|
|
3
12
|
|
|
4
13
|
### Bug Fixes
|
|
5
14
|
|
|
6
|
-
|
|
15
|
+
- **(ci):** add semantic-release configuration with dependencies and testing ([d48e274](https://github.com/juspay/neurolink/commit/d48e274bed6473df28403ae440d7109656216307))
|
|
16
|
+
- **(ci):** configure semantic-release to handle ticket prefixes with proper JSON escaping ([6d575dc](https://github.com/juspay/neurolink/commit/6d575dcf90611ad6a9854daff551dade3f06e001))
|
|
17
|
+
- **(ci):** correct JSON escaping in semantic-release configuration ([b9bbe50](https://github.com/juspay/neurolink/commit/b9bbe50461771f82e19cdbbb413ca6af6f28c31d))
|
|
18
|
+
- **(cli):** missing model name in analytics output ([416c5b7](https://github.com/juspay/neurolink/commit/416c5b74745776d1b3742557add4f501669f06f9))
|
|
19
|
+
- **(providers):** respect VERTEX_MODEL environment variable in model selection ([40eddb1](https://github.com/juspay/neurolink/commit/40eddb1d52a61891dec7fab5998b840f233352ee))
|
|
20
|
+
|
|
21
|
+
# [7.8.0](https://github.com/juspay/neurolink/compare/v7.7.1...v7.8.0) (2025-08-11)
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
7
24
|
|
|
25
|
+
- exclude \_site directory from ESLint ([c0e5f1d](https://github.com/juspay/neurolink/commit/c0e5f1dce46e91ee76cd1a4954190569b4a8d1d9))
|
|
8
26
|
|
|
9
27
|
### Features
|
|
10
28
|
|
|
11
|
-
|
|
29
|
+
- **providers:** add comprehensive Amazon SageMaker provider integration ([9ef4ebe](https://github.com/juspay/neurolink/commit/9ef4ebeeda520a71a7461ca5f4f34a83c2062356))
|
|
12
30
|
|
|
13
31
|
## [7.7.1](https://github.com/juspay/neurolink/compare/v7.7.0...v7.7.1) (2025-08-11)
|
|
14
32
|
|
|
15
|
-
|
|
16
33
|
### Bug Fixes
|
|
17
34
|
|
|
18
|
-
|
|
35
|
+
- **providers:** resolve ESLint errors and improve validation in Vertex AI health checker ([a5822ee](https://github.com/juspay/neurolink/commit/a5822eee3f8b6beaf3d2168ebb8888a6beaa5cb4))
|
|
19
36
|
|
|
20
37
|
# [7.7.0](https://github.com/juspay/neurolink/compare/v7.6.1...v7.7.0) (2025-08-10)
|
|
21
38
|
|
package/README.md
CHANGED
|
@@ -68,6 +68,7 @@ npx @juspay/neurolink sagemaker benchmark my-endpoint # Performance testing
|
|
|
68
68
|
- **⚡ Performance** - Fast response times with streaming support and 68% improved status checks
|
|
69
69
|
- **🛡️ Error Recovery** - Graceful failures with provider fallback and retry logic
|
|
70
70
|
- **📊 Analytics & Evaluation** - Built-in usage tracking and AI-powered quality assessment
|
|
71
|
+
- **🎯 Real-time Event Monitoring** - EventEmitter integration for progress tracking and debugging
|
|
71
72
|
- **🔧 MCP Integration** - Model Context Protocol with 6 built-in tools and 58+ discoverable servers
|
|
72
73
|
- **🚀 Lighthouse Integration** - Unified tool registration API supporting both object and array formats for seamless Lighthouse tool import
|
|
73
74
|
|
|
@@ -667,25 +668,36 @@ We welcome contributions! Please see our [Contributing Guidelines](./CONTRIBUTIN
|
|
|
667
668
|
git clone https://github.com/juspay/neurolink
|
|
668
669
|
cd neurolink
|
|
669
670
|
pnpm install
|
|
670
|
-
|
|
671
|
-
pnpm
|
|
672
|
-
pnpm
|
|
671
|
+
npx husky install # Setup git hooks for build rule enforcement
|
|
672
|
+
pnpm setup:complete # One-command setup with all automation
|
|
673
|
+
pnpm test:adaptive # Intelligent testing
|
|
674
|
+
pnpm build:complete # Full build pipeline
|
|
673
675
|
```
|
|
674
676
|
|
|
675
|
-
###
|
|
677
|
+
### Enterprise Developer Experience
|
|
676
678
|
|
|
677
|
-
NeuroLink
|
|
679
|
+
NeuroLink features **enterprise-grade build rule enforcement** with comprehensive quality validation:
|
|
678
680
|
|
|
679
681
|
```bash
|
|
682
|
+
# Quality & Validation (required for all commits)
|
|
683
|
+
pnpm run validate:all # Run all validation checks
|
|
684
|
+
pnpm run validate:security # Security scanning with gitleaks
|
|
685
|
+
pnpm run validate:env # Environment consistency checks
|
|
686
|
+
pnpm run quality:metrics # Generate quality score report
|
|
687
|
+
|
|
688
|
+
# Development Workflow
|
|
689
|
+
pnpm run check:all # Pre-commit validation simulation
|
|
690
|
+
pnpm run format # Auto-fix code formatting
|
|
691
|
+
pnpm run lint # ESLint validation with zero-error tolerance
|
|
692
|
+
|
|
680
693
|
# Environment & Setup (2-minute initialization)
|
|
681
694
|
pnpm setup:complete # Complete project setup
|
|
682
695
|
pnpm env:setup # Safe .env configuration
|
|
683
696
|
pnpm env:backup # Environment backup
|
|
684
697
|
|
|
685
|
-
# Testing
|
|
698
|
+
# Testing (60-80% faster)
|
|
686
699
|
pnpm test:adaptive # Intelligent test selection
|
|
687
700
|
pnpm test:providers # AI provider validation
|
|
688
|
-
pnpm quality:check # Full quality pipeline
|
|
689
701
|
|
|
690
702
|
# Documentation & Content
|
|
691
703
|
pnpm docs:sync # Cross-file documentation sync
|
|
@@ -696,6 +708,8 @@ pnpm build:complete # 7-phase enterprise pipeline
|
|
|
696
708
|
pnpm dev:health # System health monitoring
|
|
697
709
|
```
|
|
698
710
|
|
|
711
|
+
**Build Rule Enforcement:** All commits automatically validated with pre-commit hooks. See [Contributing Guidelines](./CONTRIBUTING.md) for complete requirements.
|
|
712
|
+
|
|
699
713
|
**[📖 Complete Automation Guide](./docs/CLI-GUIDE.md)** - All 72+ commands and automation features
|
|
700
714
|
|
|
701
715
|
## 📄 License
|
|
@@ -714,3 +728,4 @@ MIT © [Juspay Technologies](https://juspay.in)
|
|
|
714
728
|
<strong>Built with ❤️ by <a href="https://juspay.in">Juspay Technologies</a></strong>
|
|
715
729
|
</p>
|
|
716
730
|
# Force fresh deployment after GitHub Pages source change
|
|
731
|
+
# Trigger fresh CI run
|