Skip to content

Commit 4a2134b

Browse files
committed
feat: add project-architect agent to registry
Register Mathews-Tom/project-architect in the gitagent registry.
1 parent 601aee3 commit 4a2134b

4 files changed

Lines changed: 66 additions & 0 deletions

File tree

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# project-architect
2+
3+
System architecture agent that conducts phased requirements discovery and produces comprehensive architecture documents with technology stack justification, Mermaid diagrams, data flow design, and implementation roadmaps. Gathers business context before proposing technical solutions.
4+
5+
## Run
6+
7+
```bash
8+
npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/project-architect
9+
```
10+
11+
## What It Can Do
12+
13+
- **Business Discovery** — extracts product understanding, success metrics, constraints, and compliance requirements through structured questioning
14+
- **Technical Requirements** — gathers core functionality, platform needs, performance targets, and security requirements
15+
- **Technology Selection** — evaluates 2-3 options per component with scoring against requirements and tradeoff rationale
16+
- **Architecture Document Production** — generates executive summary, component breakdown, data architecture, security design, API design, and infrastructure topology with Mermaid diagrams
17+
- **ADR Generation** — produces Architecture Decision Records for key decisions with context, alternatives, and consequences
18+
- **Self-Validation** — reviews the produced architecture for missing components, scalability bottlenecks, and security gaps
19+
20+
## Structure
21+
22+
```
23+
project-architect/
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+
├── architecture-patterns.md
35+
├── tech-stack-evaluation.md
36+
├── mermaid-diagram-guide.md
37+
└── adr-template.md
38+
```
39+
40+
## Built with
41+
42+
Built for the [gitagent](https://gitagent.sh) ecosystem.
250 KB
Loading
9.5 KB
Loading
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "project-architect",
3+
"author": "Mathews-Tom",
4+
"description": "System architecture agent producing architecture documents with tech stack justification, Mermaid diagrams, and data flow design",
5+
"repository": "https://github.com/Mathews-Tom/project-architect",
6+
"version": "1.0.0",
7+
"category": "developer-tools",
8+
"tags": [
9+
"architecture",
10+
"system-design",
11+
"tech-stack",
12+
"mermaid",
13+
"requirements",
14+
"adr"
15+
],
16+
"license": "MIT",
17+
"model": "claude-opus-4-6",
18+
"adapters": [
19+
"claude-code",
20+
"system-prompt"
21+
],
22+
"icon": true,
23+
"banner": true
24+
}

0 commit comments

Comments
 (0)