@juspay/neurolink 7.9.0 → 7.10.1
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 +18 -6
- package/README.md +21 -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 +4 -4
- package/dist/core/dynamicModels.js +6 -0
- 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/providers/googleVertex.js +1 -1
- package/dist/lib/utils/providerHealth.js +1 -1
- 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/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.js +1 -1
- 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/errors.js +1 -1
- package/dist/providers/sagemaker/language-model.js +1 -1
- package/dist/sdk/toolRegistration.js +0 -1
- package/dist/telemetry/telemetryService.js +0 -2
- package/dist/types/tools.js +0 -1
- package/dist/utils/providerHealth.js +1 -1
- package/package.json +40 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,28 @@
|
|
|
1
|
+
## [7.10.1](https://github.com/juspay/neurolink/compare/v7.10.0...v7.10.1) (2025-08-13)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **(ci):** resolve external contributor PR failures in single commit policy validation ([0536828](https://github.com/juspay/neurolink/commit/0536828f89cad869dc1474b4bd80f7f0fde292da)), closes [#60](https://github.com/juspay/neurolink/issues/60)
|
|
6
|
+
|
|
7
|
+
## [7.10.0](https://github.com/juspay/neurolink/compare/v7.9.0...v7.10.0) (2025-08-12)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
- **(build):** implement comprehensive build rule enforcement system ([7648cad](https://github.com/juspay/neurolink/commit/7648cadde1676fa20ef74c555919e036bc559ad5))
|
|
12
|
+
|
|
1
13
|
## [7.9.0](https://github.com/juspay/neurolink/compare/v7.8.0...v7.9.0) (2025-08-11)
|
|
2
14
|
|
|
3
15
|
### Features
|
|
4
16
|
|
|
5
|
-
|
|
17
|
+
- **(core):** add EventEmitter functionality for real-time event monitoring ([fd8b6b0](https://github.com/juspay/neurolink/commit/fd8b6b075ca46df4f35a58d26ad6cd4839fe2361))
|
|
6
18
|
|
|
7
19
|
### Bug Fixes
|
|
8
20
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
21
|
+
- **(ci):** add semantic-release configuration with dependencies and testing ([d48e274](https://github.com/juspay/neurolink/commit/d48e274bed6473df28403ae440d7109656216307))
|
|
22
|
+
- **(ci):** configure semantic-release to handle ticket prefixes with proper JSON escaping ([6d575dc](https://github.com/juspay/neurolink/commit/6d575dcf90611ad6a9854daff551dade3f06e001))
|
|
23
|
+
- **(ci):** correct JSON escaping in semantic-release configuration ([b9bbe50](https://github.com/juspay/neurolink/commit/b9bbe50461771f82e19cdbbb413ca6af6f28c31d))
|
|
24
|
+
- **(cli):** missing model name in analytics output ([416c5b7](https://github.com/juspay/neurolink/commit/416c5b74745776d1b3742557add4f501669f06f9))
|
|
25
|
+
- **(providers):** respect VERTEX_MODEL environment variable in model selection ([40eddb1](https://github.com/juspay/neurolink/commit/40eddb1d52a61891dec7fab5998b840f233352ee))
|
|
14
26
|
|
|
15
27
|
# [7.8.0](https://github.com/juspay/neurolink/compare/v7.7.1...v7.8.0) (2025-08-11)
|
|
16
28
|
|
package/README.md
CHANGED
|
@@ -668,25 +668,36 @@ We welcome contributions! Please see our [Contributing Guidelines](./CONTRIBUTIN
|
|
|
668
668
|
git clone https://github.com/juspay/neurolink
|
|
669
669
|
cd neurolink
|
|
670
670
|
pnpm install
|
|
671
|
-
|
|
672
|
-
pnpm
|
|
673
|
-
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
|
|
674
675
|
```
|
|
675
676
|
|
|
676
|
-
###
|
|
677
|
+
### Enterprise Developer Experience
|
|
677
678
|
|
|
678
|
-
NeuroLink
|
|
679
|
+
NeuroLink features **enterprise-grade build rule enforcement** with comprehensive quality validation:
|
|
679
680
|
|
|
680
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
|
+
|
|
681
693
|
# Environment & Setup (2-minute initialization)
|
|
682
694
|
pnpm setup:complete # Complete project setup
|
|
683
695
|
pnpm env:setup # Safe .env configuration
|
|
684
696
|
pnpm env:backup # Environment backup
|
|
685
697
|
|
|
686
|
-
# Testing
|
|
698
|
+
# Testing (60-80% faster)
|
|
687
699
|
pnpm test:adaptive # Intelligent test selection
|
|
688
700
|
pnpm test:providers # AI provider validation
|
|
689
|
-
pnpm quality:check # Full quality pipeline
|
|
690
701
|
|
|
691
702
|
# Documentation & Content
|
|
692
703
|
pnpm docs:sync # Cross-file documentation sync
|
|
@@ -697,6 +708,8 @@ pnpm build:complete # 7-phase enterprise pipeline
|
|
|
697
708
|
pnpm dev:health # System health monitoring
|
|
698
709
|
```
|
|
699
710
|
|
|
711
|
+
**Build Rule Enforcement:** All commits automatically validated with pre-commit hooks. See [Contributing Guidelines](./CONTRIBUTING.md) for complete requirements.
|
|
712
|
+
|
|
700
713
|
**[📖 Complete Automation Guide](./docs/CLI-GUIDE.md)** - All 72+ commands and automation features
|
|
701
714
|
|
|
702
715
|
## 📄 License
|
|
@@ -715,3 +728,4 @@ MIT © [Juspay Technologies](https://juspay.in)
|
|
|
715
728
|
<strong>Built with ❤️ by <a href="https://juspay.in">Juspay Technologies</a></strong>
|
|
716
729
|
</p>
|
|
717
730
|
# Force fresh deployment after GitHub Pages source change
|
|
731
|
+
# Trigger fresh CI run
|