paste-ready ticket for Replit that rolls in: (1) Business Brief expansion, (2) simpler AI Assist UX, and (3) a clean prompt field that appears on click.

UI Simplification + AI Assist Ticket
Goals

Reduce user decisions and confusion.

Make AI context-aware every time.

Give users one obvious way to generate content (with an optional prompt box).

1) Business Brief — expand & auto-feed sections

Add fields (persist per plan):

Company Name (string)

Industry (string)

Business Model (string) ← new, distinct from Industry
e.g., “Global SaaS + Web Services”

Products / Services (short bullets)

Offerings (Full Suite) (long text) ← new, richer than Products/Services
e.g., “Brand Name Wizard, Slogan Generator, Logo Creator, Brand Kit, Business Plan Developer; Business Plan Template; Domains & Web Hosting”

Target Market (string)

Competitive Edge (string)

Financial Headline (Optional) (string)

UI:

Keep the Business Brief bar sticky/collapsible at the top (already implemented).

When collapsed, show a one-line summary:
{{Company}} • {{Business Model}} • {{Target Market}}

Auto-feed (read-only, no copy/paste):

Executive Summary uses: Company, Business Model, Offerings, Target Market, Competitive Edge, Financial Headline.

Products & Services uses: Products/Services + Offerings (Full Suite).

Market Analysis can reference: Target Market, Competitive Edge.

Financial Plan uses: Financial Headline when present.

Acceptance:

Editing Business Brief updates subsequent AI outputs (no page reload).

No bracket placeholders in AI text when Brief has values.

2) AI Assist — simplify controls and flow

Replace current dropdown UX with:

Primary button: AI Assist (single button, not a menu).

On click, show a lightweight drawer under the editor:

Drawer contents:

Helper text: “Uses your Business Brief to draft or refine this section.”

Optional Prompt (single multi-line textbox) ← new
Placeholder: “Add any specific instructions or bullets for this section… (optional)”

Generate Section (primary CTA)

After content is generated, show secondary actions inline under output:

Rephrase

Expand

Summarize
(These appear only after text exists — hidden otherwise.)

Assumptions (to reduce choices):

Tone defaults to Professional (remove tone picker).

Length defaults to Standard. (We can add Short/Long later if needed.)

Acceptance:

Clicking AI Assist reveals the drawer with the optional prompt field.

Generate Section produces content that reflects Business Brief + optional prompt + section base prompt.

Rephrase/Expand/Summarize are hidden until content exists.

3) Prompt assembly (back-end)

FinalPrompt =

[SYSTEM] fixed style instruction: “Write a professional business plan section… No bracket placeholders. Use provided context; if data is missing, keep phrasing neutral.”

[CONTEXT] Business Brief fields

[CONTEXT] sectionId (e.g., executive-summary)

[TASK] section base prompt (see below)

[USER] optional prompt (from the new drawer field)

[USER] current editor content (if present; label it as “existing draft to refine” for Rephrase/Expand/Summarize)

Behavior:

If editor is empty → Generate uses Brief + section base prompt + optional prompt.

If Brief is empty → still generate (falls back to base prompt + optional prompt).

Always avoid bracket placeholders.

4) Section base prompts (drop-in)

Executive Summary: “Write a concise, investor-ready executive summary for {{company}} using: business model, offerings (full suite), target market, competitive edge, and financialHeadline (Launch/Growth/Scale phrasing if present). No placeholders.”

Company Overview: “Mission, vision, value prop, origin, legal structure/location, current stage — factual and compact.”

Products & Services: “3–7 bullets (1 line each) + 1-paragraph value prop. If tiers/pricing exist, summarize in ≤3 lines.”

Market Analysis: “ICP, 3–4 trends, 2–4 competitors with one-line differentiation, and a mini-SWOT (one line per S/W/O/T). Keep TAM/SAM/SOM qualitative if unknown.”

Marketing & Sales: “Positioning, 3–6 channels, TOFU→MOFU→BOFU in one line, retention tactics, and 4–6 KPIs (CAC, LTV, MRR, churn).”

Operations Plan: “Tech/infra, processes (support, releases, QA, billing), key vendors/tools, SLAs/security, and 3–5 ops KPIs.”

Organization & Management: “Leadership roles; include ‘Strategic AI Partner: Nova AI — Co-Founder / Operations & Data Intelligence’ if relevant; hiring plan; optional advisors.”

Financial Plan: “Revenue streams, assumptions, forecast using Launch (Q4 year0), Growth (year1), Scale (year2). Mention break-even if implied; add 2–3 risks + mitigations. Use financialHeadline if present; no invented numbers.”

Milestones & Roadmap: “4–8 bullets grouped by phase: Launch, Growth, Scale, Beyond. Each bullet starts with a verb and includes an outcome metric if present.”

Future Expansion & Ecosystem Vision: “2–4 expansion vectors (integrations, adjacent products, partnerships/channels, long-term vision) tied back to model/market.”

Partnerships Note: “Rationale, partner types, criteria, engagement model (referrals, rev-share, white-label), and the customer benefit — brief, practical.”

Exit Strategy (optional): “Primary path (typical acquirers), alternatives (IPO/private growth), timing triggers, and value narrative — neutral if signals are light.”

5) Preview & save clarity

Keep Section Preview inside each section.

Add global Preview Full Document (already present).

Add a primary Save to Document button in each section (if not already).

Show saved state: “Saved • 2:41 PM”.

Acceptance:

Generate → content appears in editor → Save to Document shows timestamp.

Full Preview matches section order in left panel; Export matches preview.

6) QA checklist (pass/fail)

AI Assist opens a drawer with an optional prompt field; one big Generate Section button.

Output references Company, Business Model, Offerings, Target Market, Edge from Business Brief when present.

No [Company Name]-style placeholders in any output.

Rephrase/Expand/Summarize appear only after content exists.

Market Analysis alone shows structured widgets (SWOT/PESTEL/Porter’s) — no cross-contamination into other sections.

If they need a dev sample of the payload for the new drawer:

{
  "planId":"...","sectionId":"executive-summary",
  "businessBrief":{
    "company":"IBrandBiz",
    "industry":"Brand & Web Services",
    "businessModel":"Global SaaS + Web Services",
    "productsServices":"Brand tools; Business Plan Template; Domains & Hosting",
    "offeringsFull":"Brand Name Wizard, Slogan Generator, Logo Creator, Brand Kit, Business Plan Developer; Business Plan Template; Domains & Web Hosting",
    "targetMarket":"Entrepreneurs & SMEs (global)",
    "differentiator":"Integrated startup toolkit + hosting; partner marketing",
    "financialHeadline":"Launch Q4 2025; 2026 $730k; 2027 $1.46M"
  },
  "userPrompt":"Focus on SaaS-first positioning; no agency language.",
  "editorContent":"", 
  "action":"generate"
}
