Business Plan One-Pager
Creates a concise one-page business plan covering value proposition, market, revenue model, and key metrics. Researches market data via Brave Search and generates a Mermaid business model canvas. Prerequisites: brave-search MCP, python3.
MCP get_skill({ skillId: "business-plan-one-pager-204c3f7f" })Use this skill with your agent
Create a free account and connect via MCP
# Business Plan One-Pager
Create a concise one-page business plan with market research and financial projections.
## When to Use
- "Help me write a one-page business plan for {idea}"
- "I need a lean canvas for my startup"
- "Summarize my business idea in one page"
## Requirements
- **Brave Search MCP** for market research
- **python3** for financial projections
## Workflow
### Step 1 ā Business Details
- **Business name**
- **What it does** (1 sentence)
- **Target customer** (who pays you)
- **Problem you solve**
- **How you make money** (revenue model)
- **Current stage** (idea, building, launched)
### Step 2 ā Market Research
```
brave_web_search: "{INDUSTRY} market size {YEAR}"
brave_web_search: "{INDUSTRY} growth rate trends"
brave_web_search: "{CUSTOMER_SEGMENT} spending habits {INDUSTRY}"
```
### Step 3 ā Generate One-Pager
```markdown
# {BUSINESS_NAME} ā Business Plan
š
{DATE}
## The Problem
{2-3 sentences describing the pain point with data}
## The Solution
{2-3 sentences on what you do and why it's better}
## Target Customer
- **Primary:** {Who ā demographics, behavior}
- **Size:** {How many potential customers}
- **Willingness to pay:** {Evidence}
## Revenue Model
| Stream | Price | Frequency |
|--------|-------|-----------|
| {Revenue stream 1} | ${X} | {monthly/yearly/per-use} |
| {Revenue stream 2} | ${X} | {frequency} |
## Market Opportunity
- **TAM:** ${X} ā {definition}
- **SAM:** ${X} ā {definition}
- **SOM (Year 1):** ${X} ā {realistic target}
## Competitive Advantage
1. {What makes you different}
2. {Why this is defensible}
## Key Metrics (Targets)
| Metric | Month 3 | Month 6 | Year 1 |
|--------|---------|---------|--------|
| Customers | {N} | {N} | {N} |
| MRR | ${X} | ${X} | ${X} |
| {Key metric} | {val} | {val} | {val} |
## Costs & Breakeven
- **Monthly burn:** ${X}
- **Breakeven:** {N} customers / ${X} MRR
- **Funding needed:** ${X} for {N} months runway
## Next Steps
1. {Immediate action ā this week}
2. {Short-term ā this month}
3. {Medium-term ā this quarter}
```
### Step 4 ā Breakeven Calculation
```bash
python3 << 'PYEOF'
monthly_costs = {MONTHLY_COSTS}
price_per_customer = {PRICE}
cac = {CUSTOMER_ACQUISITION_COST}
breakeven_customers = monthly_costs / price_per_customer
print(f"Monthly costs: ${monthly_costs:,.0f}")
print(f"Price per customer: ${price_per_customer}/mo")
print(f"Breakeven: {breakeven_customers:.0f} customers")
print(f"With CAC ${cac}: need ${breakeven_customers * cac:,.0f} to acquire breakeven customers")
PYEOF
```
### Step 5 ā Save
```bash
mkdir -p outputs/business
cat > "outputs/business/{BUSINESS_SLUG}-plan-{DATE}.md" << 'EOF'
{ONE_PAGER}
EOF
```
## Important Rules
- One page means one page ā be ruthlessly concise
- Market size from research, not guesses
- Financial projections should be conservative
- Focus on what you KNOW, flag assumptions clearly
- Include a clear next steps section ā plans are useless without action
## Example Prompts
- "Write a one-page business plan for my SaaS idea"
- "I need a lean canvas for a food delivery service"
- "Help me summarize my startup idea for potential co-founders"Related Skills
More skills in Business & Freelance
Client Proposal Writer
Builds professional client proposals with scope, timeline, pricing, and terms ā researches market rates via Brave Search and generates pandoc-ready documents. Prerequisites: brave-search MCP, python3, pandoc.
Competitor Analysis Report
Researches competitors via Brave Search and builds a comprehensive competitive landscape analysis with positioning, pricing, strengths/weaknesses, and strategic recommendations. Prerequisites: brave-search MCP, python3.
Invoice Generator
Generates professional invoices with line items, tax calculations, payment terms, and exports to PDF via pandoc. Tracks invoice numbers and calculates totals. Prerequisites: python3, pandoc.
Pricing Strategy Calculator
Helps freelancers and businesses set pricing using cost-plus, value-based, and competitive analysis methods. Researches market rates via Brave Search and runs breakeven calculations. Prerequisites: brave-search MCP, python3.
Statement of Work Generator
Generates formal Statements of Work (SOW) with project scope, milestones, acceptance criteria, payment schedule, and legal terms. Exports to PDF via pandoc. Prerequisites: python3, pandoc.
Explore Other Categories
Skills from other categories with shared topics
50/30/20 Budget Planner
Creates a personalized monthly budget using the 50/30/20 framework. Calculates target allocations from income, maps actual spending from CSV data, and identifies overspending. Prerequisites: python3.
Event & Party Planner
Plans events end-to-end: creates timelines, budgets, vendor research via Brave Search, guest lists, menu planning, and day-of checklists. Prerequisites: brave-search MCP, python3.
Google Calendar Daily Planner
Pulls today's or tomorrow's Google Calendar events via gcalcli, analyzes meeting density, identifies focus blocks, and generates a time-blocked daily plan. Prerequisites: gcalcli, gcloud, curl, jq.