BestPromptFor XYZ Prompts for anything.

Best prompts for a one-person brand weekend

AI prompts for the weekend a one-person brand leaves the notebook and enters the world. The idea finds a face and meets its first real test.

The domain is still free and the logo is a sticky note. That is the natural beginning. By Sunday night, the idea has to survive contact with the public. A page gives it somewhere to stand. A post gives it a voice. Then a stranger gets to decide whether it deserves another minute. These prompts trace the founder's journey from private hunch to public signal. By Sunday evening, the brand has taken its first step into the world and stands on its own.

10 prompts

The weekend opens with twelve possible tasks on the table. The Pareto prompt becomes the quiet voice that picks the one road worth taking.

Pareto: [PASTE TOPIC OR GOAL]

How to use

  1. Replace [PASTE TOPIC OR GOAL] with what you want to learn, improve, or decide.

Tips

  • Best when you need priorities instead of a full explanation of everything.

Example output

For better sleep, start with the few habits that affect most nights.

Keep a fixed wake-up time, get morning light, and stop caffeine earlier than you think.

The founder steps toward the camera for the first time. A personal style prompt helps the person behind the idea look like someone a stranger could remember.

Act as an expert personal stylist and color consultant. You understand global fashion and traditional garments. You know how to style for different skin-to-hair contrast levels across all ethnicities. I want to find my personal clothing style. Here is my details: - Photo: [IF UPLOADING, DESCRIBE THE OUTFIT OR PHOTO OR WRITE 'NONE'] - Physical features: [DESCRIBE YOUR HAIR, EYES, SKIN UNDERTONE, CONTRAST LEVEL] - Body shape: [DESCRIBE YOUR BODY SHAPE OR GENERAL SILHOUETTE PREFERENCES] - Local climate: [DESCRIBE YOUR WEATHER, SUCH AS TROPICAL, COLD, OR FOUR SEASONS] - Cultural preferences: [DESCRIBE CULTURAL DRESS CODES, MODEST WEAR NEEDS, TRADITIONAL GARMENTS, OR NONE] - Daily activities: [DESCRIBE WHAT YOU DO, LIKE OFFICE WORK, OUTDOOR CHORES, OR SOCIAL EVENTS] - Style dislikes: [COLORS OR PIECES YOU ABSOLUTELY HATE] Based on this information, perform a detailed style analysis: 1. Contrast and Color Analysis: Identify my contrast level. Explain how my contrast level affects which color intensity and pattern scales look best on me. Suggest five main colors and three accent colors. 2. Style Concept: Define a custom style concept for me. Give it a distinct name. Explain the vibe and the silhouette. 3. Culturally and Climatically Adapted Formulas: Provide three easy outfit formulas. Ensure these formulas are practical for my climate and respect my cultural preferences. They should incorporate local styling if requested. 4. Starter Pack: List five key items to build this look. For each item, describe the fit and the fabric. 5. Practice Exercise: Give me one simple styling trick I can test tomorrow using clothes I already own. Ask me questions if you need more details about my lifestyle or preferences before giving the final style concept. Keep the tone encouraging and highly practical.

How to use

  1. Upload a high-quality photo of yourself in natural light so the AI can analyze your contrast level.
  2. If you do not upload a photo, describe your features such as hair color and skin undertones.
  3. Mention any cultural styling guidelines or specific garments you wear, such as modest wear or traditional pieces.

Tips

  • Determine your contrast level by looking at a grayscale photo of yourself. If your hair and skin look very different, you have high contrast.
  • Do not limit yourself to Western style terms. Ask the AI to incorporate traditional silhouettes or fusion looks.
  • Test the outfits with clothing you already own before purchasing new items.

For best results, give your AI access to:image input

Example output

Contrast and Color Analysis
Your contrast level is high (dark hair with a warm golden skin tone).
Main colors: Deep Teal / Warm Olive / Cream / Rich Rust / Charcoal.
Accent colors: Mustard / Terracotta / Gold.

Style Concept: "Tropical Structured Minimalist"
Vibe: clean lines with breathable and lightweight fabrics.
Silhouette: relaxed linen pants with structured linen shirts.

Culturally and Climatically Adapted Formulas
1. Warm-Weather Layer: a cream lightweight linen kameez with olive trousers.
2. Relaxed Office: a rust cotton shirt tucked into charcoal wide-leg trousers.
3. Casual Evening: a deep teal cotton wrap dress.

Starter Pack
- Structured linen shirt (olive, relaxed fit)
- Wide-leg cotton trousers (charcoal, high-waisted)
- Breathable wrap dress (deep teal, lightweight cotton)
- Flat leather sandals (gold)
- Lightweight cotton scarf (terracotta)

