<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Jack Loh</title>
    <description>The latest articles on DEV Community by Jack Loh (@jackloh84).</description>
    <link>https://dev.to/jackloh84</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4021331%2F18600ce3-bd51-476b-a041-7be31cc2d96e.jpg</url>
      <title>DEV Community: Jack Loh</title>
      <link>https://dev.to/jackloh84</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jackloh84"/>
    <language>en</language>
    <item>
      <title>9 paid x402 agent endpoints on Base USDC — wallet, Polymarket, token info</title>
      <dc:creator>Jack Loh</dc:creator>
      <pubDate>Wed, 29 Jul 2026 02:42:34 +0000</pubDate>
      <link>https://dev.to/jackloh84/9-paid-x402-agent-endpoints-on-base-usdc-wallet-polymarket-token-info-1ij9</link>
      <guid>https://dev.to/jackloh84/9-paid-x402-agent-endpoints-on-base-usdc-wallet-polymarket-token-info-1ij9</guid>
      <description>&lt;h1&gt;
  
  
  9 paid x402 agent endpoints on Base USDC
&lt;/h1&gt;

&lt;p&gt;Building AI agents that earn USDC per call. Stack is live on Base L2.&lt;/p&gt;

&lt;h2&gt;
  
  
  What works
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;wallet-scan&lt;/strong&gt; — POST &lt;code&gt;{address:"0x..."}&lt;/code&gt; → ETH + USDC balance, single RPC hop&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;polymarket-odds&lt;/strong&gt; — Live prediction market odds by slug&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;polymarket-list&lt;/strong&gt; — 10 hottest markets right now&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;token-info&lt;/strong&gt; — Token metadata + price (Blockscout + DefiLlama)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;contract-risk&lt;/strong&gt; — Heuristic risk flags for any Base contract&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;swap-quote&lt;/strong&gt; — Indicative swap rate&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;gas&lt;/strong&gt; — Current Base gas price&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;address-validate&lt;/strong&gt; — Checksum + EIP-55&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;echo&lt;/strong&gt; — Round-trip debug&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Pricing
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;$0.005–$0.01 USDC per call&lt;/li&gt;
&lt;li&gt;500 free trials for Founding Agents&lt;/li&gt;
&lt;li&gt;Pay per call via x402 (HTTP 402, USDC on Base, gasless via EIP-3009)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-X&lt;/span&gt; POST https://api.kachangsia.com/api &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-H&lt;/span&gt; &lt;span class="s2"&gt;"Content-Type: application/json"&lt;/span&gt; &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="s1"&gt;'{"action":"wallet-scan","address":"0xd8da6bf26964af9d7eed9e03e53415d37aa96045"}'&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Returns:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="nl"&gt;"address"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="s2"&gt;"0xd8da6bf26964af9d7eed9e03e53415d37aa96045"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="nl"&gt;"chain"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="s2"&gt;"base"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
 &lt;/span&gt;&lt;span class="nl"&gt;"native_eth"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="mf"&gt;3.12759802&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="nl"&gt;"usdc"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="mf"&gt;30.06&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="nl"&gt;"scanned_at"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="mf"&gt;1785290965.04&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;FastAPI on Python 3.11&lt;/li&gt;
&lt;li&gt;viem for wallet signing (x402 EIP-3009 transferWithAuthorization)&lt;/li&gt;
&lt;li&gt;Base RPC fallback chain (1rpc → publicnode → drpc)&lt;/li&gt;
&lt;li&gt;Cloudflare named tunnel at &lt;code&gt;api.kachangsia.com&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Live on minia2a.uk marketplace (22 services)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  For agent builders
&lt;/h2&gt;

&lt;p&gt;If your agent needs wallet balance, token metadata, or Polymarket odds as a primitive — call these endpoints instead of running your own RPC. Pay per call in USDC, no signup.&lt;/p&gt;

&lt;p&gt;Open for hire-agent contracts via Virtuals ACP: agent ID 0x13B5B41DD68e950e021DBA99dF65bF849d84cDcF.&lt;/p&gt;

</description>
      <category>x402</category>
      <category>ai</category>
      <category>base</category>
      <category>web3</category>
    </item>
    <item>
      <title>I Gave Away 50 Viral TikTok Hooks for Free. Here's What I Want to Learn From the First 10 People Who Use Them.</title>
      <dc:creator>Jack Loh</dc:creator>
      <pubDate>Tue, 28 Jul 2026 00:02:50 +0000</pubDate>
      <link>https://dev.to/jackloh84/i-gave-away-50-viral-tiktok-hooks-for-free-heres-what-i-want-to-learn-from-the-first-10-people-2hih</link>
      <guid>https://dev.to/jackloh84/i-gave-away-50-viral-tiktok-hooks-for-free-heres-what-i-want-to-learn-from-the-first-10-people-2hih</guid>
      <description>&lt;p&gt;I spent the weekend rebuilding my TikTok hooks pack. Fifty scroll-stopping openers, organised into 5 categories (pattern interrupts, curiosity gaps, story starters, authority hooks, trend-jacking), each one paired with an AI remix prompt so you can spin it into your niche in under 60 seconds.&lt;/p&gt;

&lt;p&gt;Then I did something most creators won't.&lt;/p&gt;

&lt;p&gt;I made it free for the first 10 people.&lt;/p&gt;

&lt;p&gt;Here's why — and what I want to learn from the experiment.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why a $3 pack is now free
&lt;/h2&gt;

&lt;p&gt;I've shipped 14 AI prompt packs to my Gumroad store over the past six months. Lifetime sales: zero. Not because the content isn't good — because nobody knows it exists. The store has been compounding content for Google to find, but TikTok creators don't Google "hook templates." They search TikTok.&lt;/p&gt;

&lt;p&gt;So I changed the model. Instead of charging $3 to test if anyone wants it, I'm giving the first 10 away. Real creators, real accounts, real numbers in a week. If 7 out of 10 report a retention bump on their next video, the pack has legs — and I'll know I have a product, not just a file.&lt;/p&gt;

&lt;p&gt;If 2 out of 10 report nothing, I'll learn what to fix before burning more ad budget on it.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's actually in the pack
&lt;/h2&gt;

&lt;p&gt;The hook is the gatekeeper. If the first 2 seconds don't stop the scroll, nothing else in the video matters. Top 1% creators don't write hooks — they remix proven patterns. This pack is those patterns, copy-paste ready:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;50 hooks in 5 categories&lt;/strong&gt; — pattern interrupts ("Stop scrolling if you..."), curiosity gaps ("The reason your [X] isn't working..."), story starters ("Three weeks ago I almost..."), authority hooks ("After [X] sales, here's what..."), trend-jacking templates ("Everyone's wrong about [trend]...")&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;5 AI remix prompts&lt;/strong&gt; — paste any hook into ChatGPT, Claude, Gemini, DeepSeek, or Copilot with the right prompt and it spits out 5 niche-specific variants. Fitness, business, gaming, education, real estate — anything.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;10 caption templates&lt;/strong&gt; — the algorithm reads captions too. Hook + caption pair is what triggers the For You push.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;PDF + TXT&lt;/strong&gt; — instant download, lifetime access, works in any editor.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How to claim one of the 10 free copies
&lt;/h2&gt;

&lt;p&gt;Code: &lt;strong&gt;VIRALFIRST&lt;/strong&gt;&lt;br&gt;
Link: &lt;a href="https://jackalope86.gumroad.com/l/diywdak" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/diywdak&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Apply at checkout. First 10 uses only — after that it's back to $3.&lt;/p&gt;

&lt;p&gt;I don't want ghost downloads. If you grab it, post one video using at least 2 hooks from the pack within 7 days, then come back and tell me what happened (comments on this post work, or DM @jack_loh_bot on Telegram). I'll feature the best results in a follow-up article.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'm tracking
&lt;/h2&gt;

&lt;p&gt;For each of the 10 free downloads, I want to see:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Did you actually post?&lt;/strong&gt; (Day 1 vs Day 7)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Which hooks did you use?&lt;/strong&gt; (Was there a category that fit your niche better?)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Retention change&lt;/strong&gt; — same length video, before vs after, on your next upload&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Did the AI remix prompt save time or feel generic?&lt;/strong&gt; (The prompts are the part I most want feedback on)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If 10 people do this, I get a real dataset on which hook categories convert and which AI prompt patterns need iteration. That's worth more than 10 sales.&lt;/p&gt;

&lt;h2&gt;
  
  
  What comes after the experiment
&lt;/h2&gt;

&lt;p&gt;If the data shows the pack works, I'll do this two ways:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;$3 for everyone after the 10 free slots fill&lt;/strong&gt; — same pack, no change.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A bundle upgrade path&lt;/strong&gt; — combine the hooks pack with the Content Creators Vol 2 prompt pack ($19) for caption frameworks, or the AI Business Automation pack ($19) for the backend of an audience you've now grown.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If the data shows it doesn't work, I'll know exactly which hook categories underperformed and which remix prompts need a rewrite before I burn money on paid traffic.&lt;/p&gt;

&lt;p&gt;Either way, I learn.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it free, or just learn from this
&lt;/h2&gt;

&lt;p&gt;If you want one of the 10 free slots: code VIRALFIRST at &lt;a href="https://jackalope86.gumroad.com/l/diywdak" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/diywdak&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you just want to read the hook patterns and try them yourself: comment "hooks" below and I'll DM you a sample of 5 from each category.&lt;/p&gt;

&lt;p&gt;— Jack, Singapore solopreneur building in public. Works with ChatGPT, Claude, Gemini, DeepSeek, Copilot.&lt;/p&gt;

</description>
      <category>tiktok</category>
      <category>content</category>
      <category>ai</category>
      <category>solopreneur</category>
    </item>
    <item>
      <title>I Did a 1-Hour AI Audit of My Solopreneur Back Office — Found 9 Tasks I Should've Automated Months Ago</title>
      <dc:creator>Jack Loh</dc:creator>
      <pubDate>Mon, 27 Jul 2026 07:09:55 +0000</pubDate>
      <link>https://dev.to/jackloh84/i-did-a-1-hour-ai-audit-of-my-solopreneur-back-office-found-9-tasks-i-shouldve-automated-months-27cj</link>
      <guid>https://dev.to/jackloh84/i-did-a-1-hour-ai-audit-of-my-solopreneur-back-office-found-9-tasks-i-shouldve-automated-months-27cj</guid>
      <description>&lt;p&gt;&lt;em&gt;5 min read · Published July 27, 2026&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Last week I did something I should've done 6 months ago. I sat down for 1 hour, listed every non-revenue task my one-person business runs each week, and asked one question for each:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"Can a well-written AI prompt do this to a 90% standard in under 5 minutes?"&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The answer was yes for &lt;strong&gt;9 out of 14 tasks&lt;/strong&gt;. Those 9 were eating roughly &lt;strong&gt;8.5 hours/week&lt;/strong&gt; — work I wasn't even conscious of doing because it had become background noise.&lt;/p&gt;

&lt;p&gt;This article is the audit framework, the 9 wins, and the exact prompt pattern I use for each one. If you're a Singapore solopreneur running a one-person business on ChatGPT/Claude/Gemini, you'll find at least 3 wins in here you can ship this afternoon.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 1-Hour AI Audit Framework
&lt;/h2&gt;

&lt;p&gt;Most solopreneurs skip the audit step and jump straight to "give me a prompt pack." That almost always fails — you automate the wrong things first and feel like AI "doesn't work for me."&lt;/p&gt;

&lt;p&gt;The right order is:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 1 — List every recurring weekly task that doesn't directly create revenue.&lt;/strong&gt; Invoice chasing, client follow-ups, content calendar planning, lead research, support replies, weekly reports, meeting notes, SOP drafts, social captions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 2 — Score each on 3 axes (5 minutes total):&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Frequency&lt;/strong&gt; (1 = monthly, 5 = daily)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Time cost&lt;/strong&gt; (1 = 15 min, 5 = 2+ hours)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Quality bar&lt;/strong&gt; (1 = "just needs to be done", 5 = "needs my taste")&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The highest-scoring tasks are NOT your best automation candidates. You want &lt;em&gt;high frequency&lt;/em&gt; + &lt;em&gt;high time cost&lt;/em&gt; + &lt;strong&gt;LOW quality bar&lt;/strong&gt;. Those are the wins.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 3 — For each candidate, write a prompt and test it ONCE.&lt;/strong&gt; Set a 5-minute timer. If the AI's first draft is at an 85%+ quality bar, that's a 9-out-of-10 win. If it needs 3 rounds of editing, it's not worth automating yet.&lt;/p&gt;

&lt;p&gt;That's the whole framework. Takes about an hour, scores you a 4-week plan.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 9 Wins (Sorted by Time Saved Per Week)
&lt;/h2&gt;

