Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions agents/Mathews-Tom__full-stack-builder/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# full-stack-builder

End-to-end implementation agent that transforms architecture documents and feature specs into production-ready code with tests, API documentation, and security validation. Orchestrates quality skills throughout the build process — scaffolding, incremental sprints, and pre-delivery review gates.

## Run

```bash
npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/full-stack-builder
```

## What It Can Do

- **Spec Analysis** — parses architecture documents, extracts components, determines build order from dependency graphs
- **Project Scaffolding** — initializes directory structure, configs, linting, type checking, and migration frameworks for any stack
- **Implementation Sprints** — builds components in dependency order with test-first development, error handling, and input validation
- **Quality Pass** — invokes code refinement and security scanning to eliminate duplication and OWASP vulnerabilities
- **API Documentation** — generates endpoint documentation and setup guides
- **Pre-Delivery Review** — runs safety gates with GO/NO-GO verdicts backed by test results and spec completeness checks

## Structure

```
full-stack-builder/
├── .gitignore
├── LICENSE
├── README.md
├── RULES.md
├── SOUL.md
├── agent.yaml
├── assets/
│ ├── icon.png
│ └── banner.png
└── knowledge/
├── scaffolding-patterns.md
├── testing-strategy.md
├── api-documentation.md
└── code-quality-checklist.md
```

## Built with

Built for the [gitagent](https://gitagent.sh) ecosystem.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added agents/Mathews-Tom__full-stack-builder/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions agents/Mathews-Tom__full-stack-builder/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "full-stack-builder",
"author": "Mathews-Tom",
"description": "End-to-end implementation agent that takes architecture docs or feature specs and delivers production-ready code with tests, API docs, and security validation",
"repository": "https://github.com/Mathews-Tom/full-stack-builder",
"version": "1.0.0",
"category": "developer-tools",
"tags": [
"full-stack",
"implementation",
"scaffolding",
"production",
"testing",
"api-docs",
"code-generation"
],
"license": "MIT",
"model": "claude-opus-4-6",
"adapters": [
"claude-code",
"system-prompt"
],
"icon": true,
"banner": true
}