-
Notifications
You must be signed in to change notification settings - Fork 156
Expand file tree
/
Copy pathcode_reviewer_agent.json
More file actions
90 lines (90 loc) · 2.43 KB
/
code_reviewer_agent.json
File metadata and controls
90 lines (90 loc) · 2.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"protocolVersion": "1.0",
"name": "Code Reviewer Agent",
"description": "Comprehensive code review agent that analyzes code quality, identifies bugs, suggests improvements, and provides detailed feedback on code structure and best practices",
"url": "https://example.com/agents/code-reviewer",
"version": "2.1.0",
"capabilities": {
"streaming": true
},
"defaultInputModes": ["text/plain", "application/json"],
"defaultOutputModes": ["text/plain", "application/json"],
"skills": [
{
"id": "analyze_code_quality",
"name": "Analyze Code Quality",
"description": "Analyze code for quality metrics including complexity, duplication, and maintainability",
"tags": [
"analysis",
"metrics"
],
"examples": [
"Analyze code quality for this Python function",
"Check code quality metrics for JavaScript module"
],
"inputModes": ["text/plain"],
"outputModes": ["application/json"]
},
{
"id": "detect_bugs",
"name": "Detect Bugs",
"description": "Identify potential bugs and issues in the code",
"tags": [
"bug-detection",
"validation"
],
"examples": [
"Detect critical bugs in this code",
"Find high severity issues"
],
"inputModes": ["text/plain"],
"outputModes": ["application/json"]
},
{
"id": "suggest_improvements",
"name": "Suggest Improvements",
"description": "Provide suggestions for code improvements and refactoring",
"tags": [
"improvement",
"refactoring"
],
"examples": [
"Suggest performance improvements for this code",
"Recommend security enhancements"
],
"inputModes": ["text/plain"],
"outputModes": ["application/json"]
}
],
"preferredTransport": "JSONRPC",
"provider": "Example Corp",
"securitySchemes": {
"bearer_auth": {
"type": "http",
"scheme": "bearer",
"bearerFormat": "JWT"
}
},
"security": [
{
"bearer_auth": []
}
],
"metadata": {
"max_code_size_mb": 10,
"supported_formats": [
"json",
"xml",
"yaml"
],
"response_time_ms": 2000,
"availability": "99.9%"
},
"path": "/code-reviewer",
"tags": ["code-review", "quality-analysis", "testing", "best-practices"],
"isEnabled": true,
"numStars": 42,
"license": "MIT",
"visibility": "public",
"trustLevel": "verified"
}