Practice Exercise
Try the "Rule of Thirds" tomorrow: tuck your shirt into high-waisted pants to create a defined proportion.

The idea crosses the threshold onto a one-file landing page. It says who the work is for and leaves a door open to the person looking.

You help non-technical people get a very simple, static website or landing page. Goal: Create one single HTML file with vanilla HTML only. Inline CSS and plain JavaScript in the same file. No frameworks, no build tools, no npm, no React, no extra files. Context: - What the page is for: [WEBSITE PURPOSE, e.g. dog walking, wedding invite, small shop] - Main heading: [HEADLINE OR BUSINESS NAME] - Short description: [ONE OR TWO SENTENCES ABOUT WHAT YOU OFFER] - Contact or call to action: [EMAIL, PHONE, LINK, OR BUTTON TEXT] - Colors or style (optional): [COLORS, MOOD, OR A SITE YOU LIKE] - Extra sections (optional): [SERVICES, PRICES, FAQ, OR PHOTO PLACEHOLDERS] Success criteria: - One file named index.html with HTML, inline CSS, and JS in that single file - Layout works on phone and desktop - Plain language. No jargon - Visual style matches what I asked for in colors or mood when I filled that in Instructions: 1. Before any code, write a short note for the user in plain English: - This is a very simple static page. It does not connect to a database, login, or online shop. - Save the file as index.html on your computer. - To view it: right-click the HTML file, choose "Open with", and pick your web browser (for example Chrome or Firefox). - They can change the text later by opening the file in a simple text editor. 2. Write the full index.html file. Use only vanilla HTML with inline CSS and plain JavaScript. 3. Use placeholder blocks with labels instead of broken image links if photos are needed. Output format: - Start with the plain-English note from step 1. - Then output the complete index.html in one fenced code block. - End with two short tips for small edits they can make themselves. Style rules: - No external dependencies except a free font from Google Fonts if needed - No fake testimonials or invented business details. Use only what I provided or clear placeholders like <YOUR PHONE>

How to use

  1. This is great for bringing ideas to life, but not for interactive web apps.
  2. Ask for a second version with a different look if the first draft is not what you wanted.
  3. Paste your real email or phone into the saved file after you copy the code out of the chat.

Tips

  • One page is enough for a first draft. Ask for more sections only if you need them.
  • If the chat cuts off the code, say "continue the index.html from where you stopped."

Example output

Before you use this page

This is a very simple static website. It is just one file on your computer. It does not take payments, store passwords, or update itself.

Save the code below as index.html. To open it, right-click that file, choose "Open with", and select your web browser.

```html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Sunny Paws Dog Walking</title>
  <style>
    /* simple layout styles here */
    ...
  </style>
</head>
<body>
  <header>...</header>
  <main>...</main>
  <footer>...</footer>
</body>
</html>
```

Two quick edits: change the business name in the main heading. Swap [YOUR PHONE] for your real number.

The page is standing, but the road to it is still dark. A marketing plan sketches the next stretch of road in terms a solo founder can actually walk.

Act as a senior marketing strategist. Create a simple marketing plan for: [BUSINESS]. Include: 1. Ideal customer profile 2. Positioning 3. Three acquisition channels 4. A 30-day action plan 5. Risks and assumptions Keep the plan practical and concise.

How to use

  1. Replace [BUSINESS] with a one-line description of what you sell and to whom.
  2. Run it, then ask follow-ups like "expand the 30-day plan into weekly tasks".
  3. Paste in any real numbers you have (budget, current channels) so the plan fits your situation.

Tips

  • The first draft is generic on purpose. Push back with specifics to make it useful.
  • Ask it to challenge its own assumptions before you commit budget.

For best results, give your AI access to:web search

Example output

Ideal customer profile
- Early-stage SaaS founders, 1-10 employees, selling to other startups.

Positioning
- The fastest way to launch a marketing plan without hiring an agency.

Three acquisition channels
1. Founder-led LinkedIn content
2. Niche community sponsorships
3. ...

The first public post marks the founder's departure from the workshop. It carries the lesson behind the brand and keeps a voice that belongs to its maker.

Act as a sharp founder-led content editor. Turn this idea into a LinkedIn post: [IDEA]. Requirements: 1. Start with a clear hook 2. Use simple language 3. Add one practical lesson 4. End with a thoughtful question 5. Avoid hype and generic advice

How to use

  1. Replace [IDEA] with a rough thought, even a single sentence.
  2. Ask for two or three variations, then pick the hook that feels most like you.
  3. Edit one detail to make it specific to your company. Generic posts get ignored.

Tips

  • Tell it your usual tone (dry, warm, blunt) so the draft sounds like you.
  • Cut the last line if the question feels forced.

Example output

We almost shipped the wrong feature for three months.

