💡 Example Use Case:
Script: “I’m currently budgeting for a big goal, so I’ll pass on this
dinner.”
→ Builds boundary without guilt or conflict
✅ Problem: You want to create generational wealth starting from
scratch
💬 Prompt:
"You are a generational wealth planner. Give me a 10-year
roadmap to create wealth for my future family. Include: 1. Asset
types to build, 2. Income stream stacking, 3. Legal planning
(nominations/will), 4. Mindset rituals."
💡 Example Use Case:
Asset stack: Real estate + index fund + brand equity
Income: Digital products + equity + long-term dividend stocks
→ Create a simple will via LegalKart
4) CODING
✅ Problem: You're a beginner and don’t know which language to
learn first
💬 Prompt:
"You are a career tech mentor. Based on my goals '[insert goal:
web dev, app dev, freelancing, AI, data]', suggest the best
programming language to start with. Explain why, how long it’ll
take, and roadmap to learn it."
💡 Example Use Case:
Goal: Build websites
→ Start with HTML, CSS, JS
→ Learn in 3 months with 2 hrs/day
→ Roadmap includes freeCodeCamp, projects, GitHub uploads
✅ Problem: You want to build a web app but don’t know the tech
stack
💬 Prompt:
"You are a full-stack architect. I want to build a web app that does
'[insert function]'. Suggest the best tech stack for frontend,
backend, database, hosting. Include modern tools +
beginner-friendly tips."
💡 Example Use Case:
App = Habit tracker
→ Stack: React + Firebase + Tailwind + Vercel
→ Simple auth + Firestore for storage
✅ Problem: You’re stuck debugging a piece of code
💬 Prompt:
"You are a senior-level debugging assistant. Here’s my code
[paste code] and here’s the issue I’m facing '[describe issue]'.
Help me fix the bug, explain the logic, and suggest optimization if
any."
💡 Example Use Case:
User shares a Python function for scraping but gets “NoneType”
error → ChatGPT finds missing .text call and suggests a fix.
✅ Problem: You don’t understand how APIs work
💬 Prompt:
"You are an API explainer. Teach me how APIs work like I’m 10.
Then show me how to connect an API (e.g. OpenWeather,
YouTube, Stripe) using JavaScript or Python, with code +
comments."
💡 Example Use Case:
Connect OpenWeather API → show temp by city → output on
simple HTML page.
✅ Problem: You want to automate a boring daily task with code
💬 Prompt:
"You are a personal automation engineer. I do this task daily:
'[describe task]'. Help me automate it using Python, Zapier, or
browser scripts. Provide step-by-step code or flow with
explanation."
💡 Example Use Case:
Task = Download YouTube transcript → Save as text
→ Python + pytube + open() script
✅ Problem: You want to learn to build Chrome extensions
💬 Prompt:
"You are a Chrome Extension instructor. Show me how to build a
Chrome extension that does '[insert idea]' using HTML, JS, and
[Link]. Include folder structure, core code, and
permissions."
💡 Example Use Case:
Build a "Copy all tabs URL" extension with 1-click button
→ Manifest + [Link] + JS
✅ Problem: You want to make money with coding skills
💬 Prompt:
"You are a freelance developer coach. Based on my coding skills
'[insert skill]', suggest 5 practical ways to make money online.
Include: 1. Platform, 2. Project type, 3. Earning potential, 4.
Timeline."
💡 Example Use Case:
Skill = JavaScript →
1.Build AI tools → sell on Gumroad
2.Client landing pages on Fiverr
3.Chrome extensions → sell on BuyMeACoffee
✅ Problem: You want to create a portfolio site but don’t know where
to start
💬 Prompt:
"You are a dev portfolio mentor. Help me create a personal
portfolio site using HTML, CSS, JS or React. Include: 1. Sections
to add, 2. Minimal template layout, 3. Hosting guide
(Netlify/Vercel), 4. GitHub repo tips."
💡 Example Use Case:
Sections = Hero, Projects, About, Contact
→ React + Tailwind → Deployed on Vercel
✅ Problem: You don’t understand Git and GitHub properly
💬 Prompt:
"You are a Git/GitHub guide. Teach me Git concepts like I’m 10 —
what is version control, commit, push, branch, merge. Then give
me a cheat sheet of 10 daily commands + when to use them."
💡 Example Use Case:
“Git is like a time machine for code”
→ Cheat: git init, git status, git log, git branch -M
main, etc.
✅ Problem: You want to scrape data from websites legally
💬 Prompt:
"You are a legal web scraping mentor. Show me how to scrape
public data from a website '[insert site]' using Python
(BeautifulSoup or Selenium). Include: 1. Setup, 2. Code, 3.
Respectful limits, 4. Legal disclaimer."
💡 Example Use Case:
Scrape article titles from Medium → Store in CSV
→ Add delay to avoid hammering the server
✅ Problem: You want to turn your scripts into desktop apps
💬 Prompt:
"You are a Python GUI expert. Show me how to turn this script
'[insert script]' into a desktop app using Tkinter or PyQt. Include
window layout, input fields, and output display."
💡 Example Use Case:
A file rename script becomes a drag-and-drop desktop app with
“Rename All” button
✅ Problem: You want to learn SQL for data work
💬 Prompt:
"You are an SQL teacher. Teach me SQL basics using real-world
scenarios like ‘searching YouTube videos’, ‘filtering products’, or
‘getting Instagram followers’. Then give me 5 mini practice
queries."
💡 Example Use Case:
"SELECT * FROM videos WHERE views > 1000000 ORDER BY
likes DESC LIMIT 10"
✅ Problem: You want to use AI APIs like OpenAI or Google Vision
💬 Prompt:
"You are an AI tool integrator. Show me how to connect and use
'[insert AI API like ChatGPT, Whisper, Bard]' in a Python app.
Include: 1. Auth method, 2. Example query, 3. Output parsing."
💡 Example Use Case:
Use OpenAI API to summarize a paragraph → returns short bullet
points → saved to Notion via API
✅ Problem: You want to build a SaaS with no-code + code mix
💬 Prompt:
"You are a no-code coder. Help me build a SaaS that does '[insert
task]' using Bubble/Webflow + backend with Firebase or
Supabase. Include app flow, DB structure, and user login logic."
💡 Example Use Case:
Tool = AI Caption Generator
→ Frontend on Bubble + backend function via Firebase cloud
function
✅ Problem: You’re overwhelmed by learning too many frameworks
💬 Prompt:
"You are a developer productivity coach. I’m learning '[insert stack
like MERN, Django, etc.]' and feel overwhelmed. Help me focus
using a 30-day project-based roadmap to learn only what matters
first."
💡 Example Use Case:
Stack = MERN
Week 1 = CRUD blog
Week 2 = Auth + deploy
Week 3 = Rebuild UI in Tailwind
Week 4 = Add Stripe payments
✅ Problem: You want to build a Telegram bot for automation
💬 Prompt:
"You are a Telegram bot builder. Show me how to build a
Telegram bot that does '[insert action]' using Python
(python-telegram-bot or pyTelegramBotAPI). Include: 1. Setup, 2.
Bot token, 3. Commands, 4. Hosting."
💡 Example Use Case:
Bot = Daily reminder with inline buttons → Deployed on
[Link]
✅ Problem: You don’t know how to use VS Code efficiently
💬 Prompt:
"You are a VS Code power user. Give me the best 15 productivity
shortcuts, extensions, themes, and settings to write better code
faster. Include keyboard tips + hidden features."
💡 Example Use Case:
Extensions: Prettier, GitLens, REST Client, Error Lens
Shortcuts: Ctrl+Shift+P, Ctrl+D, multi-cursor
✅ Problem: You want to build mobile apps but don’t know if you
should use Flutter or React Native
💬 Prompt:
"You are a mobile app tech guide. Compare Flutter vs. React
Native for my goal '[insert app goal]'. Include pros, cons,
community, performance, and which is easier to start with."
💡 Example Use Case:
Goal = Build Android + iOS for clients → React Native = faster
learning curve
Flutter = better UI but heavier setup
✅ Problem: You want to host your full stack app for free
💬 Prompt:
"You are a full stack deploy master. Show me how to deploy my
MERN or Django app for free. Include: 1. Backend hosting
(Render, Railway, etc.), 2. Frontend (Vercel/Netlify), 3. Domain
setup, 4. GitHub CI/CD tip."
💡 Example Use Case:
Backend = Render
Frontend = Vercel
→ GitHub push triggers auto deployment
✅ Problem: You want to turn your idea into an MVP fast
💬 Prompt:
"You are a lean MVP coach. I want to build a tool/app for '[insert
target audience]'. Help me define the MVP version with only the
core features, suggested tech stack, and a 7-day action plan to
launch it."
💡 Example Use Case:
Idea: AI-based name generator for startups
→ Stack: HTML + JS + OpenAI API
→ Launch in 7 days with Gumroad integration
✅ Problem: You want to practice coding but hate LeetCode
💬 Prompt:
"You are a gamified code mentor. Give me 5 fun real-world coding
problems to practice based on my level:
[beginner/intermediate/advanced]. Avoid boring algorithm tasks.
Include: input/output example + file format."
💡 Example Use Case:
Challenge: Build a script to auto-rename downloaded files with
date-stamps.
✅ Problem: You want to build a browser automation tool
💬 Prompt:
"You are a Python automation expert. Show me how to build a bot
using Selenium/Playwright that opens a browser, logs in to [insert
website], and downloads a file or grabs data. Include step-by-step
code."
💡 Example Use Case:
Bot logs into Gmail and downloads email attachments with
“Invoice” in subject.
✅ Problem: You want to use GitHub Copilot effectively
💬 Prompt:
"You are a GitHub Copilot coach. Teach me how to write better
prompts for Copilot to generate clean and accurate code. Include:
1. Prompt formula, 2. Real examples, 3. Use-case best practices."
💡 Example Use Case:
Write:
“Create a Python function to clean email addresses from a CSV
file”
→ Copilot completes regex + loop + file open/close
✅ Problem: You want to offer coding as a service
💬 Prompt:
"You are a coding business coach. Based on my skills '[insert
languages or tools]', suggest 3 profitable service ideas, ideal
client types, pricing range, and where to find clients (Upwork,
Twitter, LinkedIn)."
💡 Example Use Case:
Skill = Python
→ Services: Data cleanup, script automation, AI integration
→ Charge ₹5K–₹20K per project
✅ Problem: You want to contribute to open-source projects
💬 Prompt:
"You are an open-source contribution mentor. Show me how to
find beginner-friendly GitHub repos based on my skill '[insert
language]'. Include: 1. Label filters, 2. How to fork and PR, 3.
Etiquette tips."
💡 Example Use Case:
Search GitHub → label: “good first issue” → make PR on a React
component → grow resume + network
✅ Problem: You don’t know how to structure a scalable backend
💬 Prompt:
"You are a backend architect. I’m building an app with user
accounts, data storage, and admin panel. Help me design the
backend architecture with suggested folder structure, database
schema, and API naming conventions."
💡 Example Use Case:
Use [Link]
→ Folders: routes, controllers, models, middlewares
→ APIs: /api/v1/users, /api/v1/posts
✅ Problem: You want to schedule and automate daily scripts
💬 Prompt:
"You are a script automation engineer. I have a Python script that
should run every day at 8 AM. Show me how to automate it using:
1. Task Scheduler (Windows), 2. Cron Job (Linux/Mac), 3. Online
platform like Zapier/Pipedream."
💡 Example Use Case:
Script runs every morning → scrapes site → updates Notion DB
→ no manual trigger needed
✅ Problem: You want to create your own API
💬 Prompt:
"You are a backend API builder. Show me how to create a custom
API using [Link] or Flask. Include: 1. CRUD endpoints, 2. JSON
input/output structure, 3. Authentication setup (JWT or API key)."
💡 Example Use Case:
Flask app → /api/tasks → supports GET/POST/DELETE
→ JWT token protects access
✅ Problem: You want to turn your code into a paid product
💬 Prompt:
"You are a code monetization strategist. Help me turn this
script/tool '[insert description]' into a product I can sell on
Gumroad or ProductHunt. Include: 1. UI wrapper suggestion, 2.
Price point, 3. Product page layout."
💡 Example Use Case:
Script = Invoice Generator
→ Turn into downloadable desktop app
→ Sell for ₹499 with PDF output + clean UI
✅ Problem: You want to document your code for clients or GitHub
💬 Prompt:
"You are a technical writer bot. Help me write clear documentation
for this project '[insert description]'. Include: 1. What it does, 2.
How to install/run, 3. Code structure explanation, 4. Sample
usage."
💡 Example Use Case:
[Link] generated with Markdown → clean, installable, link
to demo GIF
✅ Problem: You want to integrate payment gateways into your app
💬 Prompt:
"You are a payments integration dev. Show me how to integrate
Razorpay/Stripe/PayPal into my site or app for one-time and
recurring payments. Include: 1. Auth keys, 2. Checkout code, 3.
Success/failure handlers."
💡 Example Use Case:
Add Stripe payment for ₹999 product → redirects to [Link]
→ stores in database
✅ Problem: You want to connect your app with Google Sheets
💬 Prompt:
"You are a Google API dev. Teach me how to connect my
Python/[Link] app to Google Sheets using API. Include: 1.
Setup, 2. Read/write example, 3. Auth steps, 4. Use-case tips."
💡 Example Use Case:
Python script adds rows to a Sheet every time a form is submitted
→ auto-sync with Google
✅ Problem: You want to learn Docker but don’t understand
containers
💬 Prompt:
"You are a Docker explainer. Explain Docker using food/kitchen
analogies. Then show me how to Dockerize a basic Node or
Python app, including Dockerfile and [Link]."
💡 Example Use Case:
“App = recipe, container = lunchbox, image = master recipe”
→ One command = launch isolated app from any machine
✅ Problem: You want to turn ChatGPT into your code buddy
💬 Prompt:
"You are my AI pair programmer. Every time I drop a code
snippet, review it like a senior developer. Check for bugs, edge
cases, and suggest improvements with comments. Start with this:
[insert code]"
💡 Example Use Case:
User pastes JavaScript function → ChatGPT reviews logic,
renames variables for clarity, adds try/catch
✅ Problem: You don’t understand how webhooks work
💬 Prompt:
"You are a webhook explainer. Teach me how webhooks work
using a real-world metaphor. Then show how to implement a
webhook listener in [Link] or Flask, and test it with a tool like
RequestBin."
💡 Example Use Case:
Webhook = “doorbell that notifies you”
→ Stripe sends POST to your /webhook route when payment
succeeds
✅ Problem: You want to create a job board or listing website
💬 Prompt:
"You are a project roadmap builder. Help me build a niche job
board site using HTML + JS + Firebase (or another stack).
Include: 1. Posting system, 2. Frontend filters, 3. Admin
dashboard, 4. Hosting suggestion."
💡 Example Use Case:
Job board for remote designers → uses Firestore for post
storage, search filter in JS
✅ Problem: You want to generate code snippets from plain language
💬 Prompt:
"You are a code generator bot. Convert the following natural
language into clean, functional code in [insert language]. Add
comments and explain how the code works: '[insert task in plain
English]'."
💡 Example Use Case:
“Send an email every morning at 8 AM using Gmail SMTP in
Python”
✅ Problem: You want to build your own AI chatbot
💬 Prompt:
"You are a chatbot engineer. Guide me to build a custom AI
chatbot using OpenAI API + Flask + JS. Include: 1. API call
format, 2. Frontend chat window, 3. Context memory, 4. Hosting
method."
💡 Example Use Case:
Personal finance chatbot that remembers last 3 questions →
deployed on Render
✅ Problem: You want to use LangChain or RAG architecture
💬 Prompt:
"You are an AI app architect. Show me how to build a
ChatGPT-powered app using LangChain or Retrieval-Augmented
Generation. Include: 1. Vector DB, 2. Embedding model, 3. Query
flow, 4. Demo dataset."
💡 Example Use Case:
Upload PDFs → ask questions from them
→ Uses Pinecone + LangChain + OpenAI
✅ Problem: You want to build an AI image generator with custom
prompts
💬 Prompt:
"You are an image AI integrator. Help me build a web app that lets
users generate AI images using prompts via DALL·E or Stability
AI API. Include: 1. Prompt input UI, 2. Image preview, 3. Save
option."
💡 Example Use Case:
User types: “cyberpunk cat with laser eyes” → returns 512x512
image → option to download
✅ Problem: You want to start your own AI SaaS
💬 Prompt:
"You are a SaaS startup advisor. I want to build an AI-powered
SaaS for '[insert problem]'. Help me define the MVP, ideal tech
stack, pricing model, and best way to launch in 30 days."
💡 Example Use Case:
AI = Auto-Instagram caption generator → React + Firebase +
OpenAI → ₹399/month
✅ Problem: You want to turn Excel into a web app
💬 Prompt:
"You are a spreadsheet-to-app converter. Show me how to turn
my Excel/Google Sheet tool '[describe it]' into a web app using
Glide, Bubble, or custom code. Include: 1. Frontend suggestion,
2. DB link, 3. Login system."
💡 Example Use Case:
Expense tracker spreadsheet → turns into app on Glide with user
accounts + dashboard
✅ Problem: You want to create coding tutorials or tech content
💬 Prompt:
"You are a coding content planner. Give me 10 engaging tutorial
content ideas based on my skill '[insert tech stack]'. Include: 1.
Project idea, 2. Thumbnail hook, 3. YouTube/Instagram format."
💡 Example Use Case:
Stack = React
→ Project: Build Netflix clone
→ Hook: “Built this in 1 weekend”
→ Format: 30-sec reel + GitHub link
✅ Problem: You want to optimize large codebases
💬 Prompt:
"You are a codebase optimization expert. I have a large project in
[insert language]. Help me audit and improve performance,
structure, and reduce bugs. Include: 1. Folder refactor plan, 2.
Linting rules, 3. Test coverage suggestion."
💡 Example Use Case:
[Link] project → Adds ESLint, Prettier, services/ & utils/
folder → separates logic cleanly
✅ Problem: You want to build a mobile app for your blog, course, or
tool
💬 Prompt:
"You are a cross-platform app builder. Show me how to build a
mobile app that pulls data from my blog or Notion database using
React Native or Flutter. Include: 1. API setup, 2. Content sync
logic, 3. Push notification flow."
💡 Example Use Case:
Blog → Notion API → React Native fetch → Renders into feed
with daily updates
✅ Problem: You want to sell code templates or mini-apps
💬 Prompt:
"You are a code monetization guide. I want to create a mini tool or
template and sell it online. Help me choose the right idea, make it
beginner-friendly, create a demo, and list it on Gumroad/[Link]."
💡 Example Use Case:
“Dark Mode Toggle + Color Picker” plugin → Sold for ₹199 with
demo GIF
✅ Problem: You want to integrate ChatGPT into Excel or Google
Sheets
💬 Prompt:
"You are a ChatGPT + spreadsheet integrator. Show me how to
connect OpenAI API with Excel/Sheets to generate responses,
summarize, or clean data. Include: 1. App Script or VBA code, 2.
Example use-case."
💡 Example Use Case:
Sheet column = product descriptions
→ GPT prompt = “shorten to under 20 words”
→ Auto-filled new column with AI output
✅ Problem: You want to build a Notion-like app or Kanban board
💬 Prompt:
"You are a project dashboard architect. Help me build a
Notion-style task manager or Kanban board using React +
Firebase. Include: 1. UI logic, 2. Drag-and-drop, 3. Realtime
sync."
💡 Example Use Case:
Kanban app = Columns + Tasks → Firestore syncs data live
between users
✅ Problem: You want to write clean code with best practices
💬 Prompt:
"You are a clean code mentor. Convert this messy code [insert
snippet] into optimized, readable, and DRY code. Add comments
and explain what you improved and why."
💡 Example Use Case:
ChatGPT returns new function names, removes nested if blocks,
modularizes logic
✅ Problem: You want to create a login + signup system
💬 Prompt:
"You are an auth system expert. Show me how to build a full login
+ signup + logout system using Firebase Auth or Supabase.
Include: 1. UI, 2. Auth logic, 3. Session storage."
💡 Example Use Case:
Email-password login with redirect to /dashboard → stores token
in localStorage
✅ Problem: You want to learn how real-time chat apps work
💬 Prompt:
"You are a chat app engineer. Help me build a real-time chat app
using [Link] (or Firebase). Include: 1. Frontend input/output, 2.
Room logic, 3. Message timestamps, 4. Hosting setup."
💡 Example Use Case:
React + [Link] → Chat in rooms → Hosted on Vercel + Render
✅ Problem: You want to host AI tools locally for speed
💬 Prompt:
"You are an AI tool deployment expert. Show me how to run
open-source AI tools (like Whisper, Stable Diffusion, [Link])
locally on my machine. Include system requirements, install steps,
and interface tips."
💡 Example Use Case:
Run Whisper on Mac → Transcribe 30-min podcast locally in 1
minute → output to SRT file
✅ Problem: You want to convert your HTML project into a React app
💬 Prompt:
"You are a migration guide. Help me convert my static HTML +
CSS + JS website into a modular React app with components.
Include: 1. Folder structure, 2. Component breakdown, 3.
Routing."
💡 Example Use Case:
Landing page → split into [Link], [Link], [Link]
→ Route pages using React Router
✅ Problem: You want to build a SaaS dashboard with charts
💬 Prompt:
"You are a SaaS dashboard builder. Show me how to build an
analytics dashboard using React + [Link] or Recharts. Include:
1. Chart types, 2. API data structure, 3. Responsive layout."
💡 Example Use Case:
User metrics → Line + Pie chart → Filters by time → Styled with
Tailwind
✅ Problem: You want to build a resume website that auto-updates
💬 Prompt:
"You are a portfolio automation dev. Help me create a resume site
where content (projects, work experience) updates from Notion or
Google Sheets. Include: 1. Headless CMS setup, 2. React
frontend, 3. Fetch/display logic."
💡 Example Use Case:
User adds new project in Notion → Appears in portfolio site under
“Recent Work”
5) DAILY LIFE
✅ Problem: You waste time daily without realizing where
💬 Prompt:
"You are a time audit expert. Help me track and analyze how I
spend my day. Ask me to describe my last 3 days in detail and
give me a breakdown of: 1. Time-wasters, 2. Energy drains, 3.
Fixes I can make."
💡 Example Use Case:
Finds: 2 hrs/day on Instagram → suggests app block +
time-boxing
→ Gains back 14 hrs/week