Business agent: product is broken, fix before marketing. Added QA requirements to skill.

This commit is contained in:
Hoid 2026-02-14 14:14:12 +00:00
parent d83cc81397
commit 7bb583745a
2 changed files with 23 additions and 7 deletions

View file

@ -1,9 +1,9 @@
{ {
"phase": 2, "phase": 1,
"phaseLabel": "Launch & First Customers", "phaseLabel": "Build MVP — Fix & Polish",
"status": "live-with-ssl", "status": "broken-needs-fixing",
"product": "DocFast — HTML/Markdown to PDF API", "product": "DocFast — HTML/Markdown to PDF API",
"currentPriority": "Get first paying customer. SEO, content marketing, dev community outreach.", "currentPriority": "PRODUCT IS BROKEN. Human tested and found: (1) 'Get Free API Key' is just a mailto: link — needs to be a real self-service signup flow that generates and returns an API key. (2) 'Get Started' for Pro plan does nothing. FIX THESE. Build actual signup/key provisioning. Test the ENTIRE user flow yourself before declaring anything done. Do NOT move to Phase 2 until every button works and a user can go from landing page → API key → working PDF without any manual intervention.",
"infrastructure": { "infrastructure": {
"domain": "docfast.dev", "domain": "docfast.dev",
"url": "https://docfast.dev", "url": "https://docfast.dev",
@ -12,9 +12,8 @@
"server": "docfast-1 (CAX11, nbg1)", "server": "docfast-1 (CAX11, nbg1)",
"serverIP": "167.235.156.214", "serverIP": "167.235.156.214",
"sshKey": "/home/openclaw/.ssh/docfast", "sshKey": "/home/openclaw/.ssh/docfast",
"ssl": "Let's Encrypt (expires 2026-05-15, auto-renew)", "ssl": "Let's Encrypt (auto-renew)",
"apiKey": "df_live_9760e44a3e732be0f8628a44e0cdbc040107499f6e8f457a", "apiKey": "df_live_9760e44a3e732be0f8628a44e0cdbc040107499f6e8f457a"
"stripeCheckout": "working (live mode)"
}, },
"credentials": { "credentials": {
"file": "/home/openclaw/.openclaw/workspace/.credentials/docfast.env", "file": "/home/openclaw/.openclaw/workspace/.credentials/docfast.env",

View file

@ -133,11 +133,28 @@ You have a Hetzner API token with full read+write access. You can:
- Message tool for contacting the user - Message tool for contacting the user
- Cron for scheduling (if needed) - Cron for scheduling (if needed)
## Quality First — MANDATORY
**NEVER move to customer acquisition until the product actually works end-to-end.**
Before Phase 2 (Launch), you MUST verify:
- Every button on the landing page works (not mailto: links, not broken JS)
- Free tier signup works completely — user gets an API key without human intervention
- Pro tier checkout works completely — Stripe payment → API key provisioned
- Every API endpoint works with a real API key
- Error handling works (bad input, rate limits, expired keys)
- Test it yourself. If you can't click through the entire flow and get a working PDF, it's not ready.
**You are the QA team.** The human should never find broken buttons. Test everything before declaring it done.
## Anti-Patterns (Don't Do These) ## Anti-Patterns (Don't Do These)
- Don't move to marketing with a broken product — TEST FIRST
- Don't use mailto: links for signup — build actual self-service flows
- Don't spend 5 sessions on research without building anything - Don't spend 5 sessions on research without building anything
- Don't build features nobody asked for - Don't build features nobody asked for
- Don't optimize before you have customers - Don't optimize before you have customers
- Don't send the user long updates — be concise - Don't send the user long updates — be concise
- Don't assume expenses are approved — ask first - Don't assume expenses are approved — ask first
- Don't start coding before the business model is approved - Don't start coding before the business model is approved
- Don't declare something "working" without testing the full user flow yourself