Customers kept asking for exports. We built them. Usage barely moved.

The real problem was onboarding, not exports...

The site has not drawn a crowd yet. A short video becomes the flare over the hills, carrying the offer far beyond the new front door.

Act as a short-form video writer who knows how TikTok pacing works. Goal: Write a film-ready TikTok script for [TOPIC OR IDEA]. Context: - Audience: [WHO SHOULD STOP SCROLLING AND WHY] - Video length: [15 SECONDS, 30 SECONDS, 60 SECONDS, OR 90 SECONDS] - Format (pick one): [TALKING HEAD, POV, STORYTIME, TUTORIAL, LIST, SKIT, OR GREEN SCREEN] - Goal of the video: [VIEWS, FOLLOWS, LEADS, SALES, OR BRAND AWARENESS] - Proof or details I can show: [REAL FACTS, SCREEN RECORDINGS, BEFORE/AFTER, OR DEMO STEPS] - Must include: [PRODUCT NAME, OFFER, DISCLAIMER, OR CTA DETAILS] Success criteria: - Hook lands in the first 2 seconds - Every line is speakable at a normal pace within [VIDEO LENGTH] - One clear payoff. No meandering middle - Pattern breaks every 5 to 8 seconds so retention stays up - Sounds like a person on TikTok, not a brand deck - Caption and on-screen text add value, not repeat the voiceover word for word Instructions: 1. Name the best hook pattern for this idea (curiosity gap, bold claim, relatable pain, or visual surprise). Say why in one sentence. 2. Write 3 hook options for the first 3 seconds. Keep each under 12 words. 3. Pick the strongest hook and write the full spoken script with timestamps every 3 to 5 seconds through [VIDEO LENGTH]. 4. Add on-screen text cues: what appears on screen, when, and for how long. 5. Add visual notes: camera angle, props, B-roll, cuts, or gestures for each beat. 6. Write a caption under 150 characters plus 5 to 8 hashtags (mix broad and niche). 7. End with a short "Before you film" checklist. Output format: Return sections 1-7 in order. Use the numbered labels exactly as above. Style rules: - Write for the ear. Short sentences. Strong verbs. - No fake urgency and no "you won't believe" filler - Do not invent results, testimonials, or stats unless I provided them in [MUST INCLUDE] - If [GOAL OF THE VIDEO] is sales or leads, one soft CTA at the end. No hard pitch in the hook.

How to use

  1. Put the raw idea in [TOPIC OR IDEA], even if it is messy. One sentence is enough to start.
  2. Add a TikTok URL in [MUST INCLUDE] if your chat tool can open links. Otherwise describe the first 10 seconds and ask for the same pacing with your topic.
  3. Run a second pass with "cut to 30 seconds" or "rewrite hook option 2 as the main script."

Tips

  • Pick one length and stick to it. Scripts balloon when the time limit is vague.
  • Film the hook three ways. TikTok rewards the first three seconds more than perfect lighting.
  • If the script feels flat, ask for "one visual gag in the middle" without changing the payoff.

Example output

Section 1

Hook pattern: relatable pain. Most home cooks already own the fix and never use it.

Section 2

- "Your cast iron is sticky because of this one step."
- "Stop scrubbing cast iron. Do this instead."
- "I ruined cast iron for years until someone showed me this."

Section 3 (excerpt)

0:00-0:03 HOOK
"Your cast iron is sticky because of this one step."

0:03-0:08
"After cooking, you probably rinse it hot and call it done. That leaves a film that builds up."

0:08-0:15
"Salt scrub. Wipe. Thin oil. Heat two minutes. That's it."

Section 6

Caption: The cast iron reset I wish I learned ten years ago.
Hashtags: #castiron #cookinghacks #kitchenhacks #homecooking #foodtok #skillet #castironcare #learnontiktok

Before you film
- Read the hook out loud twice. Cut any word you stumble on
- Check you can finish the script inside [VIDEO LENGTH] at a calm pace
- ...

Some solo brands are people for hire. The CV turns the founder's scattered history into a page a potential client can understand.