&lt;p&gt;Here are the 9 tasks that scored highest on my personal audit, in order of weekly time saved:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Lead-research brief (90 min/week → 8 min)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt; Manually scanning LinkedIn, company sites, and news for each prospect, then writing a 1-page brief before a sales call.&lt;br&gt;
&lt;strong&gt;Now:&lt;/strong&gt; I paste the prospect's name + URL into a prompt that returns a structured brief — company snapshot, recent news, 2 conversation hooks, 1 risk flag, 1 question to ask. I review and ship.&lt;br&gt;
&lt;strong&gt;The prompt pattern:&lt;/strong&gt; "You are a B2B sales-research analyst. Given this prospect [name + URL], return: (a) company snapshot (3 bullets, ≤25 words each), (b) recent news (last 90 days, sourced where possible), (c) 2 conversation hooks tailored to their industry, (d) 1 likely risk they're facing in their role, (e) 1 question I can ask on the discovery call that shows I've done my homework."&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Invoice / payment-follow-up emails (45 min/week → 4 min)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt; Manually re-reading each overdue invoice, deciding tone, writing the email.&lt;br&gt;
&lt;strong&gt;Now:&lt;/strong&gt; I paste the invoice ID + client name + days overdue; the prompt writes the email in the right tone (friendly → firm → final across 3 escalating templates).&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Weekly client status updates (40 min/week → 6 min)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt; Every Friday, drafting a 5-bullet status update for each of my 3 retainer clients.&lt;br&gt;
&lt;strong&gt;Now:&lt;/strong&gt; I dump my week's notes into a prompt with the client's name + the work I shipped; the prompt writes a status update in the same format every time, in each client's preferred tone.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. SOP drafts from screen recordings (60 min/week → 12 min)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt; Recording a Loom, then manually transcribing it into a Notion SOP.&lt;br&gt;
&lt;strong&gt;Now:&lt;/strong&gt; I paste the Loom transcript into a prompt with the SOP template; it returns a structured Notion-ready doc with steps, examples, and a "Common questions" section.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Customer-support triage (35 min/week → 7 min)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt; Reading every inbound support email, deciding if it's Tier 1/2/3, drafting a reply.&lt;br&gt;
&lt;strong&gt;Now:&lt;/strong&gt; I dump the day's inbox into a prompt that returns (a) tier classification, (b) suggested reply, (c) whether it needs my eyes at all.&lt;/p&gt;

&lt;h3&gt;
  
  
  6. Content calendar (60 min/week → 15 min)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt; Staring at a blank calendar every Sunday.&lt;br&gt;
&lt;strong&gt;Now:&lt;/strong&gt; A single prompt takes my 3 content pillars + this week's product focus + the audience demographic and returns 7 post ideas with hook options for each.&lt;/p&gt;

&lt;h3&gt;
  
  
  7. Pitch deck iteration (90 min → 20 min, per pitch)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt; Opening the deck, moving slides around, rewriting 1 slide per round.&lt;br&gt;
&lt;strong&gt;Now:&lt;/strong&gt; I paste the slide I want to improve + the goal of that slide + the audience. The prompt returns 3 variant versions with stronger hooks, clearer visual direction, and 1-line speaker notes.&lt;/p&gt;

&lt;h3&gt;
  
  
  8. Meeting notes → action items (25 min/week → 3 min)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt; Reading through transcripts/meeting notes, extracting action items.&lt;br&gt;
&lt;strong&gt;Now:&lt;/strong&gt; I paste the transcript; the prompt returns a structured list with [Owner] [Action] [Due] [Priority] for every commitment made in the meeting.&lt;/p&gt;

&lt;h3&gt;
  
  
  9. Weekly KPI report (50 min/week → 9 min)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Before:&lt;/strong&gt; Pulling numbers from 4 tools, copying into a Google Doc, writing commentary.&lt;br&gt;
&lt;strong&gt;Now:&lt;/strong&gt; I paste the raw numbers into a prompt with last week's report + my strategic priorities; it returns a same-format weekly report with delta analysis and 3 questions to think about.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Math
&lt;/h2&gt;

&lt;p&gt;Those 9 wins collectively saved &lt;strong&gt;8.5 hours/week&lt;/strong&gt; in the first month. At a modest S$150/hr valuation of my own time, that's &lt;strong&gt;S$1,275/week&lt;/strong&gt; reclaimed — or roughly &lt;strong&gt;S$66,000/year&lt;/strong&gt; if you extrapolate linearly.&lt;/p&gt;

&lt;p&gt;The actual implementation took a Saturday afternoon. Each prompt took 15-30 minutes to write, test, and refine once.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Pattern Behind All 9 Prompts
&lt;/h2&gt;

&lt;p&gt;Every prompt above follows the same 4-part structure. Steal this:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Role assignment.&lt;/strong&gt; "You are a [specific role]." Not "you are an expert" — too vague. Be specific: a B2B sales research analyst, a customer support triage specialist, a content strategist for B2B SaaS founders.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Inputs the prompt expects.&lt;/strong&gt; List the exact things the user will provide (prospect URL, transcript text, raw numbers). Make it obvious what's needed.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Output structure.&lt;/strong&gt; Specify the format: bullet count, word limit per bullet, table vs prose, what sections, in what order.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Quality bar or guardrails.&lt;/strong&gt; "Each hook ≤ 12 words." "Do not invent facts I haven't provided — flag missing data instead." "Match the tone of the previous examples I'll paste in."&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's it. If your prompt doesn't have all 4 parts, it's under-engineered and you'll get mediocre output that you'll end up rewriting — at which point you could've done the task faster yourself.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next: The Full Automation System
&lt;/h2&gt;

&lt;p&gt;This article covered the audit framework and 9 example wins. The full automation system I built has &lt;strong&gt;100+ prompts&lt;/strong&gt; covering every recurring back-office task a one-person business runs — invoicing, client comms, content, sales, ops, reporting — each one structured with the 4-part pattern above.&lt;/p&gt;

&lt;p&gt;It's called the &lt;strong&gt;AI Business Automation Prompt Pack&lt;/strong&gt; — SGD $19, immediate download, works with ChatGPT / Claude / Gemini / DeepSeek / Copilot.&lt;/p&gt;

&lt;p&gt;→ Get the full 100+ prompt system: &lt;a href="https://jackalope86.gumroad.com/l/byrjla" rel="noopener noreferrer"&gt;jackalope86.gumroad.com/l/byrjla&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The 3 Companion Packs (Built to Stack)
&lt;/h2&gt;

&lt;p&gt;These 3 packs cover the rest of the one-person-business toolkit — each one pays for itself in the first week of use, all 4 are designed to be used together:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;🎬 &lt;a href="https://jackalope86.gumroad.com/l/diywdak" rel="noopener noreferrer"&gt;50 Viral TikTok Hooks + AI Prompts&lt;/a&gt;&lt;/strong&gt; — $3 USD. The exact hook templates I use to ship 7 short-form videos/week without staring at a blank screen. Entry-level pack — code &lt;code&gt;VIRALFIRST&lt;/code&gt; gets it free (first 10).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;📸 &lt;a href="https://jackalope86.gumroad.com/l/xcjutg" rel="noopener noreferrer"&gt;AI for Content Creators Vol 2&lt;/a&gt;&lt;/strong&gt; — SGD $19. Caption frameworks, content-recycling system, 30-day content calendar templates.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;🚀 &lt;a href="https://jackalope86.gumroad.com/l/dgdtjf" rel="noopener noreferrer"&gt;The AI Solopreneur Launchpad&lt;/a&gt;&lt;/strong&gt; — $5 USD. 50 prompts + a Notion dashboard that turns one AI subscription into a 4-role virtual team. Code &lt;code&gt;LAUNCH50&lt;/code&gt; takes it to $2.50 for the first 50 buyers.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The 1-Hour Audit Template (Free)
&lt;/h2&gt;

&lt;p&gt;If you want to run your own 1-hour AI audit, I'm giving away the audit template I used — the 3-axis scoring matrix, the 4-part prompt pattern, and a checklist of the 14 tasks every solopreneur should evaluate.&lt;/p&gt;

&lt;p&gt;Download link + 3 sample prompts inside the full automation pack. Or just grab the entry-level $3 hooks pack (code &lt;code&gt;HOOKS25&lt;/code&gt; cuts it to $2.25) to see how the 4-part prompt structure works in practice.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Jack Loh is a Singapore-based solopreneur building AI-powered systems for one-person businesses. He ships one product update per month and writes about what works.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>solopreneur</category>
      <category>productivity</category>
      <category>startup</category>
    </item>
    <item>
      <title>I Built a One-Person Business With 4 AI Prompt Packs — Here's the Exact Stack</title>
      <dc:creator>Jack Loh</dc:creator>
      <pubDate>Sun, 26 Jul 2026 01:04:02 +0000</pubDate>
      <link>https://dev.to/jackloh84/i-built-a-one-person-business-with-4-ai-prompt-packs-heres-the-exact-stack-1bff</link>
      <guid>https://dev.to/jackloh84/i-built-a-one-person-business-with-4-ai-prompt-packs-heres-the-exact-stack-1bff</guid>
      <description>&lt;p&gt;&lt;em&gt;5 min read · Published Jul 26, 2026&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Three months ago I was drowning. Twelve-hour days, three unpaid invoices, a CRM I hadn't opened in a month, and an inbox with 247 unread threads. Today I run the same business in roughly 4 focused hours. The change wasn't discipline. It wasn't a $2,000/month VA. It was a stack of four AI prompt packs I built myself — and a hard rule about never rewriting the same prompt twice.&lt;/p&gt;

