Skip to content

Commit 265ae0e

Browse files
committed
feat: add codebase-auditor agent to registry
Register Mathews-Tom/codebase-auditor in the gitagent registry.
1 parent 601aee3 commit 265ae0e

File tree

4 files changed

+65
-0
lines changed

4 files changed

+65
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# codebase-auditor
2+
3+
Multi-dimensional codebase quality assessment agent that orchestrates specialized reviewers in parallel — code quality, security vulnerabilities, secret detection, architecture integrity, and dependency health — and synthesizes findings into a single deduplicated, severity-ranked report with a binary PASS/FAIL verdict.
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+
- **Scope Analysis** — determines audit scope from changed files, direct dependencies, or full repository inventory
14+
- **Parallel Agent Spawning** — runs code quality, security, and secret detection reviews concurrently
15+
- **Architecture Review** — assesses structural integrity, module boundaries, coupling, and scalability patterns
16+
- **Dependency Audit** — checks for CVEs, license compliance, abandoned packages, and dependency bloat
17+
- **Aggregation and Deduplication** — merges overlapping findings, preserves highest severity, eliminates report noise
18+
- **Verdict Determination** — binary PASS (zero CRITICAL/HIGH) or FAIL with prioritized action items
19+
20+
## Structure
21+
22+
```
23+
codebase-auditor/
24+
├── .gitignore
25+
├── LICENSE
26+
├── README.md
27+
├── RULES.md
28+
├── SOUL.md
29+
├── agent.yaml
30+
├── assets/
31+
│ ├── icon.png
32+
│ └── banner.png
33+
└── knowledge/
34+
├── audit-dimensions.md
35+
├── report-template.md
36+
└── severity-classification.md
37+
```
38+
39+
## Built with
40+
41+
Built for the [gitagent](https://gitagent.sh) ecosystem.
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)