Act as an experienced CV editor who helps job seekers turn raw notes into a focused application document. Goal: Produce a CV draft tailored to [TARGET ROLE OR JOB AD]. Context: - My background (paste anything you have): [WORK HISTORY, OLD CV, OR BULLET NOTES] - Target role or job posting: [TARGET ROLE, INDUSTRY, OR PASTE JOB AD] - Location and work setup: [CITY/COUNTRY AND REMOTE/HYBRID/ONSITE IF RELEVANT] - Length and format: [ONE PAGE, TWO PAGES, OR ACADEMIC CV] - What I want to emphasize: [SKILLS, LEADERSHIP, TECH STACK, CAREER CHANGE, OR GAPS TO HANDLE] - What I must not invent: [ONLY USE FACTS FROM MY INPUT] Success criteria: - Every bullet shows outcome or impact, not just duties - Language matches what the target role asks for - No fabricated details beyond what I provided in my background - Scannable layout with standard section order unless [LENGTH AND FORMAT] says otherwise Instructions: 1. List gaps or missing facts you need before finalizing (max 5 questions). If the draft can proceed anyway, say "Proceeding with assumptions" and state them. 2. Suggest the best section order for this target role. 3. Write the full CV in plain text with clear section headings. 4. For each role, use 2-4 bullets. Start bullets with strong verbs. Include numbers only when I provided them or they are directly implied. 5. Write a 2-3 line professional summary at the top (skip if [LENGTH AND FORMAT] is academic CV). 6. Add a short Skills section if it helps this application (group by theme, not a long comma list). 7. Return a "Before you send" checklist: 5 things I should verify or customize. Output format: Return sections 1-7 in order. Use the heading labels exactly as numbered above.

How to use

  1. Paste the job ad into [TARGET ROLE OR JOB AD] so keyword alignment is real, not guessed.
  2. If you are changing careers, say so in [WHAT I WANT TO EMPHASIZE] and ask for a skills-forward layout.
  3. Run a second pass with "tighten to one page" or "rewrite the summary for [COMPANY NAME]."

Tips

  • Bring metrics even if rough. "Cut report time about 30%" beats "improved reporting."
  • If you have employment gaps, note them in [GAPS TO HANDLE]. Ask for honest framing, not hidden dates.

Example output

Section 3 (excerpt)

PROFESSIONAL SUMMARY
Operations manager with six years in logistics and warehouse teams. Cut pick errors and onboarding time through clearer SOPs and weekly floor reviews.

EXPERIENCE
Warehouse Supervisor | Northline Logistics | 2021 to present
- Reduced mis-picks from 2.1% to 0.7% over two quarters by redesigning bin labels and shift handoffs
- Trained 12 new hires per month with a checklist that cut ramp-up from three weeks to ten days

Before you send
- Confirm dates match your records
- Swap "present" if your end date changed
- ...

Every new tool has a toll gate. The terms and privacy prompt reads the sign at the gate, looking for data claims and lock-in hiding in the small print.

Act as a document analyst. Read the document pasted below and explain what I am agreeing to before I click accept or sign. Return: 1. Document identity: company name and title, plus last updated date if shown and what kind of document this is 2. Plain-language summary in one paragraph 3. My obligations: fees and account rules, plus acceptable use and anything I must do to keep access 4. Company powers: how the company uses data and runs the account. Flag broad content rights. Note one-sided term changes and mandatory arbitration if present 5. Privacy details if the paste includes a privacy policy. Cover collection purpose, retention, sharing, plus deletion and export options 6. Watch closely: 5 to 10 clauses worth a second read. For each, cite the section and explain why it matters. Rate how serious each clause is on a low-to-high scale 7. Gaps: vague language or references to documents not included in the paste 8. Questions to ask before accepting 9. Reasonable to accept if... and Get professional advice before accepting if... --- START DOCUMENT --- [PASTE FULL DOCUMENT HERE] --- END DOCUMENT ---

How to use

  1. Paste the full text between the START and END markers. That is all you need to do.
  2. If the site splits terms and privacy into separate pages, paste both into one run.
  3. For one clause only, paste just that section and ask "Explain this in plain language."

Tips

  • Copy the version shown on the site today.
  • Search the paste for "sole discretion" and "binding arbitration", especially where changes happen without notice.
  • When the service handles regulated or sensitive personal data, treat the summary as a first pass and confirm with a lawyer.

Example output

Section 2

By using the app you grant a license for uploaded content and agree to binding arbitration in Delaware. The company can also change the terms by posting an update on the website.

Section 6

Section 8.2 "Changes to service" (high): The company may modify or discontinue features without notice.

Section 8

- Do you sell or share personal data with advertisers, and can I opt out?
- What notice do you give before material term changes?

Section 9

Reasonable to accept if you use a free tier and can leave without penalty.

Get professional advice before accepting if you handle customer data or sign a paid annual contract.

This briefing is reading support only, not legal advice.

At the edge of launch, the brand meets its first skeptical companion. Red Team tests the positioning and the About line for cracks a stranger would notice.

Red Team: [PASTE TEXT OR IDEA]

How to use

  1. Replace [PASTE TEXT OR IDEA] with a draft, plan, decision, offer, or argument.

Tips

  • Best when you want a direct critique before you act on something.

Example output

The birthday treasure hunt sounds fun, but the clues may be too hard for six-year-olds.

Make each clue point to something visible in the room, and keep one adult ready with hints.

Related collections