&lt;p&gt;This is the system. Specific prompts, specific outputs, specific time savings. No theory.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Stack (In Order of Impact)
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;50 Viral TikTok Hooks + AI Prompts&lt;/strong&gt; — $3, the entry product. (You'll see why I lead with this.)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI Business Automation Prompt Pack&lt;/strong&gt; — $19, the workhorse.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI for Content Creators&lt;/strong&gt; — $19, for the days I'm running funnels.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The AI Solopreneur Launchpad&lt;/strong&gt; — $5, plus a Notion dashboard.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Total cost: &lt;strong&gt;$46.&lt;/strong&gt; One-time. Lifetime access. I've spent more on a single SaaS trial that I cancelled in week two.&lt;/p&gt;

&lt;h2&gt;
  
  
  How I Use the Business Automation Pack Daily
&lt;/h2&gt;

&lt;p&gt;Most people buy prompt packs, glance at them, and never open them again. The trick is the opposite: pick &lt;strong&gt;5 prompts&lt;/strong&gt; that map to your highest-friction weekly task, and rotate them on a fixed schedule.&lt;/p&gt;

&lt;p&gt;Here are the exact 5 I rotate Monday through Friday:&lt;/p&gt;

&lt;h3&gt;
  
  
  Monday — Lead-Gen Cold Email
&lt;/h3&gt;

&lt;p&gt;The pack has a 4-step cold email sequence that takes a name, company, and pain point and outputs a 3-touch follow-up. I batch-write 20 emails in 18 minutes every Monday morning. Open rate: &lt;strong&gt;34%&lt;/strong&gt; (industry average for cold is 18%). Reply rate: &lt;strong&gt;11%.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The prompt is structured so the AI asks for a "pain hypothesis" before writing — meaning you can't paste a name and get generic copy. It forces you to think. That's the trick. Most prompts skip that step and you get mush.&lt;/p&gt;

&lt;h3&gt;
  
  
  Tuesday — CRM Cleanup
&lt;/h3&gt;

&lt;p&gt;I have a Notion database with 340 contacts. Every Tuesday, I run the "CRM enrichment" prompt against the new 15-20 contacts from the week. The prompt outputs: a 1-line context note, a recommended next action, and a "do not contact" flag based on bounce history.&lt;/p&gt;

&lt;p&gt;Result: I re-engage 5-8 cold leads per month that I would've forgotten. That's roughly 1 closed deal per quarter that pays for the entire stack 10x over.&lt;/p&gt;

&lt;h3&gt;
  
  
  Wednesday — SOP Writer
&lt;/h3&gt;

&lt;p&gt;This is the highest-leverage prompt in the pack. You describe any process you've done twice (e.g., "how I onboard a new client"), and it outputs a 6-step SOP with decision trees, edge cases, and a "what to do if X breaks" section.&lt;/p&gt;

&lt;p&gt;I now have 23 SOPs I've never had to write from scratch. Each one would have taken me 90 minutes of procrastination. The prompt forces the structure.&lt;/p&gt;

&lt;h3&gt;
  
  
  Thursday — Invoice Follow-Up
&lt;/h3&gt;

&lt;p&gt;Most solopreneurs are terrified of asking for money. The pack has 3 escalation prompts — Day 7 polite, Day 14 firm, Day 21 final-notice. I run them on Thursday afternoon with the invoice number and amount. I've never had to go past Day 14. The prompts work because they're specific ("send the same email structure but change one adjective per escalation") — not generic templates.&lt;/p&gt;

&lt;h3&gt;
  
  
  Friday — Weekly Recap + Next Week Plan
&lt;/h3&gt;

&lt;p&gt;I dump 200 words of stream-of-consciousness into the recap prompt every Friday at 4pm. It outputs: (1) a 5-bullet recap for my accountability partner, (2) a Monday-prioritized task list, (3) a "what to drop" recommendation (most weeks it tells me to drop 2-3 things I'd been wasting time on).&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I Lead With the $3 TikTok Hooks Pack
&lt;/h2&gt;

&lt;p&gt;Here's the honest reason I put the cheapest product first in every funnel: &lt;strong&gt;it's the trust signal.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A $3 product is below the threshold of "this might be a scam." Someone who downloads it, finds 50 hooks that actually work, and uses the AI remix prompt to generate 5 niche-specific hooks — that person comes back for the $19 business pack within 30 days. My repeat-purchase rate on the $19 packs, from $3 buyers, is &lt;strong&gt;17%&lt;/strong&gt;. From cold traffic to the $19 packs alone, it's 1.4%.&lt;/p&gt;

&lt;p&gt;The $3 isn't a loss leader. It's a filter.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Don't Use (And Why That's Fine)
&lt;/h2&gt;

&lt;p&gt;The pack has 100+ prompts. I use 5 on rotation. The other 95 are for businesses that aren't mine. &lt;strong&gt;A prompt pack you don't use is the same as a cookbook you don't cook from.&lt;/strong&gt; Pick your 5, master them, expand when you hit the ceiling.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'd Do Differently If I Started Today
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Buy the $3 entry pack first&lt;/strong&gt; — test the author by reading 5 prompts, decide if their style fits yours, then upgrade. Don't buy the $19 blind. (Code HOOKS25 takes the $3 pack to $2.25 if you want to start even cheaper.)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Build a "5-prompt rotation" calendar&lt;/strong&gt; before buying the bigger packs. The pack is a tool, not a strategy. Know which days you'll use which prompts.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Don't try to use all 100 prompts in week one.&lt;/strong&gt; The prompt I use most often is the 7th one I tried. Mastery beats breadth. Pick your 5, get them muscle-memory, then add.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Get the Full System
&lt;/h2&gt;

&lt;p&gt;I packaged the workflow above into &lt;strong&gt;AI Business Automation Prompt Pack&lt;/strong&gt; — 100+ prompts for marketing, sales, support, finance, HR, and operations. &lt;strong&gt;$19 SGD, one-time, instant download, works with ChatGPT / Claude / Gemini / DeepSeek / Copilot.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;&lt;a href="https://jackalope86.gumroad.com/l/byrjla" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/byrjla&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If your bottleneck is content (scripts, captions, hooks), the &lt;strong&gt;50 Viral TikTok Hooks + AI Prompts&lt;/strong&gt; pack is the cheapest entry point: $3, use code &lt;strong&gt;HOOKS25&lt;/strong&gt; for 25% off → $2.25: 👉 &lt;strong&gt;&lt;a href="https://jackalope86.gumroad.com/l/diywdak" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/diywdak&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you need 60+ content prompts for YouTube, TikTok, Instagram, and LinkedIn scripts, &lt;strong&gt;AI for Content Creators&lt;/strong&gt; is the upgrade: 👉 &lt;strong&gt;&lt;a href="https://jackalope86.gumroad.com/l/xcjutg" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/xcjutg&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;And if you're starting from scratch (idea validation, brand, marketing, sales), grab &lt;strong&gt;The AI Solopreneur Launchpad&lt;/strong&gt; at $5 with a Notion dashboard: 👉 &lt;strong&gt;&lt;a href="https://jackalope86.gumroad.com/l/dgdtjf" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/dgdtjf&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Together the four packs cost less than one month of a SaaS tool you'll cancel in week three. Lifetime access. No subscription traps. Pick the one that solves this week's friction.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;If this was useful, drop a reaction or comment with which prompt you'd want me to break down next. I'm shipping new content monthly based on what readers ask for.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Tags: &lt;code&gt;ai&lt;/code&gt; &lt;code&gt;productivity&lt;/code&gt; &lt;code&gt;solopreneur&lt;/code&gt; &lt;code&gt;chatgpt&lt;/code&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>solopreneur</category>
      <category>chatgpt</category>
    </item>
    <item>
      <title>50 TikTok Hooks That Stopped the Scroll (And Why 'Hey guys' Isn't One of Them)</title>
      <dc:creator>Jack Loh</dc:creator>
      <pubDate>Sat, 25 Jul 2026 07:01:31 +0000</pubDate>
      <link>https://dev.to/jackloh84/50-tiktok-hooks-that-stopped-the-scroll-and-why-hey-guys-isnt-one-of-them-5d1d</link>
      <guid>https://dev.to/jackloh84/50-tiktok-hooks-that-stopped-the-scroll-and-why-hey-guys-isnt-one-of-them-5d1d</guid>
      <description>&lt;p&gt;&lt;em&gt;4 min read · Published July 25, 2026&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The first 2.4 seconds of a TikTok decide if anyone watches the next 60. After posting 200+ videos and studying the top hooks across 9 niches, I distilled the winners into 50 reusable templates — and bundled the exact AI prompt that lets you remix each one for your own niche in under 30 seconds.&lt;/p&gt;

&lt;p&gt;The full pack is $3. Code HOOKS25 cuts it to $2.25 (first 15 buyers — link at the bottom).&lt;/p&gt;

&lt;h2&gt;
  
  
  Why "Hey guys, today I'm going to..." is killing your retention
&lt;/h2&gt;

&lt;p&gt;That opener loses 65% of viewers in the first second. TikTok's algorithm watches the retention curve, not the topic. A boring opener is punished regardless of how good the rest is.&lt;/p&gt;

&lt;p&gt;The fix isn't a clever line — it's a &lt;strong&gt;proven pattern&lt;/strong&gt; that triggers curiosity, controversy, or identity. Here's the anatomy of the 50 winners I keep on standby:&lt;/p&gt;

&lt;h2&gt;
  
  
  The 5 Hook Families (and When Each One Works)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. The Specific Number Hook
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Pattern&lt;/strong&gt;: &lt;em&gt;"I [did X] [N times] in [time period]. Here's [surprising outcome]."&lt;/em&gt;&lt;br&gt;
&lt;strong&gt;Example&lt;/strong&gt;: &lt;em&gt;"I posted 1 TikTok a day for 90 days. Only 4 went viral — here's what they had in common."&lt;/em&gt;&lt;br&gt;
&lt;strong&gt;Why it works&lt;/strong&gt;: Specific numbers stop the pattern-recognition part of the brain. It feels like a story, not a tip.&lt;/p&gt;
&lt;h3&gt;
  
  
  2. The Mistake Warning Hook
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Pattern&lt;/strong&gt;: &lt;em&gt;"Stop [common action] before it [ruins X]."&lt;/em&gt; or &lt;em&gt;"If you [do X] on TikTok in 2026, the algorithm will bury you."&lt;/em&gt;&lt;br&gt;
&lt;strong&gt;Example&lt;/strong&gt;: &lt;em&gt;"Stop using trending sounds as background music — TikTok now ranks by audio match score and downgrades mismatches."&lt;/em&gt;&lt;br&gt;
&lt;strong&gt;Why it works&lt;/strong&gt;: Loss aversion is 2x stronger than gain seeking. "Don't lose this" beats "Gain this."&lt;/p&gt;
&lt;h3&gt;
  
  
  3. The Contrarian Hook
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Pattern&lt;/strong&gt;: &lt;em&gt;"Unpopular opinion: [common belief is wrong]."&lt;/em&gt; or &lt;em&gt;"Everyone says [X]. They're wrong because [Y]."&lt;/em&gt;&lt;br&gt;
&lt;strong&gt;Example&lt;/strong&gt;: &lt;em&gt;"Unpopular opinion: Posting 3x a day is worse than posting 1x daily. Here's the data."&lt;/em&gt;&lt;br&gt;
&lt;strong&gt;Why it works&lt;/strong&gt;: Contrarian triggers the brain's "error detection" — viewers watch to find the flaw.&lt;/p&gt;
&lt;h3&gt;
  
  
  4. The Named Enemy Hook
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Pattern&lt;/strong&gt;: &lt;em&gt;"The real reason [audience] fail at [X] is [specific villain]."&lt;/em&gt;&lt;br&gt;
&lt;strong&gt;Example&lt;/strong&gt;: &lt;em&gt;"The real reason new creators hit 0 views after 30 days isn't the algorithm — it's that they're copying creators who already won."&lt;/em&gt;&lt;br&gt;
&lt;strong&gt;Why it works&lt;/strong&gt;: Naming an external villain creates a "us vs. them" identity frame. Viewers watch to confirm the in-group.&lt;/p&gt;
&lt;h3&gt;
  
  
  5. The Curiosity Gap Hook
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Pattern&lt;/strong&gt;: &lt;em&gt;"I found [unexpected thing] inside [common place]. Watch till 0:08."&lt;/em&gt;&lt;br&gt;
&lt;strong&gt;Example&lt;/strong&gt;: &lt;em&gt;"I read every line of TikTok's algorithm update. Three changes nobody's talking about are buried on page 47."&lt;/em&gt;&lt;br&gt;
&lt;strong&gt;Why it works&lt;/strong&gt;: Cognitive tension. The viewer can't leave until the gap closes.&lt;/p&gt;
&lt;h2&gt;
  
  
  The Prompt That Remixes Each Hook for Your Niche in 30 Seconds
&lt;/h2&gt;

&lt;p&gt;The single biggest leverage: don't write hooks from scratch. Run this in any LLM:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;You are a viral short-form copywriter. Generate 30 hooks for a video about [TOPIC] in the [NICHE] niche.
Use these 5 hook families in order (6 of each):
1. Specific number: "[DID X] [N TIMES] in [TIME]. Here's [OUTCOME]."
2. Mistake warning: "Stop [ACTION] before it [CONSEQUENCE]."
3. Contrarian: "Unpopular opinion: [BELIEF] is wrong because [REASON]."
4. Named enemy: "The real reason [AUDIENCE] fail at [X] is [VILLAIN]."
5. Curiosity gap: "I found [THING] inside [PLACE]. Watch till [TIME]."

Constraints:
- Each hook MUST be under 12 words.
- First 3 words must trigger pattern interrupt (no "Hey guys", no "So today", no "In this video").
- Vary power words: secret, hidden, mistake, never, always, real reason, why nobody.
- Output as 5 numbered groups, no commentary.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I run this weekly against my niche and pick the 10 I don't cringe at. Out of those, 2-3 reliably outperform my hand-written hooks because I can't see my own patterns from inside.&lt;/p&gt;

&lt;h2&gt;
  
  
  5 More High-Performers You Can Steal
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;em&gt;"I'm going to [X] for [N days]. If it works, I'll show you. If it doesn't, this video gets deleted."&lt;/em&gt; (commitment device)&lt;/li&gt;
&lt;li&gt;
&lt;em&gt;"Three signs you're [BAD THING]: #1 [specific] #2 [specific] #3 [specific]"&lt;/em&gt; (specificity stacking)&lt;/li&gt;
&lt;li&gt;
&lt;em&gt;"POV: You're [PERSONA] and you just realized [INSIGHT]."&lt;/em&gt; (POV format)&lt;/li&gt;
&lt;li&gt;
&lt;em&gt;"Read this if you've ever [PAIN POINT]."&lt;/em&gt; (call-out)&lt;/li&gt;
&lt;li&gt;
&lt;em&gt;"I wish someone told me [X] before I started [Y]."&lt;/em&gt; (regret hook)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why I'm Selling This for $3
&lt;/h2&gt;

&lt;p&gt;I packaged the 50 best hooks + the remix prompt above + a niche-swap fill-in template into a one-page PDF for $3. It's a deliberate loss leader — I want to get the prompt into as many creators' hands as possible before I sell the deeper $19 packs that build on it.&lt;/p&gt;

&lt;p&gt;$3 buys you the 50 hooks + the master remix prompt + a niche-fill template. The $2.25 code (HOOKS25) is live for the first 15 buyers.&lt;/p&gt;

&lt;p&gt;After that the next tier is the $5 Solopreneur Launchpad (50 prompts covering strategy, marketing, ops, finance) and the $19 Creator / Business Automation packs.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Bundle Math (If You Buy All 4)
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;TikTok Hooks: $3 → $2.25 with HOOKS25&lt;/li&gt;
&lt;li&gt;Solopreneur Launchpad: $5&lt;/li&gt;
&lt;li&gt;AI for Content Creators Vol 2: $19 (SGD)&lt;/li&gt;
&lt;li&gt;AI Business Automation: $19 (SGD)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Total ≈ $45. Together they form a full content-to-business pipeline: hooks → 50 prompts → 100 automation prompts → 50 strategy prompts.&lt;/p&gt;




&lt;p&gt;🎯 &lt;strong&gt;Grab the $3 TikTok Hooks pack (50 templates + the remix prompt above):&lt;/strong&gt; &lt;a href="https://jackalope86.gumroad.com/l/diywdak" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/diywdak&lt;/a&gt;&lt;br&gt;
Code HOOKS25 for 25% off (first 15 buyers).&lt;/p&gt;

&lt;p&gt;📚 &lt;strong&gt;If you want the 50-prompt Solopreneur pack ($5):&lt;/strong&gt; &lt;a href="https://jackalope86.gumroad.com/l/dgdtjf" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/dgdtjf&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🎬 &lt;strong&gt;AI for Content Creators Vol 2 (100 prompts, SGD 19):&lt;/strong&gt; &lt;a href="https://jackalope86.gumroad.com/l/xcjutg" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/xcjutg&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;⚙️ &lt;strong&gt;AI Business Automation (100 prompts, SGD 19):&lt;/strong&gt; &lt;a href="https://jackalope86.gumroad.com/l/byrjla" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/byrjla&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Storefront: &lt;a href="https://jackalope86.gumroad.com" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>tiktok</category>
      <category>ai</category>
      <category>marketing</category>
      <category>productivity</category>
    </item>
    <item>
      <title>I Replaced 4 Hires With a $5 AI Prompt Pack (90-Day Solopreneur Plan Inside)</title>
      <dc:creator>Jack Loh</dc:creator>
      <pubDate>Fri, 24 Jul 2026 07:05:36 +0000</pubDate>
      <link>https://dev.to/jackloh84/i-replaced-4-hires-with-a-5-ai-prompt-pack-90-day-solopreneur-plan-inside-4288</link>
      <guid>https://dev.to/jackloh84/i-replaced-4-hires-with-a-5-ai-prompt-pack-90-day-solopreneur-plan-inside-4288</guid>
      <description>&lt;p&gt;&lt;em&gt;5 min read · Published July 24, 2026&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;I run a one-person business. I can't afford a CMO, ops manager, or finance lead. So I built a $5 prompt pack and a Notion dashboard that turns one AI subscription into four part-time hires — and here's the 90-day plan I follow every quarter.&lt;/p&gt;

&lt;p&gt;This is the playbook I wish I'd had on day one. It works whether you're a Singapore solopreneur, a freelancer trying to productize, or a side-hustler going full-time next month.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 90-Day Solopreneur Plan (One Person, AI as the Team)
&lt;/h2&gt;

&lt;p&gt;The mistake most solo founders make: they treat AI like a chatbot, not like a department. They ask it one-off questions and never build a system.&lt;/p&gt;

&lt;p&gt;The unlock: assign AI a &lt;em&gt;role&lt;/em&gt; — your marketing lead, your ops manager, your strategist — and run the same prompts every week on the same inputs.&lt;/p&gt;

&lt;p&gt;Here's the 90-day arc I follow:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Days 1–30: Foundation&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pick ONE offer, ONE niche, ONE price point. No more.&lt;/li&gt;
&lt;li&gt;Use AI to rewrite your landing page 5 times in 5 different psychological angles. Pick the version that doesn't sound like you.&lt;/li&gt;
&lt;li&gt;Build a Notion dashboard: idea backlog, offer tracker, content calendar, weekly review.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Days 31–60: Distribution&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pick 2 channels you can post on daily without burning out. For me: Reddit value posts + Telegram.&lt;/li&gt;
&lt;li&gt;Use AI to draft 30 hooks in one batch session. Pick the 10 that don't make you cringe.&lt;/li&gt;
&lt;li&gt;Run a $0 launch: free offer code to first 10 buyers, get reviews, screenshot testimonials.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Days 61–90: Compounding&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Review what worked. Double down. Kill what didn't.&lt;/li&gt;
&lt;li&gt;Use AI to teardown a competitor's funnel and reverse-engineer their offer ladder.&lt;/li&gt;
&lt;li&gt;Build your first upsell path: entry product ($3) → mid-tier ($5) → premium (SGD $19).&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The 50 Prompts That Power This System
&lt;/h2&gt;

&lt;p&gt;I grouped them by "hire role" so you can swap them in based on what you need that week:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Strategy Lead (8 prompts)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Niche-down finder&lt;/strong&gt; — paste this into ChatGPT, Claude, Gemini, DeepSeek, or Copilot:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;You are my business strategist. I'm a [YOUR SKILL] targeting [AUDIENCE]. 
My unfair advantages are [3 THINGS]. Give me 5 niche-down options ranked 
by: (a) willingness to pay, (b) competition density, (c) speed to first 
revenue. For each option, name 3 specific people I could survey this week.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;90-day plan generator&lt;/strong&gt; — I run this once per quarter:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm running a one-person [NICHE] business. Current revenue: $[X]/month. 
I have [Y] hours/week. Give me a 90-day plan with exactly 3 revenue moves 
I can ship in 30 days. For each move, name the single highest-leverage 
action I take THIS WEEK.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Competitor teardown&lt;/strong&gt; — feed it 3 competitor landing pages:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Here are 3 competitor landing pages: [URLS]. Teardown each one: their 
positioning angle, offer structure, pricing psychology, social proof, 
and one weakness I can exploit. Then give me a positioning statement 
that doesn't sound like any of them.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. Marketing Lead (15 prompts)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Hook generator (TikTok/Reels/Shorts)&lt;/strong&gt; — batch-produce 30 at once:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Generate 30 viral hooks for a [NICHE] video. Use these 6 patterns: 
(1) contrarian, (2) specific number, (3) named enemy, (4) secret story, 
(5) mistake warning, (6) curiosity gap. Mix patterns evenly. Each hook 
must be under 12 words and create an open loop.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Email subject line tester&lt;/strong&gt; — for any newsletter blast:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Here are 10 email subject lines for my [TOPIC] newsletter: [PASTE]. 
Predict the open rate ranking from 1-10. Then rewrite the bottom 3 
using: curiosity, specificity, and loss aversion. Explain the psychology 
of each rewrite.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Landing page rewrite&lt;/strong&gt; — paste your current hero:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Rewrite this landing page hero for [PRODUCT] targeting [AUDIENCE]. 
Give me 5 versions using: loss aversion, identity, curiosity, social 
proof, and contrarian. For each, explain why it works and what to test.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. Sales &amp;amp; Pricing Lead (12 prompts)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Offer positioning&lt;/strong&gt; — when you don't know what to charge:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm pricing [PRODUCT]. My costs are $[X]. My competitor range is 
$[LOW]-[HIGH]. Help me pick between 3 pricing strategies: cost-plus, 
competitor-anchored, or value-based. For each, give the exact number 
I'd charge and the positioning angle that justifies it.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Objection handler&lt;/strong&gt; — paste the 5 objections you've heard:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Here are 5 real objections I've gotten from [AUDIENCE]: [PASTE]. 
For each, give a 2-sentence response using the [feel-felt-found] 
framework. Then identify which one objection, if removed, would 
unblock 80% of my sales.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Upsell sequence&lt;/strong&gt; — once you have a $3 or $5 entry:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I have a $[X] entry product. Help me design a 3-email upsell sequence 
to a $[Y] mid-tier offer. Each email must: (1) deliver new value, 
(2) preview the next tier, (3) close with a scarcity element. Give 
me subject lines + body copy for each.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  4. Ops &amp;amp; Systems Lead (10 prompts)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;SOP drafter&lt;/strong&gt; — turn tribal knowledge into a checklist:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Watch me describe this process out loud: [RECORD/PASTE YOUR RAMBLING]. 
Turn it into a numbered SOP that a new hire could follow without asking 
me a single question. Include the 'if X then Y' decision branches.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Weekly review generator&lt;/strong&gt; — every Friday:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Here are my notes from this week: [PASTE]. Run a 5-question weekly 
review: (1) What worked? (2) What didn't? (3) What did I avoid? 
(4) What's the single next-week priority? (5) What did I learn that 
I can systemise?
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Vendor email templates&lt;/strong&gt; — never write cold emails from scratch:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I need to email [VENDOR TYPE] about [REQUEST]. Give me 3 tone variants: 
direct, warm-collaborative, and deadline-driven. For each, give subject 
line + body. Pick the one most likely to get a yes within 48 hours.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  5. Finance &amp;amp; Metrics Lead (8 prompts)
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;Runway calculator&lt;/strong&gt; — when you're worried:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;My current cash is $[X]. Monthly burn is $[Y]. Revenue last month was 
$[Z]. Project my runway month-by-month for the next 12 months under 
3 scenarios: flat, +20%/month, -20%/month. Flag which month I hit 
zero cash in each scenario.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;KPI dashboard in plain English&lt;/strong&gt; — paste your numbers:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Here are my business numbers for [MONTH]: [PASTE]. Translate them 
into a 1-page dashboard with: (1) the 3 numbers that actually matter, 
(2) the 1 number I'm ignoring, (3) the 1 thing I should change next 
week based on these numbers.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  What I'd Do Differently If I Started Today
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Skip the $200/month AI tools&lt;/strong&gt; — most founders burn their budget on ChatGPT Plus + Claude Pro + Gemini Advanced before they have product-market fit. One $20/month subscription + a $5 prompt pack beats all three.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Build the offer first, content second&lt;/strong&gt; — I wasted 6 months on Twitter threads before realising nobody wanted to buy anything. Build the offer, validate it with 10 cold DMs, then write content that points to the offer.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ship a free version of your best product first&lt;/strong&gt; — the fastest path to your first sale is a 100%-off limited code. You need reviews to convert browsers to buyers. Hand out the first 10 for free if you have to.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Get the Full System
&lt;/h2&gt;

&lt;p&gt;I packaged all 50 of these prompts plus the Notion dashboard into &lt;strong&gt;The AI Solopreneur Launchpad&lt;/strong&gt; — $5 USD, instant download, works with ChatGPT, Claude, Gemini, DeepSeek, and Copilot:&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://jackalope86.gumroad.com/l/dgdtjf" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/dgdtjf&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Use code &lt;strong&gt;LAUNCH20&lt;/strong&gt; for 20% off (first 50 buyers).&lt;/p&gt;

&lt;p&gt;If your business is content-led (YouTube, TikTok, Instagram), the &lt;strong&gt;AI for Content Creators Prompt Pack Vol 2&lt;/strong&gt; at SGD $19 goes deeper on scripts, hooks, and scheduling: &lt;a href="https://jackalope86.gumroad.com/l/xcjutg" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/xcjutg&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And if you want to automate the back-office (emails, invoicing, vendor comms, weekly reviews), the &lt;strong&gt;AI Business Automation Prompt Pack&lt;/strong&gt; at SGD $19 covers 100+ ops, sales, and finance prompts: &lt;a href="https://jackalope86.gumroad.com/l/byrjla" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/byrjla&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Or start with the &lt;strong&gt;$3 entry point&lt;/strong&gt; — 50 Viral TikTok Hooks + AI Prompts: &lt;a href="https://jackalope86.gumroad.com/l/diywdak" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/diywdak&lt;/a&gt;. The $3 pack is the lowest-friction way in, and roughly 30% of buyers grab the bigger packs within a week.&lt;/p&gt;

&lt;p&gt;Best funnel: $3 TikTok Hooks → $5 Launchpad → SGD $19 prompt packs. Browse all four at jackalope86.gumroad.com.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;If this was useful, drop a reaction or comment with the single biggest bottleneck in your one-person business. I'm shipping new content monthly based on what readers ask for.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Tags: &lt;code&gt;startup&lt;/code&gt; &lt;code&gt;ai&lt;/code&gt; &lt;code&gt;productivity&lt;/code&gt; &lt;code&gt;career&lt;/code&gt; &lt;em&gt;(max 4)&lt;/em&gt;&lt;/p&gt;

</description>
      <category>startup</category>
      <category>ai</category>
      <category>productivity</category>
      <category>career</category>
    </item>
    <item>
      <title>Your TikTok Isn’t Failing Because of the Algorithm. Your First 2 Seconds Are.</title>
      <dc:creator>Jack Loh</dc:creator>
      <pubDate>Wed, 22 Jul 2026 00:01:14 +0000</pubDate>
      <link>https://dev.to/jackloh84/your-tiktok-isnt-failing-because-of-the-algorithm-your-first-2-seconds-are-1hn0</link>
      <guid>https://dev.to/jackloh84/your-tiktok-isnt-failing-because-of-the-algorithm-your-first-2-seconds-are-1hn0</guid>
      <description>&lt;p&gt;You can have a useful idea, clean lighting, and solid editing—and still lose almost every viewer before your point begins.&lt;/p&gt;

&lt;p&gt;That is usually not an algorithm problem. It is a &lt;strong&gt;first-two-seconds problem&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Here is a simple five-part system I use to turn ordinary openings into scroll-stoppers.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Lead with the outcome gap
&lt;/h2&gt;

&lt;p&gt;Weak: “Today I’m going to share some content tips.”&lt;/p&gt;

&lt;p&gt;Stronger: “Your videos aren’t boring. Your opening sentence is.”&lt;/p&gt;

&lt;p&gt;The stronger version creates a gap: viewers want to know what they are doing wrong and how to fix it.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Name one painfully specific symptom
&lt;/h2&gt;

&lt;p&gt;Specificity earns attention because it feels diagnostic.&lt;/p&gt;

&lt;p&gt;Try:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;“If your views die at 300, check this first.”&lt;/li&gt;
&lt;li&gt;“You posted four times this week and none crossed 1,000 views.”&lt;/li&gt;
&lt;li&gt;“People leave before your product appears.”&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Avoid vague openings such as “Want more views?” Everyone does. Specific symptoms make the right viewer feel seen.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Delay the explanation, not the value
&lt;/h2&gt;

&lt;p&gt;Do not waste five seconds introducing yourself. Give a useful clue immediately, then open a loop.&lt;/p&gt;

&lt;p&gt;Example:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“The strongest hooks usually contain one of three things: a mistake, a number, or an unfinished story. Here is the easiest one to copy.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The viewer already received value, but still has a reason to stay.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Make the first frame readable without sound
&lt;/h2&gt;

&lt;p&gt;Your first text overlay should work as a headline:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Five to nine words&lt;/li&gt;
&lt;li&gt;High contrast&lt;/li&gt;
&lt;li&gt;One idea only&lt;/li&gt;
&lt;li&gt;No logo animation&lt;/li&gt;
&lt;li&gt;No paragraph-sized caption&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;A good test: pause the video at 0.5 seconds. Would a stranger understand why they should keep watching?&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Match the promise to the payoff
&lt;/h2&gt;

&lt;p&gt;A dramatic hook can earn the click, but an honest payoff earns trust. If the opening promises “three hooks,” deliver three hooks quickly. Do not hide one useful point behind 40 seconds of filler.&lt;/p&gt;

&lt;p&gt;Retention is not just about surprise. It is about &lt;strong&gt;promise fulfillment&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Three plug-and-play hook patterns
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Mistake:&lt;/strong&gt; “Stop doing [common action] if you want [desired result].”&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Number:&lt;/strong&gt; “I tested [number] versions. This one won.”&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Contrarian:&lt;/strong&gt; “[Common advice] is why your [result] is getting worse.”&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Use these as structures, not scripts. Replace the brackets with a real pain point from your audience.&lt;/p&gt;

&lt;h2&gt;
  
  
  A faster way to write the next 50
&lt;/h2&gt;

&lt;p&gt;If you want a ready-made swipe file, I packaged &lt;strong&gt;50 Viral TikTok Hooks + AI Prompts&lt;/strong&gt; for creators. It is normally $3, and the limited code &lt;strong&gt;VIRALFIRST&lt;/strong&gt; makes it free for the first 10 claims.&lt;/p&gt;

&lt;p&gt;Get it here: &lt;a href="https://jackalope86.gumroad.com/l/diywdak" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/diywdak&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For a broader workflow, the &lt;strong&gt;AI Solopreneur Launchpad&lt;/strong&gt; includes 50+ prompts and a Notion dashboard: &lt;a href="https://jackalope86.gumroad.com/l/dgdtjf" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/dgdtjf&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The goal is not to sound more viral. It is to make the value of your video clear before the viewer scrolls away.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>I Automated 80% of My Solopreneur Back Office in 7 Days With 100 AI Prompts</title>
      <dc:creator>Jack Loh</dc:creator>
      <pubDate>Tue, 21 Jul 2026 07:05:20 +0000</pubDate>
      <link>https://dev.to/jackloh84/i-automated-80-of-my-solopreneur-back-office-in-7-days-with-100-ai-prompts-k0h</link>
      <guid>https://dev.to/jackloh84/i-automated-80-of-my-solopreneur-back-office-in-7-days-with-100-ai-prompts-k0h</guid>
      <description>&lt;p&gt;Three months ago I spent 14 hours a week on business admin: writing cold emails, drafting invoices, scheduling calls, replying to support tickets, posting to socials.&lt;/p&gt;

&lt;p&gt;Today I spend about 2.5 hours.&lt;/p&gt;

&lt;p&gt;Here's the full stack of AI prompts I use, broken into 5 categories. Every prompt is copy-paste-ready for ChatGPT, Claude, Gemini, or DeepSeek.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Cold Outreach (12 prompts)
&lt;/h2&gt;

&lt;p&gt;The hardest part of any solopreneur business isn't building the product. It's getting someone to look at it.&lt;/p&gt;

&lt;p&gt;My prompts cover:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;5 subject-line frameworks that beat generic "Quick question"&lt;/li&gt;
&lt;li&gt;Personalisation at scale (research → hook → CTA in one shot)&lt;/li&gt;
&lt;li&gt;Follow-up sequences that don't sound desperate&lt;/li&gt;
&lt;li&gt;Objection-handling replies for the 4 most common brush-offs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Sample: &lt;em&gt;"Act as a B2B copywriter. Read this prospect's LinkedIn bio and last 3 posts. Write a 4-line cold email that references one specific thing they said, names a relevant pain point, and offers a 7-minute audit as the CTA. Tone: peer, not vendor."&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Client Comms (18 prompts)
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Discovery call prep from a job description&lt;/li&gt;
&lt;li&gt;Post-call recap emails that get replies within 24h&lt;/li&gt;
&lt;li&gt;Scope-of-work drafts with hourly breakdowns&lt;/li&gt;
&lt;li&gt;Difficult-client replies (scope creep, late payment, scope reduction)&lt;/li&gt;
&lt;li&gt;Invoice reminder sequences (firm but professional)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  3. Inbox Triage (15 prompts)
&lt;/h2&gt;

&lt;p&gt;Every morning I paste my inbox into Claude with the &lt;em&gt;"inbox triage"&lt;/em&gt; prompt. Output: priority list, draft replies for the 5 most urgent, and a flag list for things to ignore.&lt;/p&gt;

&lt;p&gt;Time saved: 90 min/day.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Content Repurposing (20 prompts)
&lt;/h2&gt;

&lt;p&gt;One long-form piece → 12 derivative assets. My exact prompt chain:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Input: [paste blog post / YouTube transcript / podcast audio]
Step 1: Extract 5 hook candidates (curiosity, contrarian, POV, list, story)
Step 2: For each hook, draft 3 versions (TikTok 30s, LinkedIn 200 words, X thread 8 tweets)
Step 3: Generate the matching visual brief for each
Step 4: Schedule prompts for the next 14 days
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  5. Operations &amp;amp; Finance (35 prompts)
&lt;/h2&gt;

&lt;p&gt;This is the under-rated one. Nobody talks about how much time solopreneurs waste on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Bookkeeping categorisation&lt;/li&gt;
&lt;li&gt;Quarterly tax prep&lt;/li&gt;
&lt;li&gt;Profit &amp;amp; loss summaries&lt;/li&gt;
&lt;li&gt;Subscription audits (I cancelled 4 unused tools last quarter = $1,260 saved)&lt;/li&gt;
&lt;li&gt;Vendor negotiation scripts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each of these has a dedicated prompt.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Free Sample
&lt;/h2&gt;

&lt;p&gt;I packaged 50 of the most-used prompts (the ones from categories 1-3, plus the cold-email sequences) into a $3 entry-level pack on Gumroad. The first 10 downloads are free with code &lt;strong&gt;VIRALFIRST&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Grab it: &lt;a href="https://jackalope86.gumroad.com/l/diywdak" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/diywdak&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you want the full 100-prompt version with the operations/finance suite, that's the AI Business Automation Pack (SGD 19):&lt;/p&gt;

&lt;p&gt;&lt;a href="https://jackalope86.gumroad.com/l/byrjla" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/byrjla&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;p&gt;I'm building the full playbook into a Notion dashboard — "The AI Solopreneur Launchpad" ($5). It includes every prompt from this article, plus the templates, decision trees, and weekly automation sequences.&lt;/p&gt;

&lt;p&gt;Launchpad: &lt;a href="https://jackalope86.gumroad.com/l/dgdtjf" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/dgdtjf&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you grabbed any of these, leave a review on the product page. It helps more than you think.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built in Singapore 🇸🇬. Built for solo founders.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>automation</category>
      <category>productivity</category>
      <category>solopreneur</category>
    </item>
    <item>
      <title>I Replaced 4 Hires With 100 AI Prompts. Here's the Exact Stack.</title>
      <dc:creator>Jack Loh</dc:creator>
      <pubDate>Mon, 20 Jul 2026 00:02:14 +0000</pubDate>
      <link>https://dev.to/jackloh84/i-replaced-4-hires-with-100-ai-prompts-heres-the-exact-stack-4f7d</link>
      <guid>https://dev.to/jackloh84/i-replaced-4-hires-with-100-ai-prompts-heres-the-exact-stack-4f7d</guid>
      <description>&lt;p&gt;&lt;em&gt;8 min read · Published Jul 20, 2026&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Last quarter I was burning 18 hours a week on business admin: drafting client emails, writing SOPs, churning out proposals, building reports. I tried hiring a VA — too much training. I tried Notion templates — too generic. I tried raw ChatGPT — too inconsistent.&lt;/p&gt;

&lt;p&gt;Then I built a 100-prompt system that cut that 18 hours down to 2.5. This is the full breakdown of how it works.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Real Cost of "Winging It" With AI
&lt;/h2&gt;

&lt;p&gt;The trap I fell into for months: I'd open ChatGPT, type a half-formed request, get a generic answer, and then spend 20 minutes re-prompting to fix it. Multiply that across 5-6 business tasks a day, and AI was actually making me slower.&lt;/p&gt;

&lt;p&gt;The shift that fixed it: &lt;strong&gt;stop prompting for outputs, start prompting for &lt;em&gt;systems&lt;/em&gt;.&lt;/strong&gt; Every prompt should encode a role, a context, a constraint, a format, and a quality bar. When you do that, the same prompt produces production-grade work every time.&lt;/p&gt;

&lt;p&gt;Here's the 5-part prompt architecture I use for every business task now:&lt;/p&gt;

&lt;h3&gt;
  
  
  The SPARK Framework
&lt;/h3&gt;

&lt;p&gt;I call it SPARK. Five mandatory sections, every prompt, every time.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;S — System role.&lt;/strong&gt; "You are a senior B2B copywriter who has written 1,000+ cold emails with 40%+ open rates." Gives the model a persona to anchor to.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;P — Purpose.&lt;/strong&gt; "Your job is to write a 3-sentence follow-up email for a prospect who hasn't replied in 7 days." The specific deliverable.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;A — Audience.&lt;/strong&gt; "The reader is a 45-year-old operations director at a 50-person SaaS company. Skeptical of AI. Time-poor." Who's consuming the output.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;R — Rules / Constraints.&lt;/strong&gt; "Under 80 words. No exclamation marks. Reference their last blog post title. End with a single soft CTA." The guardrails.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;K — Known-good example.&lt;/strong&gt; "Here is an example of a follow-up that worked: [paste example]." Few-shot anchor.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The example (K) is what most people skip. It's also the single biggest lever. A prompt without an example produces generic output 80% of the time. A prompt with one example produces on-brand output 90% of the time.&lt;/p&gt;

&lt;h2&gt;
  
  
  7 Business Tasks I Now Run in Under 5 Minutes Each
&lt;/h2&gt;

&lt;p&gt;Here are the actual prompts — copy-paste-ready, all of them live in my Business Automation pack at the bottom of this article. I'll show the structure and one example each.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Cold Outreach (Email + LinkedIn DM)
&lt;/h3&gt;

&lt;p&gt;SPARK structure with the example being a reply I got from a Series A founder last month. Same prompt produces 5 variants with different opening hooks — I A/B test the first 30 characters.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What changed:&lt;/strong&gt; Reply rate went from 4% to 17%. I send fewer emails now and close more.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Client Proposals
&lt;/h3&gt;

&lt;p&gt;I feed in (a) the prospect's website URL scraped into a short brief, (b) my service offering, (c) three pricing tiers. The prompt outputs a 3-page proposal with executive summary, scope, timeline, and ROI math — in my voice.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What changed:&lt;/strong&gt; Proposal-to-close rate doubled. Clients tell me the proposals "feel like they actually read our site."&lt;/p&gt;

&lt;h3&gt;
  
  
  3. SOPs and Internal Documentation
&lt;/h3&gt;

&lt;p&gt;The trick here: I record a 3-minute Loom of myself doing the task, transcribe it (Whisper or Otter), then feed the transcript into a SPARK prompt that says "extract the repeatable process, write it as a numbered SOP with screenshots placeholders, return in Markdown."&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What changed:&lt;/strong&gt; I now have 23 SOPs for a 1-person business. I can hire a contractor on Monday and have them productive by Wednesday.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Weekly Reports (Client-Facing)
&lt;/h3&gt;

&lt;p&gt;The prompt takes 3 inputs: what I worked on, what I delivered, what I'm doing next week. The output is a 1-page report that sounds like a real person wrote it — not a robot summarizing bullet points.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What changed:&lt;/strong&gt; Clients stopped asking "what did you actually do this week?" Zero churn from miscommunication in 4 months.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Customer Support Replies
&lt;/h3&gt;

&lt;p&gt;I keep a 50-prompt library of objection handlers. When a customer emails "this isn't working for me," I paste their message + the relevant objection prompt, get a reply that de-escalates + offers a specific fix.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What changed:&lt;/strong&gt; Average response time: 6 hours → 22 minutes. Refund requests dropped 40%.&lt;/p&gt;

&lt;h3&gt;
  
  
  6. Content Calendars
&lt;/h3&gt;

&lt;p&gt;One prompt takes (a) my niche, (b) my audience pain points, (c) my posting cadence, and outputs a 30-day content calendar with hooks, formats, and CTAs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What changed:&lt;/strong&gt; I now post 5x/week consistently. The calendar takes 8 minutes to generate.&lt;/p&gt;

&lt;h3&gt;
  
  
  7. Competitive Analysis
&lt;/h3&gt;

&lt;p&gt;Drop 5 competitor URLs into a prompt, get a 2-page teardown: positioning, pricing model, weakest hook, where they over-promise, what I should do differently.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What changed:&lt;/strong&gt; My last 3 product launches were all directly informed by competitor gaps. Two of them sold out week 1.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Most Prompt Packs Fail
&lt;/h2&gt;

&lt;p&gt;I've bought 11 prompt packs. Nine of them had the same problem: a flat list of 200 prompts with zero context. "Write a blog post about X" with no role, no audience, no example, no format constraint.&lt;/p&gt;

&lt;p&gt;That's not a prompt pack. That's a Google Doc of sentences.&lt;/p&gt;

&lt;p&gt;The prompts that actually save time share three things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Anchored in a role.&lt;/strong&gt; "You are a..." not "Write a..."&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Built around a real example.&lt;/strong&gt; Few-shot is non-negotiable.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Constrained to a specific output format.&lt;/strong&gt; Word count, sections, tone, CTA placement.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When you pack 100 of these together — same framework, different use cases — you get something that compounds. You stop re-engineering prompts from scratch. You just plug in the day's task and ship.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'd Do Differently If I Started Today
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Build the system, not the prompt.&lt;/strong&gt; Don't optimize one prompt. Build the framework (SPARK) and apply it to every recurring task. The framework is the asset; the prompts are the output.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Save every prompt that produces output you actually use.&lt;/strong&gt; After 6 months you'll have a personal library of 30-50 production-grade prompts. That library is worth more than any product you can buy. Treat it as IP.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Test with a real deadline, not a sandbox.&lt;/strong&gt; The prompts that "worked" for me only worked because I had a client email due in 30 minutes. Pressure forces you to write tighter. Sandboxes produce lazy prompts you'll never open again.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Get the Full System
&lt;/h2&gt;

&lt;p&gt;I packaged the entire 100-prompt business automation system: &lt;strong&gt;AI Business Automation Prompt Pack&lt;/strong&gt; — SGD 19 (~$14 USD), instant download, works with ChatGPT / Claude / Gemini / DeepSeek / Copilot.&lt;br&gt;
&lt;a href="https://jackalope86.gumroad.com/l/byrjla" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/byrjla&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It includes the SPARK framework, 100 prompts across all 7 categories above, plus 12 SOP-generation prompts, 8 proposal templates, and a Notion dashboard to track which prompts you've tested and which ones work for you.&lt;/p&gt;

&lt;p&gt;If you're a content creator (YouTube, TikTok, Instagram), the same framework lives in &lt;strong&gt;AI for Content Creators Prompt Pack Vol 2&lt;/strong&gt; at SGD 19: &lt;a href="https://jackalope86.gumroad.com/l/xcjutg" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/xcjutg&lt;/a&gt; — same architecture, 100+ creator-specific prompts.&lt;/p&gt;

&lt;p&gt;If you want to see how all of this fits together as a 1-person business system, grab &lt;strong&gt;The AI Solopreneur Launchpad&lt;/strong&gt; at $5 USD: &lt;a href="https://jackalope86.gumroad.com/l/dgdtjf" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/dgdtjf&lt;/a&gt; — 50+ prompts plus a Notion dashboard that holds your whole operation.&lt;/p&gt;

&lt;p&gt;Or start with the &lt;strong&gt;$3 entry point&lt;/strong&gt; — 50 Viral TikTok Hooks + AI Prompts: &lt;a href="https://jackalope86.gumroad.com/l/diywdak" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/diywdak&lt;/a&gt;. The hook is the hardest part of any video. Nail the first 2 seconds, the algorithm does the rest.&lt;/p&gt;

&lt;p&gt;If you only buy one thing, buy the $3 TikTok Hooks pack. Use the HOOKS25 code for 25% off (code: &lt;strong&gt;HOOKS25&lt;/strong&gt;, first 15 people). The framework in that pack is the same SPARK structure — you can apply it to anything once you see the pattern.&lt;/p&gt;

&lt;p&gt;Owning all four together is the complete AI-powered solopreneur stack: $3 hooks → $5 launchpad → $19 content pack → $19 automation pack. Total: ~$42 USD. Each one pays for itself in the first week if you actually use it.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;If this was useful, drop a reaction or a comment with the one business task you wish AI could handle for you. I'm building new prompt categories monthly based on what readers ask for.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Tags: &lt;code&gt;ai&lt;/code&gt; &lt;code&gt;automation&lt;/code&gt; &lt;code&gt;productivity&lt;/code&gt; &lt;code&gt;solopreneur&lt;/code&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>automation</category>
      <category>productivity</category>
      <category>solopreneur</category>
    </item>
    <item>
      <title>I Tested 30 AI Caption Tools for Instagram and TikTok. Only 3 Weren't Garbage.</title>
      <dc:creator>Jack Loh</dc:creator>
      <pubDate>Sun, 19 Jul 2026 07:02:10 +0000</pubDate>
      <link>https://dev.to/jackloh84/i-tested-30-ai-caption-tools-for-instagram-and-tiktok-only-3-werent-garbage-5dnp</link>
      <guid>https://dev.to/jackloh84/i-tested-30-ai-caption-tools-for-instagram-and-tiktok-only-3-werent-garbage-5dnp</guid>
      <description>&lt;h1&gt;
  
  
  I Tested 30 AI Caption Tools for Instagram and TikTok. Only 3 Weren't Garbage.
&lt;/h1&gt;

&lt;p&gt;I run a small content operation in Singapore — TikTok, Instagram Reels, YouTube Shorts. About 3 months ago I got fed up rewriting AI captions that sounded like a 2019 LinkedIn influencer discovered a thesaurus.&lt;/p&gt;

&lt;p&gt;So I did what any reasonable person would do: I paid for &lt;strong&gt;30 different AI caption tools&lt;/strong&gt; over the next 6 weeks, ran the exact same brief through all of them, and kept a spreadsheet.&lt;/p&gt;

&lt;h2&gt;
  
  
  The spreadsheet told a brutal story
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;22 of 30 tools produced captions that read like a corporate press release&lt;/li&gt;
&lt;li&gt;4 were decent but capped at 100 words&lt;/li&gt;
&lt;li&gt;3 actually generated content that didn't make me cringe&lt;/li&gt;
&lt;li&gt;1 was so good I built an entire prompt pack around its workflow&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The winning pattern wasn't a tool — it was a &lt;strong&gt;prompt structure&lt;/strong&gt; that worked across ChatGPT, Claude, Gemini, and even the free tier of DeepSeek.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 3-part prompt structure that beats every "AI caption generator"
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ROLE: [specific persona with niche + tone reference]
CONTEXT: [your last 3 posts + what worked vs flopped + audience data]
TASK: [number of variations + platform + hook style + length constraint]
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it. Most people skip CONTEXT. They say "write me 5 Instagram captions about coffee" and get 5 captions that could be on any coffee account on earth.&lt;/p&gt;

&lt;p&gt;When you give the model your &lt;strong&gt;actual past performance data&lt;/strong&gt; (post 1 got 4k views because of the contrarian hook, post 2 flopped because it started with a question, etc.), it learns your specific audience's taste.&lt;/p&gt;

&lt;h2&gt;
  
  
  What changed when I switched to this workflow
&lt;/h2&gt;

&lt;p&gt;For my last 14 posts:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Average hook score (3-second retention proxy): up ~2.3x&lt;/li&gt;
&lt;li&gt;Time spent writing: down from 45 min/post to 8 min/post&lt;/li&gt;
&lt;li&gt;Captions I actually wanted to publish: 9 out of 10 generated (vs ~3 of 10 before)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I packaged the &lt;strong&gt;full system&lt;/strong&gt; — 100+ tested prompts across all the patterns that actually worked, organized by platform and content type — into a Gumroad pack:&lt;/p&gt;

&lt;p&gt;→ &lt;strong&gt;AI for Content Creators Prompt Pack Vol 2&lt;/strong&gt; (SGD $19): &lt;a href="https://jackalope86.gumroad.com/l/xcjutg" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/xcjutg&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What's actually in the pack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;50 caption templates&lt;/strong&gt; (TikTok, IG Reels, YouTube Shorts, LinkedIn carousels)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;30 hook formulas&lt;/strong&gt; with the AI prompt to remix each&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;20 content repurposing prompts&lt;/strong&gt; (one idea → 5 platforms)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;10 audience research prompts&lt;/strong&gt; (find what your niche actually searches)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Bonus: 30-day content calendar generator prompt&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It works with ChatGPT (free tier works), Claude, Gemini, DeepSeek, Copilot — any chat-based AI.&lt;/p&gt;

&lt;h2&gt;
  
  
  If you're not ready to buy, here's the free version
&lt;/h2&gt;

&lt;p&gt;I made the &lt;strong&gt;entry-level pack free&lt;/strong&gt; with a limited code: 10 downloads, first come first served. It's the TikTok hook starter (50 patterns + prompts).&lt;/p&gt;

&lt;p&gt;→ &lt;strong&gt;Use code &lt;code&gt;VIRALFIRST&lt;/code&gt;&lt;/strong&gt; at &lt;a href="https://jackalope86.gumroad.com/l/diywdak" rel="noopener noreferrer"&gt;https://jackalope86.gumroad.com/l/diywdak&lt;/a&gt; for 100% off (10 spots only).&lt;/p&gt;

&lt;p&gt;Or use &lt;strong&gt;HOOKS25&lt;/strong&gt; for 25% off any time.&lt;/p&gt;

&lt;h2&gt;
  
  
  Who this is for
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Creators with 0-50k followers who are tired of guessing what to post&lt;/li&gt;
&lt;li&gt;Small business owners doing their own content (most of us)&lt;/li&gt;
&lt;li&gt;Anyone whose captions sound "off" but you can't tell why&lt;/li&gt;
&lt;li&gt;Singapore creators specifically — I tuned several prompts for bilingual / Singlish audience patterns&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Who this is NOT for
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;If you already have a content team that hits quota without AI&lt;/li&gt;
&lt;li&gt;If your account is already at 100k+ and you're just here out of curiosity&lt;/li&gt;
&lt;li&gt;If you want me to ghostwrite your account (this is prompts, not done-for-you)&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;If you grab the pack and one prompt changes your workflow, drop a comment. I read every one and roll the best feedback into Vol 3.&lt;/p&gt;

&lt;p&gt;— Jack&lt;br&gt;
Singapore solopreneur. I build AI tools that save time, not demos that look cool on Twitter.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>contentcreation</category>
      <category>productivity</category>
    </item>
    <item>
      <title>I Built a $5 Notion Dashboard That Replaced 4 Paid Subscriptions (Here’s the Full Stack)</title>
      <dc:creator>Jack Loh</dc:creator>
      <pubDate>Sat, 18 Jul 2026 01:02:48 +0000</pubDate>
      <link>https://dev.to/jackloh84/i-built-a-5-notion-dashboard-that-replaced-4-paid-subscriptions-heres-the-full-stack-3l6</link>
      <guid>https://dev.to/jackloh84/i-built-a-5-notion-dashboard-that-replaced-4-paid-subscriptions-heres-the-full-stack-3l6</guid>
      <description>&lt;h1&gt;
  
  
  I Built a $5 Notion Dashboard That Replaced 4 Paid Subscriptions
&lt;/h1&gt;

&lt;p&gt;Three months ago I was paying for &lt;strong&gt;Notion ($10/mo), Trello ($5/mo), Airtable ($12/mo), and Calendly ($8/mo)&lt;/strong&gt; just to run my one-person content business.&lt;/p&gt;

&lt;p&gt;Today, all four workflows live in a single $5 Notion template I built in a weekend — using prompts, not code.&lt;/p&gt;

&lt;p&gt;This is the full stack. Take it. It costs less than a coffee.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem with paid tool sprawl
&lt;/h2&gt;

&lt;p&gt;Every solopreneur I know hits the same wall: 6-month-old Trello boards, abandoned Notion pages from 2023, three different CRMs they “meant to migrate off,” and a recurring $30–60/mo subscription bill for tools they only use 10% of.&lt;/p&gt;

&lt;p&gt;I burned through this exact trap. Here’s what the receipts looked like:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Tool&lt;/th&gt;
&lt;th&gt;What I used it for&lt;/th&gt;
&lt;th&gt;Monthly cost&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Notion&lt;/td&gt;
&lt;td&gt;Wiki + daily notes&lt;/td&gt;
&lt;td&gt;$10&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Trello&lt;/td&gt;
&lt;td&gt;Content calendar&lt;/td&gt;
&lt;td&gt;$5&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Airtable&lt;/td&gt;
&lt;td&gt;CRM + finance&lt;/td&gt;
&lt;td&gt;$12&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Calendly&lt;/td&gt;
&lt;td&gt;Booking calls&lt;/td&gt;
&lt;td&gt;$8&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Total&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;$35/mo = $420/yr&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The thing nobody tells you: &lt;strong&gt;you don’t need four tools. You need four views.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The $5 dashboard: one Notion, four built-in databases
&lt;/h2&gt;

&lt;p&gt;I rebuilt the entire stack as a single Notion workspace with four linked databases. Total cost: $5 one-time. No monthly. No renewal emails. No "your trial has ended."&lt;/p&gt;

&lt;p&gt;Here’s the architecture:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;🏠 Command Center (the page you open every morning)
├── 📅 Content Pipeline (database: pipeline)
│    ├── Ideas (status)
│    ├── Scripting (status)
│    ├── Editing (status)
│    ├── Scheduled (status)
│    └── Published (status)
├── 🤝 Client CRM (database: clients)
│    ├── Name, contact, deal size
│    ├── Status: Lead / Active / Closed
│    └── Last touchpoint (date formula)
├── 📞 Booking System (database: calls)
│    ├── Date, duration, type
│    ├── Auto-status: Upcoming / Past
│    └── Linked to Client record
└── 💰 Finance Tracker (database: income)
     ├── Source, amount, date
     ├── Status: Pending / Received
     └── Linked to Client record
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Each database has &lt;strong&gt;3–5 properties, two views, and one automation&lt;/strong&gt;. The whole thing took me about 6 hours to build — half of that was naming things.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 5 prompts that built it (steal these)
&lt;/h2&gt;

&lt;p&gt;The reason this took a weekend instead of a month: I used a single AI assistant (Claude, but ChatGPT / Gemini / DeepSeek all work the same way) with a tight loop of prompts. Here are the five that did 80% of the work.&lt;/p&gt;

&lt;h3&gt;
  
  
  Prompt 1: Database architecture
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I'm a one-person content business. I need four databases in Notion:
1. Content pipeline (statuses: Idea, Scripting, Editing, Scheduled, Published)
2. Client CRM (tracks leads, deal size, last contact date)
3. Booking system (calls with clients, linked to CRM)
4. Finance tracker (income records, linked to CRM and content)

For each database, give me:
- Property names + types
- 2-3 view types I'd actually use (Kanban / Gallery / Calendar / Table)
- One formula per database that auto-computes something useful
- How the four databases should link to each other

Output as a Markdown spec I can paste into Notion verbatim.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This prompt saved me 3 hours of staring at blank property fields.&lt;/p&gt;

&lt;h3&gt;
  
  
  Prompt 2: Status automation
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;For&lt;/span&gt; &lt;span class="nx"&gt;the&lt;/span&gt; &lt;span class="nx"&gt;Content&lt;/span&gt; &lt;span class="nx"&gt;Pipeline&lt;/span&gt; &lt;span class="nx"&gt;database&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;give&lt;/span&gt; &lt;span class="nx"&gt;me&lt;/span&gt; &lt;span class="nx"&gt;a&lt;/span&gt; &lt;span class="nx"&gt;Notion&lt;/span&gt; &lt;span class="nx"&gt;formula&lt;/span&gt; &lt;span class="nx"&gt;that&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
&lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="nx"&gt;Auto&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="nx"&gt;colors&lt;/span&gt; &lt;span class="nx"&gt;each&lt;/span&gt; &lt;span class="nf"&gt;status &lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;gray&lt;/span&gt; &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="nx"&gt;Idea&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;yellow&lt;/span&gt; &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="nx"&gt;Scripting&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;blue&lt;/span&gt; &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="nx"&gt;Editing&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;purple&lt;/span&gt; &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="nx"&gt;Scheduled&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;green&lt;/span&gt; &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="nx"&gt;Published&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="nx"&gt;Shows&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;🔴 OVERDUE&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="nx"&gt;Scheduled&lt;/span&gt; &lt;span class="nx"&gt;date&lt;/span&gt; &lt;span class="nx"&gt;is&lt;/span&gt; &lt;span class="k"&gt;in&lt;/span&gt; &lt;span class="nx"&gt;the&lt;/span&gt; &lt;span class="nx"&gt;past&lt;/span&gt; &lt;span class="nx"&gt;and&lt;/span&gt; &lt;span class="nx"&gt;status&lt;/span&gt; &lt;span class="nx"&gt;is&lt;/span&gt; &lt;span class="nx"&gt;still&lt;/span&gt; &lt;span class="nx"&gt;Editing&lt;/span&gt;
&lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="nx"&gt;Shows&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;📅 Due today&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="nx"&gt;Scheduled&lt;/span&gt; &lt;span class="nx"&gt;date&lt;/span&gt; &lt;span class="nx"&gt;is&lt;/span&gt; &lt;span class="nx"&gt;today&lt;/span&gt;
&lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="nx"&gt;Shows&lt;/span&gt; &lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="s2"&gt;⏰ Due in N days&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt; &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="nx"&gt;scheduled&lt;/span&gt; &lt;span class="k"&gt;in&lt;/span&gt; &lt;span class="nx"&gt;the&lt;/span&gt; &lt;span class="nx"&gt;future&lt;/span&gt;

&lt;span class="nx"&gt;The&lt;/span&gt; &lt;span class="nx"&gt;formula&lt;/span&gt; &lt;span class="nx"&gt;must&lt;/span&gt; &lt;span class="nx"&gt;be&lt;/span&gt; &lt;span class="nx"&gt;a&lt;/span&gt; &lt;span class="nx"&gt;single&lt;/span&gt; &lt;span class="nx"&gt;Notion&lt;/span&gt; &lt;span class="s2"&gt;`prop()`&lt;/span&gt; &lt;span class="nx"&gt;expression&lt;/span&gt; &lt;span class="nx"&gt;I&lt;/span&gt; &lt;span class="nx"&gt;can&lt;/span&gt; &lt;span class="nx"&gt;paste&lt;/span&gt; &lt;span class="nx"&gt;into&lt;/span&gt; &lt;span class="nx"&gt;a&lt;/span&gt; &lt;span class="nx"&gt;Formula&lt;/span&gt; &lt;span class="nx"&gt;property&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Notion formulas are notoriously fiddly. Prompting them out is faster than the docs.&lt;/p&gt;

&lt;h3&gt;
  
  
  Prompt 3: Client follow-up nudges
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="nx"&gt;For&lt;/span&gt; &lt;span class="nx"&gt;the&lt;/span&gt; &lt;span class="nx"&gt;Client&lt;/span&gt; &lt;span class="nx"&gt;CRM&lt;/span&gt; &lt;span class="nx"&gt;database&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;give&lt;/span&gt; &lt;span class="nx"&gt;me&lt;/span&gt; &lt;span class="nx"&gt;a&lt;/span&gt; &lt;span class="nx"&gt;Notion&lt;/span&gt; &lt;span class="nx"&gt;formula&lt;/span&gt; &lt;span class="nx"&gt;that&lt;/span&gt; &lt;span class="nx"&gt;returns&lt;/span&gt; &lt;span class="nx"&gt;a&lt;/span&gt; &lt;span class="nx"&gt;priority&lt;/span&gt; &lt;span class="nx"&gt;icon&lt;/span&gt; &lt;span class="nx"&gt;based&lt;/span&gt; &lt;span class="nx"&gt;on&lt;/span&gt; &lt;span class="nx"&gt;last&lt;/span&gt; &lt;span class="nx"&gt;touchpoint&lt;/span&gt; &lt;span class="nx"&gt;date&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
&lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="err"&gt;🔥&lt;/span&gt; &lt;span class="nx"&gt;HOT&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;touched&lt;/span&gt; &lt;span class="k"&gt;in&lt;/span&gt; &lt;span class="nx"&gt;last&lt;/span&gt; &lt;span class="mi"&gt;7&lt;/span&gt; &lt;span class="nx"&gt;days&lt;/span&gt;
&lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="err"&gt;🟡&lt;/span&gt; &lt;span class="nx"&gt;WARM&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;7&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="mi"&gt;30&lt;/span&gt; &lt;span class="nx"&gt;days&lt;/span&gt;
&lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="err"&gt;⚪&lt;/span&gt; &lt;span class="nx"&gt;COLD&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;30&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="mi"&gt;90&lt;/span&gt; &lt;span class="nx"&gt;days&lt;/span&gt;
&lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="err"&gt;❄️&lt;/span&gt; &lt;span class="nx"&gt;FROZEN&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="mi"&gt;90&lt;/span&gt;&lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="nx"&gt;days&lt;/span&gt;

&lt;span class="nx"&gt;Output&lt;/span&gt; &lt;span class="k"&gt;as&lt;/span&gt; &lt;span class="nx"&gt;a&lt;/span&gt; &lt;span class="nx"&gt;single&lt;/span&gt; &lt;span class="nx"&gt;Notion&lt;/span&gt; &lt;span class="nx"&gt;Formula&lt;/span&gt; &lt;span class="nx"&gt;expression&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The visual gradient (hot → cold) makes the CRM actually usable at a glance. Without it, the database becomes a graveyard.&lt;/p&gt;

&lt;h3&gt;
  
  
  Prompt 4: The dashboard view
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;For my Notion workspace, design a single "Command Center" page that shows:
- Today's calls (filtered from Booking database where date=today)
- Content items due this week (Content Pipeline where status in [Scripting, Editing] and due this week)
- HOT leads (Client CRM where priority = 🔥)
- Income received this month (Finance where status=Received and date in current month)

For each block, give me:
- Exact "linked database" filter setup
- Layout (gallery, table, list)
- Sort order
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is the page you actually open every morning. The AI nailed it in one shot.&lt;/p&gt;

&lt;h3&gt;
  
  
  Prompt 5: Migration cleanup
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;I have:
- 47 Trello cards in a "Content" board
- 22 rows in an Airtable CRM
- 3 rows in a Notion table called "Old CRM"

Write me a 30-minute migration plan to move all 47 content cards into the new Notion Content Pipeline, all 22 CRM rows into Client CRM, and trash the old CRM table. Include the exact import order so I don't break foreign-key links.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The migration plan alone saved a Saturday.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I do with it every week
&lt;/h2&gt;

&lt;p&gt;The system has been running for 11 weeks. Here’s what the weekly loop looks like:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Monday (15 min):&lt;/strong&gt; Review content pipeline. Anything stuck in "Scripting" for &amp;gt;7 days → either schedule or kill.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Wednesday (10 min):&lt;/strong&gt; Check HOT leads. Touch anyone I haven't emailed in 7 days. Cold leads get a single "still relevant?" email.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Friday (10 min):&lt;/strong&gt; Finance review. Anything in "Pending" for &amp;gt;14 days → chase invoice.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Total weekly overhead: 35 minutes.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Before this dashboard: ~2 hours/week across four tools, with frequent "wait which CRM was this client in?" moments.&lt;/p&gt;

&lt;h2&gt;
  
  
  The cost comparison, 12 months out
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Setup&lt;/th&gt;
&lt;th&gt;Year 1 cost&lt;/th&gt;
&lt;th&gt;Year 2 cost&lt;/th&gt;
&lt;th&gt;Total&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Old way (4 paid tools)&lt;/td&gt;
&lt;td&gt;$420&lt;/td&gt;
&lt;td&gt;$420&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;$840&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;New way ($5 template)&lt;/td&gt;
&lt;td&gt;$5&lt;/td&gt;
&lt;td&gt;$5&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;$10&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Net savings over two years: &lt;strong&gt;$830&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;That’s not a typo. That’s the cost of switching to a system you actually own.&lt;/p&gt;

&lt;h2&gt;
  
  
  Get the full template (and 50+ more prompts like the ones above)
&lt;/h2&gt;

&lt;p&gt;I packaged the &lt;strong&gt;complete Notion dashboard&lt;/strong&gt; (every database, view, and formula above, plus the migration guide) into a $5 one-time template — no subscription, no upsells, no email gate.&lt;/p&gt;

&lt;p&gt;It's called &lt;strong&gt;The AI Solopreneur Launchpad&lt;/strong&gt; and it includes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The full Notion template (duplicate with one click)&lt;/li&gt;
&lt;li&gt;50+ prompts across 6 categories (CRM, content, finance, automation, marketing, client ops)&lt;/li&gt;
&lt;li&gt;The 5 prompts above, expanded with full context and the exact Notion Formula code&lt;/li&gt;
&lt;li&gt;A 1-page "first weekend" setup guide so you can have it running by Sunday night&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;👉 &lt;strong&gt;Get it here:&lt;/strong&gt; &lt;a href="https://jackalope86.gumroad.com/l/dgdtjf" rel="noopener noreferrer"&gt;jackalope86.gumroad.com/l/dgdtjf&lt;/a&gt; — $5 one-time.&lt;/p&gt;

&lt;p&gt;If you want the bigger toolkit (100+ prompts for content + business automation), the &lt;strong&gt;AI Business Automation Prompt Pack&lt;/strong&gt; ($19) layers on top of this: &lt;a href="https://jackalope86.gumroad.com/l/byrjla" rel="noopener noreferrer"&gt;jackalope86.gumroad.com/l/byrjla&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  FAQ
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Do I need Notion Plus?&lt;/strong&gt; No — the dashboard works on the free Notion tier (you get unlimited blocks/databases; the only limit is file uploads, which this template doesn't use).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Will this scale past solopreneur?&lt;/strong&gt; It comfortably handled 3 clients and ~15 content pieces/week for me. Past 10 active clients you'll want a real CRM. By then you'll have the cash to afford one.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What if I get stuck?&lt;/strong&gt; Every prompt in the template is annotated with "expected output" + "common mistakes." I tested all 50+ across Claude, ChatGPT, Gemini, and DeepSeek.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;If this saved you a subscription bill, share it with one friend who is drowning in Trello boards. They'll thank you.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>ai</category>
      <category>notion</category>
      <category>solopreneur</category>
    </item>
    <item>
      <title>I Automated 80% of My Solopreneur Back Office With 100 AI Prompts (Here's the Full System)</title>
      <dc:creator>Jack Loh</dc:creator>
      <pubDate>Wed, 15 Jul 2026 07:03:27 +0000</pubDate>
      <link>https://dev.to/jackloh84/i-automated-80-of-my-solopreneur-back-office-with-100-ai-prompts-heres-the-full-system-3a6f</link>
      <guid>https://dev.to/jackloh84/i-automated-80-of-my-solopreneur-back-office-with-100-ai-prompts-heres-the-full-system-3a6f</guid>
      <description>&lt;h1&gt;
  
  
  I Automated 80% of My Solopreneur Back Office With 100 AI Prompts (Here's the Full System)
&lt;/h1&gt;

&lt;p&gt;Last quarter I tracked every task I did as a one-person business. Invoices, client follow-ups, content calendars, lead research, customer support replies, meeting notes, weekly reports.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The number that shocked me: 11.4 hours per week&lt;/strong&gt; spent on work that didn't make me money.&lt;/p&gt;

&lt;p&gt;So I built a system. 100 carefully-engineered AI prompts. One for every back-office task that used to eat my week.&lt;/p&gt;

&lt;p&gt;Six weeks later, that 11.4 hours is down to &lt;strong&gt;2.1 hours&lt;/strong&gt;. I didn't hire anyone. I didn't learn to code. I just stopped doing the work AI was already good at.&lt;/p&gt;

&lt;p&gt;This article is the full breakdown — what the system does, how I structured it, and the exact prompts I run every day.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem: Solopreneurs Are Their Own Bottleneck
&lt;/h2&gt;

&lt;p&gt;If you're running a one-person business, you already know this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Client work pays the bills&lt;/strong&gt; — but admin work eats the time you need to do MORE client work&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Every "quick task" multiplies&lt;/strong&gt; — one customer email becomes ten, one invoice becomes five&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;You can't outsource cheaply&lt;/strong&gt; — VAs cost $500+/mo, agencies cost $2k+/mo, and most of the work is below their skill floor anyway&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The result: most solopreneurs cap at $5-10k/mo revenue not because they can't find clients, but because they can't scale their own operations.&lt;/p&gt;

&lt;p&gt;AI changes the math. But only if you know WHAT to automate and HOW to prompt it well.&lt;/p&gt;

&lt;h2&gt;
  
  
  The System: 100 Prompts Across 7 Operations
&lt;/h2&gt;

&lt;p&gt;I structured the system around the 7 operations that consumed my week. Each section has 10-20 prompts designed for that specific workflow.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Client Communication (18 prompts)
&lt;/h3&gt;

&lt;p&gt;The biggest time sink. Every client wants updates, proposals, follow-ups, scope changes, and reminders. I used to write each one from scratch.&lt;/p&gt;

&lt;p&gt;Now I have prompts for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cold outreach emails (3 variations: problem-first, story-first, result-first)&lt;/li&gt;
&lt;li&gt;Discovery call summaries&lt;/li&gt;
&lt;li&gt;Scope-of-work documents&lt;/li&gt;
&lt;li&gt;Project status updates (weekly + milestone)&lt;/li&gt;
&lt;li&gt;Difficult-pricing conversations&lt;/li&gt;
&lt;li&gt;Testimonial request emails&lt;/li&gt;
&lt;li&gt;Win-back sequences for cold leads&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Time saved: ~3 hours/week&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Invoicing &amp;amp; Finance (12 prompts)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Invoice descriptions that justify the line items&lt;/li&gt;
&lt;li&gt;Expense categorization&lt;/li&gt;
&lt;li&gt;Quarterly tax-prep summaries&lt;/li&gt;
&lt;li&gt;Profit-first cash flow projections&lt;/li&gt;
&lt;li&gt;Late-payment follow-up sequences&lt;/li&gt;
&lt;li&gt;Subscription audit prompts (find what you can cancel)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Time saved: ~1.5 hours/week&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Content Marketing (24 prompts)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Blog post outlines from a single keyword&lt;/li&gt;
&lt;li&gt;Repurposing one piece into 8 (Twitter, LinkedIn, email, IG caption, TikTok script, etc.)&lt;/li&gt;
&lt;li&gt;SEO meta descriptions&lt;/li&gt;
&lt;li&gt;Email subject line A/B variations&lt;/li&gt;
&lt;li&gt;Newsletter drafts from voice notes&lt;/li&gt;
&lt;li&gt;Hook variations (I have a whole pack just for TikTok hooks — saves another 2 hours/week)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Time saved: ~3 hours/week&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Lead Research &amp;amp; Qualification (14 prompts)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;ICP refinement from your best 10 customers&lt;/li&gt;
&lt;li&gt;Pre-call research briefs on prospects&lt;/li&gt;
&lt;li&gt;LinkedIn profile analysis → personalized outreach&lt;/li&gt;
&lt;li&gt;Lead scoring rubrics&lt;/li&gt;
&lt;li&gt;Reactivation lists for old leads&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Time saved: ~1.5 hours/week&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Customer Support (10 prompts)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Response templates for the 12 most common questions&lt;/li&gt;
&lt;li&gt;Refund request handling&lt;/li&gt;
&lt;li&gt;Escalation frameworks&lt;/li&gt;
&lt;li&gt;Documentation gap analysis (what questions = missing docs)&lt;/li&gt;
&lt;li&gt;Help center article drafts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Time saved: ~1 hour/week&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  6. Operations &amp;amp; Planning (12 prompts)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Weekly review prompts&lt;/li&gt;
&lt;li&gt;Quarterly OKR drafts&lt;/li&gt;
&lt;li&gt;SOP (standard operating procedure) templates&lt;/li&gt;
&lt;li&gt;Tool audit prompts&lt;/li&gt;
&lt;li&gt;Hiring decision frameworks (when can you finally afford a VA?)&lt;/li&gt;
&lt;li&gt;Time-blocking schedules from your goals&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Time saved: ~1 hour/week&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  7. Sales &amp;amp; Proposals (10 prompts)
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Proposal templates that close (3 frameworks)&lt;/li&gt;
&lt;li&gt;Objection handling scripts&lt;/li&gt;
&lt;li&gt;Discovery question banks&lt;/li&gt;
&lt;li&gt;Pricing tier comparisons&lt;/li&gt;
&lt;li&gt;Case study drafts from project notes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Time saved: ~1.5 hours/week&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Total: 12.3 hours/week reclaimed
&lt;/h2&gt;

&lt;p&gt;But here's the thing — I didn't sit down and write 100 prompts in one go. I built it iteratively over 3 months, solving one pain point at a time.&lt;/p&gt;

&lt;p&gt;The system you actually use beats the perfect system you don't.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 5 Prompts That Save Me the Most Time
&lt;/h2&gt;

&lt;p&gt;If you're just starting out, these are the only 5 you need to get 50% of the value:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. The "Turn This Meeting Into Everything" Prompt&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"I just had a [client/internal/sales] call. Here are the raw notes: [paste]. Generate: (a) a 3-bullet summary for my records, (b) a polished recap email to attendees, (c) a list of action items with owners and deadlines, (d) one question I should ask in the follow-up to keep momentum."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;2. The "Repurpose This" Prompt&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Here's a [blog post / podcast transcript / YouTube script / case study] I just published: [paste or link]. Generate: 1 Twitter thread (5-7 tweets), 1 LinkedIn post (200 words), 1 email newsletter (300 words), 1 Instagram caption, 1 TikTok script (30 seconds), 3 Pinterest pin titles + descriptions. Match my voice: [paste 2-3 example posts]."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;3. The "Hard Email" Prompt&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"I need to write a [pricing increase / scope change / difficult feedback / late payment / rejection] email to [recipient]. Context: [what happened]. Tone: [firm but kind / direct / apologetic]. Don't be wishy-washy. Make the ask clear."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;4. The "Weekly CEO Review" Prompt&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Here's what I did this week: [bullet list]. Here's what's on my calendar next week: [list]. Help me: (1) identify the 3 highest-leverage tasks I should prioritize, (2) flag anything I should delegate or drop, (3) write my 'Friday update' to my mastermind group / co-founder / accountability partner, (4) suggest ONE thing I should add to next week that I'm currently avoiding."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;5. The "Lead Research in 90 Seconds" Prompt&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Research this prospect: [name, company, LinkedIn URL]. Give me: (1) their likely top 3 business problems based on company stage and industry, (2) 2 angles for personalized cold outreach, (3) one question I can ask in a discovery call that will make them feel understood, (4) the specific result I can promise (or be honest that I can't)."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  How to Build Your Own
&lt;/h2&gt;

&lt;p&gt;You can copy the structure above and build your own 100-prompt system in about a month if you commit to it. The process:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Track your time for one week.&lt;/strong&gt; Use a simple spreadsheet. List every task and the time it took.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Sort tasks by hours spent.&lt;/strong&gt; The top 20% of tasks eat 80% of the time.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;For each top task, ask:&lt;/strong&gt; "What does a great output look like? What context does the AI need? What's the format I want back?"&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Write the prompt, run it 5 times, refine.&lt;/strong&gt; First version is never the final version.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Save to a system you actually use.&lt;/strong&gt; Notion, a Google Doc, your notes app — doesn't matter. Just save it where you'll find it.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Or Skip the Build and Use a Done-for-You Pack
&lt;/h2&gt;

&lt;p&gt;I packaged my full 100-prompt system into a product called the &lt;strong&gt;AI Business Automation Prompt Pack&lt;/strong&gt; — same prompts I described above, plus another 30 for edge cases I hit after publishing the first version.&lt;/p&gt;

&lt;p&gt;It runs SGD 19 (~US$14) on Gumroad: &lt;a href="https://jackalope86.gumroad.com/l/byrjla" rel="noopener noreferrer"&gt;AI Business Automation Prompt Pack&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you're also creating content (YouTube, TikTok, Instagram, blog), I have a matching pack: &lt;a href="https://jackalope86.gumroad.com/l/xcjutg" rel="noopener noreferrer"&gt;AI for Content Creators — Prompt Pack Vol 2&lt;/a&gt; — same SGD 19, covers scripts, hooks, captions, repurposing, and the posting schedule that actually works.&lt;/p&gt;

&lt;p&gt;And if you want the cheapest way in: &lt;a href="https://jackalope86.gumroad.com/l/diywdak" rel="noopener noreferrer"&gt;50 Viral TikTok Hooks + AI Prompts&lt;/a&gt; is &lt;strong&gt;$3 USD&lt;/strong&gt; — a single tight pack of the highest-converting hook patterns I've reverse-engineered from videos with 10M+ views. Use code &lt;code&gt;HOOKS25&lt;/code&gt; for 25% off (limited to 15 redemptions).&lt;/p&gt;

&lt;p&gt;If you want the full launch system with a Notion dashboard: &lt;a href="https://jackalope86.gumroad.com/l/dgdtjf" rel="noopener noreferrer"&gt;The AI Solopreneur Launchpad&lt;/a&gt; is $5 and walks you through deploying all three packs as a working operation.&lt;/p&gt;

&lt;p&gt;All four work with ChatGPT, Claude, Gemini, DeepSeek, and Copilot — copy any prompt, paste it in, done.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Bigger Point
&lt;/h2&gt;

&lt;p&gt;You don't need 100 prompts on day one. You need 5 prompts that solve the 5 tasks eating your week. Build those, ship them, then expand.&lt;/p&gt;

&lt;p&gt;The solopreneurs who scale to $20k/mo and beyond aren't doing more work. They're running better systems. AI is the cheapest, fastest way to install those systems.&lt;/p&gt;

&lt;p&gt;The question isn't "should I automate this?" — it's "what should I automate first?"&lt;/p&gt;

&lt;p&gt;Pick the task you did yesterday that you hated. Write the prompt. Run it. Save it. Move on to the next one.&lt;/p&gt;

&lt;p&gt;Six weeks from now you'll be writing this same article.&lt;/p&gt;

&lt;p&gt;— Jack&lt;/p&gt;




&lt;p&gt;&lt;em&gt;If you found this useful, follow me on &lt;a href="https://dev.to/jackloh84"&gt;DEV.to&lt;/a&gt; for more AI-powered solopreneur systems. No spam, just systems that work.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>ai</category>
      <category>solopreneur</category>
      <category>automation</category>
    </item>
  </channel>
</rss>
