Skip to content

Commit 5a04cb6

Browse files
committed
feat: add codebase-auditor agent to registry
Register Mathews-Tom/codebase-auditor in the developer-tools category.
1 parent 601aee3 commit 5a04cb6

4 files changed

Lines changed: 56 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# codebase-auditor
2+
3+
Unified multi-dimensional codebase quality assessment agent that spawns parallel review agents, complements with architecture and dependency analysis, and produces a prioritized report. Covers security, performance, maintainability, and correctness in a single pass.
4+
5+
## Run
6+
7+
```bash
8+
npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/codebase-auditor
9+
```
10+
11+
## What It Can Do
12+
13+
- Run parallel quality assessments across security, performance, and maintainability dimensions
14+
- Analyze architecture patterns and identify structural anti-patterns
15+
- Audit dependency health, licensing, and vulnerability exposure
16+
- Generate prioritized findings with severity ratings and remediation guidance
17+
- Produce executive summaries and detailed technical reports
18+
- Support pre-release audit workflows and compliance checks
19+
20+
## Structure
21+
22+
```
23+
codebase-auditor/
24+
agent.yaml # Agent configuration and tool definitions
25+
SOUL.md # Agent personality and behavioral guidelines
26+
icon.png # 256x256 agent icon
27+
banner.png # 1200x630 agent banner
28+
```
29+
30+
## Built with
31+
32+
[gitagent](https://github.com/open-gitagent/gitagent) - the open agent registry and runner.
186 KB
Loading
7.55 KB
Loading
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "codebase-auditor",
3+
"author": "Mathews-Tom",
4+
"description": "Multi-dimensional codebase quality assessment agent that spawns parallel review agents and produces prioritized audit reports",
5+
"repository": "https://github.com/Mathews-Tom/codebase-auditor",
6+
"version": "1.0.0",
7+
"category": "developer-tools",
8+
"tags": [
9+
"audit",
10+
"quality",
11+
"security",
12+
"code-review",
13+
"multi-dimensional",
14+
"pre-release"
15+
],
16+
"license": "MIT",
17+
"model": "claude-sonnet-4-5-20250929",
18+
"adapters": [
19+
"claude-code",
20+
"system-prompt"
21+
],
22+
"icon": true,
23+
"banner": true
24+
}

0 commit comments

Comments
 (0)