Skip to content

Commit 66c2f30

Browse files
committed
feat: add project-architect agent to registry
Register Mathews-Tom/project-architect in the developer-tools category.
1 parent 601aee3 commit 66c2f30

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+
# project-architect
2+
3+
System architecture agent with phased requirements discovery producing architecture documents with tech stack justification, Mermaid diagrams, and data flow design. Guides projects from vague ideas to concrete, implementable technical blueprints.
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+
- Conduct phased requirements discovery through structured questioning
14+
- Produce architecture decision records (ADRs) with justifications
15+
- Generate Mermaid diagrams for system topology and data flows
16+
- Evaluate and recommend tech stacks based on project constraints
17+
- Design API contracts and service boundaries
18+
- Create deployment architecture and infrastructure blueprints
19+
20+
## Structure
21+
22+
```
23+
project-architect/
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.
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)