38 lines
1.4 KiB
Markdown
Executable File
38 lines
1.4 KiB
Markdown
Executable File
# MarketAlly AI Plugin Complete Toolkit
|
|
|
|
Meta-package containing all MarketAlly AI Plugin specialized packages for comprehensive development assistance.
|
|
|
|
## Included Packages
|
|
|
|
- **MarketAlly.AIPlugin**: Core framework
|
|
- **MarketAlly.AIPlugin.Refactoring**: Code refactoring and quality
|
|
- **MarketAlly.AIPlugin.Security**: Security analysis and vulnerability detection
|
|
- **MarketAlly.AIPlugin.DevOps**: CI/CD and infrastructure optimization
|
|
- **MarketAlly.AIPlugin.Analysis**: Advanced code analysis and metrics
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
dotnet add package MarketAlly.AIPlugin.All
|
|
```
|
|
|
|
This single package provides access to all specialized AI plugin capabilities for complete code analysis, security scanning, DevOps optimization, and quality improvement.
|
|
|
|
## Quick Start
|
|
|
|
```csharp
|
|
var registry = new AIPluginRegistry(logger);
|
|
|
|
// All plugins are available
|
|
await registry.CallFunctionAsync("SecurityScan", parameters);
|
|
await registry.CallFunctionAsync("PerformanceAnalyzer", parameters);
|
|
await registry.CallFunctionAsync("DevOpsScan", parameters);
|
|
await registry.CallFunctionAsync("CodeAnalysis", parameters);
|
|
```
|
|
|
|
## Use Cases
|
|
|
|
- **Complete Code Audits**: Security + Quality + Performance analysis
|
|
- **CI/CD Integration**: Automated analysis in build pipelines
|
|
- **Technical Debt Management**: Comprehensive debt tracking and reduction
|
|
- **Development Team Enablement**: Full toolkit for all development scenarios |