Add SnapAPI project structure + CEO skill

This commit is contained in:
Hoid 2026-02-18 20:07:45 +00:00
parent ee17a77309
commit 1e1d7e6678
6 changed files with 306 additions and 0 deletions

View file

@ -0,0 +1,3 @@
# SnapAPI Bug Tracker
No bugs yet — product not built.

View file

@ -0,0 +1,7 @@
# SnapAPI Decisions Log
## 2026-02-18 — Project Kickoff
- Runs on shared K3s cluster (no extra infra cost)
- Reuses DocFast patterns (auth, billing, Puppeteer worker pool)
- Pricing: Free (100/mo), Starter €9 (1K), Pro €29 (5K), Business €79 (25K)
- Target market: mid-tier screenshot API (between free tools and enterprise $99+)

View file

@ -0,0 +1,18 @@
{
"budget": {
"total": 0,
"spent": 0,
"remaining": 0,
"note": "Runs on shared K3s cluster — no extra infra cost. Budget needed only for domain + Stripe fees."
},
"revenue": {
"mrr": 0,
"subscribers": 0
},
"pricing": {
"free": { "limit": 100, "price": 0 },
"starter": { "limit": 1000, "price": 9 },
"pro": { "limit": 5000, "price": 29 },
"business": { "limit": 25000, "price": 79 }
}
}

View file

@ -0,0 +1,2 @@
# SnapAPI CEO Sessions

View file

@ -0,0 +1,17 @@
{
"phase": "build",
"version": null,
"launched": false,
"priorities": [
"Build core API (POST /v1/screenshot → PNG/JPEG/WebP)",
"Set up CI/CD pipeline (main→staging, tag→prod)",
"Build website + docs",
"Stripe billing integration",
"Launch"
],
"blockers": [
"Domain not yet chosen — pick one and tell the investor"
],
"lastSession": null,
"sessionCount": 0
}