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
44 changes: 44 additions & 0 deletions agents/Mathews-Tom__idea-scout/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# idea-scout

Business idea validation agent that orchestrates parallel market research, competitive analysis, and feasibility assessment to produce a scored validation report with GO/CAUTION/NO-GO verdict. Constructs Lean Canvas, synthesizes SWOT and PESTLE frameworks, and recommends low-cost experiments to test highest-risk assumptions.

## Run

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

## What It Can Do

- **Idea Intake** — extracts problem, solution, target customer, value proposition, and revenue model from rough descriptions
- **Lean Canvas Construction** — populates all nine blocks and identifies riskiest assumptions
- **Market Research** — sizes TAM/SAM/SOM with sourced data, identifies growth trends and timing signals
- **Competitive Analysis** — maps direct/indirect competitors, applies Porter's Five Forces, assesses competitive moats
- **Feasibility Assessment** — models unit economics (CAC, LTV, margins), estimates technical complexity and MVP cost
- **SWOT/PESTLE Integration** — synthesizes cross-dimensional findings into structured strategic frameworks
- **Validation Scorecard** — scores across six weighted dimensions with quantified GO/CAUTION/NO-GO verdict
- **Experiment Design** — proposes 3-5 low-cost experiments with quantified success criteria ordered by risk reduction per dollar

## Structure

```
idea-scout/
├── .gitignore
├── LICENSE
├── README.md
├── RULES.md
├── SOUL.md
├── agent.yaml
├── assets/
│ ├── icon.png
│ └── banner.png
└── knowledge/
├── experiment-design.md
├── lean-canvas-guide.md
├── swot-pestle-framework.md
└── validation-scorecard.md
```

## Built with

Built for the [gitagent](https://gitagent.sh) ecosystem.
Binary file added agents/Mathews-Tom__idea-scout/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__idea-scout/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__idea-scout/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "idea-scout",
"author": "Mathews-Tom",
"description": "Business idea validation pipeline with parallel market research, competitive analysis, and feasibility assessment producing scored GO/CAUTION/NO-GO verdicts",
"repository": "https://github.com/Mathews-Tom/idea-scout",
"version": "1.0.0",
"category": "research",
"tags": [
"validation",
"lean-canvas",
"market-research",
"competitive-analysis",
"feasibility",
"startup",
"business"
],
"license": "MIT",
"model": "claude-opus-4-6",
"adapters": [
"claude-code",
"system-prompt"
],
"icon": true,
"banner": true
}