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
40 changes: 40 additions & 0 deletions agents/Mathews-Tom__proposal-writer/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# proposal-writer

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.

## Run

```bash
npx @open-gitagent/gitagent run -r https://github.com/Mathews-Tom/proposal-writer
```

## What It Can Do

- **ROI Modeling** — calculates cost savings, efficiency gains, revenue impact, payback period, and 3-year projections with specific figures
- **Three-Tier Pricing** — structures Essential/Professional/Enterprise options so the client self-selects rather than facing a binary decision
- **Problem-Agitate-Solve Framing** — leads with the business challenge, quantifies cost of inaction, then presents the solution
- **Scope Definition** — explicitly lists inclusions, exclusions, and optional add-ons to prevent downstream disputes
- **PDF Export** — produces professionally formatted proposal documents with cover page, TOC, and page numbers

## Structure

```
proposal-writer/
├── .gitignore
├── LICENSE
├── README.md
├── RULES.md
├── SOUL.md
├── agent.yaml
├── assets/
│ ├── icon.png
│ └── banner.png
└── knowledge/
├── pricing-tier-framework.md
├── proposal-structure.md
└── roi-modeling.md
```

## Built with

Built for the [gitagent](https://gitagent.sh) ecosystem.
Binary file added agents/Mathews-Tom__proposal-writer/banner.png
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__proposal-writer/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions agents/Mathews-Tom__proposal-writer/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "proposal-writer",
"author": "Mathews-Tom",
"description": "Technical proposal generation with ROI calculation, three-tier pricing, and business-value framing with optional PDF export",
"repository": "https://github.com/Mathews-Tom/proposal-writer",
"version": "1.0.0",
"category": "productivity",
"tags": ["proposal", "roi", "pricing", "business", "client-facing", "bidding", "sales"],
"license": "MIT",
"model": "claude-opus-4-6",
"adapters": ["claude-code", "system-prompt"],
"icon": true,
"banner": true
}