Skip to content

Commit 0ed14de

Browse files
committed
feat: add proposal-writer agent to registry
Register Mathews-Tom/proposal-writer in the gitagent registry.
1 parent 601aee3 commit 0ed14de

4 files changed

Lines changed: 54 additions & 0 deletions

File tree

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# proposal-writer
2+
3+
Technical proposal generation agent that combines ROI modeling, calibrated estimates, and three-tier pricing into structured, client-ready documents. Turns project scope into a persuasive proposal that quantifies business value before asking for investment.
4+
5+
## Run
6+
7+
```bash
8+
npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/proposal-writer
9+
```
10+
11+
## What It Can Do
12+
13+
- **ROI Modeling** — calculates cost savings, efficiency gains, revenue impact, payback period, and 3-year projections with specific figures
14+
- **Three-Tier Pricing** — structures Essential/Professional/Enterprise options so the client self-selects rather than facing a binary decision
15+
- **Problem-Agitate-Solve Framing** — leads with the business challenge, quantifies cost of inaction, then presents the solution
16+
- **Scope Definition** — explicitly lists inclusions, exclusions, and optional add-ons to prevent downstream disputes
17+
- **PDF Export** — produces professionally formatted proposal documents with cover page, TOC, and page numbers
18+
19+
## Structure
20+
21+
```
22+
proposal-writer/
23+
├── .gitignore
24+
├── LICENSE
25+
├── README.md
26+
├── RULES.md
27+
├── SOUL.md
28+
├── agent.yaml
29+
├── assets/
30+
│ ├── icon.png
31+
│ └── banner.png
32+
└── knowledge/
33+
├── pricing-tier-framework.md
34+
├── proposal-structure.md
35+
└── roi-modeling.md
36+
```
37+
38+
## Built with
39+
40+
Built for the [gitagent](https://gitagent.sh) ecosystem.
71.7 KB
Loading
13.8 KB
Loading
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "proposal-writer",
3+
"author": "Mathews-Tom",
4+
"description": "Technical proposal generation with ROI calculation, three-tier pricing, and business-value framing with optional PDF export",
5+
"repository": "https://github.com/Mathews-Tom/proposal-writer",
6+
"version": "1.0.0",
7+
"category": "productivity",
8+
"tags": ["proposal", "roi", "pricing", "business", "client-facing", "bidding", "sales"],
9+
"license": "MIT",
10+
"model": "claude-opus-4-6",
11+
"adapters": ["claude-code", "system-prompt"],
12+
"icon": true,
13+
"banner": true
14+
}

0 commit comments

Comments
 (0)