@juspay/yama 1.1.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 +39 -0
- package/README.md +796 -0
- package/dist/cli/index.d.ts +12 -0
- package/dist/cli/index.js +537 -0
- package/dist/core/ContextGatherer.d.ts +105 -0
- package/dist/core/ContextGatherer.js +455 -0
- package/dist/core/Guardian.d.ts +80 -0
- package/dist/core/Guardian.js +457 -0
- package/dist/core/providers/BitbucketProvider.d.ts +105 -0
- package/dist/core/providers/BitbucketProvider.js +438 -0
- package/dist/features/CodeReviewer.d.ts +105 -0
- package/dist/features/CodeReviewer.js +970 -0
- package/dist/features/DescriptionEnhancer.d.ts +64 -0
- package/dist/features/DescriptionEnhancer.js +424 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +60 -0
- package/dist/types/index.d.ts +419 -0
- package/dist/types/index.js +44 -0
- package/dist/utils/Cache.d.ts +92 -0
- package/dist/utils/Cache.js +254 -0
- package/dist/utils/ConfigManager.d.ts +84 -0
- package/dist/utils/ConfigManager.js +555 -0
- package/dist/utils/Logger.d.ts +30 -0
- package/dist/utils/Logger.js +208 -0
- package/package.json +137 -0
- package/yama.config.example.yaml +136 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [1.1.0] - 2025-07-25
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Enterprise-grade Pull Request automation toolkit
|
|
12
|
+
- AI-powered code review capabilities
|
|
13
|
+
- Description enhancement features
|
|
14
|
+
- Support for Bitbucket, GitHub, and GitLab platforms
|
|
15
|
+
- Security-focused code analysis
|
|
16
|
+
- Quality assurance automation
|
|
17
|
+
|
|
18
|
+
### Features
|
|
19
|
+
- **Guardian**: Comprehensive PR security and quality checks
|
|
20
|
+
- **Scribe**: AI-enhanced PR description generation
|
|
21
|
+
- **Police**: Automated code review and compliance checking
|
|
22
|
+
- **Context Gathering**: Intelligent codebase analysis
|
|
23
|
+
- **Multi-platform Support**: Works with major Git platforms
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
- @juspay/neurolink for AI capabilities
|
|
27
|
+
- @nexus2520/bitbucket-mcp-server for Bitbucket integration
|
|
28
|
+
- Comprehensive testing suite with Jest
|
|
29
|
+
- TypeScript support with strict type checking
|
|
30
|
+
|
|
31
|
+
### Developer Experience
|
|
32
|
+
- CLI tools with multiple entry points
|
|
33
|
+
- Configurable via YAML
|
|
34
|
+
- Memory bank for context persistence
|
|
35
|
+
- Comprehensive logging and debugging
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
*This changelog is automatically generated and maintained by semantic-release.*
|