Notion Product Proposal Style
Use for stakeholder-facing Notion docs that need approval, alignment, or
feedback on a product direction.
Do not use this for PR update pages that are demo-first and append-only.
Use notion-prd-style for those.
Safety
Do not include PHI, patient examples, secrets, tokens, customer-specific data,
or private URLs in proposal docs. Keep examples and references generic unless a
specific internal system is essential to the proposal.
Default audience
Assume the reader is a PM, VP Product, Head of Product, or product/engineering
lead who wants to answer:
- What is the proposal?
- Why now?
- What is low risk vs high risk?
- What decision am I being asked to make?
Optimize for fast decision-making, not exhaustive documentation.
Default structure
Use this shape unless the user asks for something else:
<callout icon="⚙️">
**Status:** <Proposal draft | In review | Approved>
**Author:** <Name>
**Date:** <Month Day, Year>
**Primary stakeholder:** <Name, title>
**Stakeholders:** <PMs, leads, etc.>
**Delivery shape:** <short rollout summary>
</callout>
## Executive summary
<2-4 short paragraphs>
## Decision requested
- <what needs approval now>
- <what is part of the proposal but staged later>
## Key analytics
- <1-3 bullets only>
## Proposal
### Core launch
- <scope>
### Later-stage test
- <higher-risk piece>
## Alternative considered
**Alternative:** <one viable alternative>
**Why not recommended:** <1-3 sentences>
## Success metrics
- <guardrails>
- <outcomes>
## Decisions needed
- <flat list>
Writing rules
- Lead with the ask. The executive summary should make the proposal legible
without reading the rest.
- Be concise. Prefer short paragraphs and flat bullets. Avoid long
background sections.
- Separate low-risk and high-risk changes. If the proposal contains mixed
risk, recommend a staged rollout instead of bundling them together.
- Use analytics for meaning, not decoration. State the takeaway in plain
English after the number.
- Include one viable alternative. Do not use a strawman; name a real option
and its tradeoffs.
- Call out timing if it matters. If launch timing, platform expansion, or
shared infrastructure makes the moment important, say so in the executive
summary.
- Prefer rewrite-in-place. For proposal docs, refine the same memo rather
than append new versions, unless the user explicitly wants versioned history.
What to include
- Why this proposal makes sense strategically
- What ships now vs later
- What is low risk vs higher risk
- What metrics will prove success or failure
- What stakeholder approvals are needed
Avoid by default
- File lists
- Implementation details that do not affect risk or scope
- Multi-section PR changelogs
- Demo-first framing when the goal is decision-making
- More than one alternative unless the user asks
Metrics guidance
- Prefer 1-3 high-signal metrics in the main memo.
- Use metrics to justify sequencing decisions.
- Distinguish between population-level risk and high-intent cohort risk
when relevant.
- If a metric is ambiguous, say what it does and does not prove.
Prose formatting (Mason's preferences)
A stakeholder memo is prose-heavy. Loud inline formatting on every
identifier distracts from the decision ask.
- Italic over backticks for identifiers in prose. Data-model fields
(patient_id), feature-flag names (aiux), component names, branch
names, and UI button labels referenced in copy go in
*italics* when
embedded in sentences. Reserve backticks for actual code snippets or
fenced code blocks.
- Product name in prose, codename only for technical identifiers.
Refer to the shipped product by its user-facing name ("Freed 2.0") in
executive summary, proposal, and success metrics sections. Internal
codenames (e.g. aiux) appear only when pointing to a feature flag,
data-testid, or file path, still rendered in italics.
- Round in prose, precise in tables. Striking precision (e.g.
"0.005%") can feel alarmist or nitpicky in an executive summary.
Round in the narrative ("~50%") and keep the precise figure in the
backing analytics or table.
- Don't repeat the same stat. If "47%" appears in the executive
summary, analytics, and success metrics, each instance has to add
something distinct (hook, data, target). Pure restatements get cut.
- Consolidate related bullets. If two bullets share the same
underlying idea, merge them rather than list them separately.
- Respect prior user edits on revision passes. If the user manually
trimmed content between turns, do not re-introduce the deleted
material under a different structure when doing further polish. Ask
before putting it back.
- Grammar-polish the executive summary. Stakeholders read it
verbatim — catch subject/number agreement and preposition drift
before shipping.
Notion-flavored Markdown reminders
- Use tabs (not spaces) to indent children of
<callout> and <columns>.
- Inline identifiers go in
*italics* per the prose formatting rule
above; backticks are for actual code blocks only.
- Tables use
<table fit-page-width="true" header-row="true"> with plain
<tr> / <td> children on their own lines.
<empty-block/> must be on its own line to render as a blank line.
1---2name: notion-product-proposal-style3description: Write concise Notion product proposal memos for stakeholder alignment. Use when creating or revising a proposal, strategy memo, rollout plan, or decision doc for PMs, VP Product, Head of Product, or cross-functional leads. Includes rationale, sequencing, alternatives, and metrics.4---56# Notion Product Proposal Style78Use for stakeholder-facing Notion docs that need approval, alignment, or9feedback on a product direction.1011Do **not** use this for PR update pages that are demo-first and append-only.12Use `notion-prd-style` for those.1314## Safety1516Do not include PHI, patient examples, secrets, tokens, customer-specific data,17or private URLs in proposal docs. Keep examples and references generic unless a18specific internal system is essential to the proposal.1920## Default audience2122Assume the reader is a PM, VP Product, Head of Product, or product/engineering23lead who wants to answer:24251. What is the proposal?262. Why now?273. What is low risk vs high risk?284. What decision am I being asked to make?2930Optimize for fast decision-making, not exhaustive documentation.3132## Default structure3334Use this shape unless the user asks for something else:3536```md37<callout icon="⚙️">38 **Status:** <Proposal draft | In review | Approved>39 **Author:** <Name>40 **Date:** <Month Day, Year>41 **Primary stakeholder:** <Name, title>42 **Stakeholders:** <PMs, leads, etc.>43 **Delivery shape:** <short rollout summary>44</callout>4546## Executive summary47<2-4 short paragraphs>4849## Decision requested50- <what needs approval now>51- <what is part of the proposal but staged later>5253## Key analytics54- <1-3 bullets only>5556## Proposal57### Core launch58- <scope>59### Later-stage test60- <higher-risk piece>6162## Alternative considered63**Alternative:** <one viable alternative>64**Why not recommended:** <1-3 sentences>6566## Success metrics67- <guardrails>68- <outcomes>6970## Decisions needed71- <flat list>72```7374## Writing rules7576- **Lead with the ask.** The executive summary should make the proposal legible77without reading the rest.78- **Be concise.** Prefer short paragraphs and flat bullets. Avoid long79background sections.80- **Separate low-risk and high-risk changes.** If the proposal contains mixed81risk, recommend a staged rollout instead of bundling them together.82- **Use analytics for meaning, not decoration.** State the takeaway in plain83English after the number.84- **Include one viable alternative.** Do not use a strawman; name a real option85and its tradeoffs.86- **Call out timing if it matters.** If launch timing, platform expansion, or87shared infrastructure makes the moment important, say so in the executive88summary.89- **Prefer rewrite-in-place.** For proposal docs, refine the same memo rather90than append new versions, unless the user explicitly wants versioned history.9192## What to include9394- Why this proposal makes sense strategically95- What ships now vs later96- What is low risk vs higher risk97- What metrics will prove success or failure98- What stakeholder approvals are needed99100## Avoid by default101102- File lists103- Implementation details that do not affect risk or scope104- Multi-section PR changelogs105- Demo-first framing when the goal is decision-making106- More than one alternative unless the user asks107108## Metrics guidance109110- Prefer 1-3 high-signal metrics in the main memo.111- Use metrics to justify sequencing decisions.112- Distinguish between **population-level risk** and **high-intent cohort risk**113when relevant.114- If a metric is ambiguous, say what it does and does not prove.115116## Prose formatting (Mason's preferences)117118A stakeholder memo is prose-heavy. Loud inline formatting on every119identifier distracts from the decision ask.120121- **Italic over backticks for identifiers in prose.** Data-model fields122 (*patient_id*), feature-flag names (*aiux*), component names, branch123 names, and UI button labels referenced in copy go in `*italics*` when124 embedded in sentences. Reserve backticks for actual code snippets or125 fenced code blocks.126- **Product name in prose, codename only for technical identifiers.**127 Refer to the shipped product by its user-facing name ("Freed 2.0") in128 executive summary, proposal, and success metrics sections. Internal129 codenames (e.g. *aiux*) appear only when pointing to a feature flag,130 `data-testid`, or file path, still rendered in *italics*.131- **Round in prose, precise in tables.** Striking precision (e.g.132 "0.005%") can feel alarmist or nitpicky in an executive summary.133 Round in the narrative ("\~50%") and keep the precise figure in the134 backing analytics or table.135- **Don't repeat the same stat.** If "47%" appears in the executive136 summary, analytics, and success metrics, each instance has to add137 something distinct (hook, data, target). Pure restatements get cut.138- **Consolidate related bullets.** If two bullets share the same139 underlying idea, merge them rather than list them separately.140- **Respect prior user edits on revision passes.** If the user manually141 trimmed content between turns, do not re-introduce the deleted142 material under a different structure when doing further polish. Ask143 before putting it back.144- **Grammar-polish the executive summary.** Stakeholders read it145 verbatim — catch subject/number agreement and preposition drift146 before shipping.147148## Notion-flavored Markdown reminders149150- Use tabs (not spaces) to indent children of `<callout>` and `<columns>`.151- Inline identifiers go in `*italics*` per the prose formatting rule152 above; backticks are for actual code blocks only.153- Tables use `<table fit-page-width="true" header-row="true">` with plain154`<tr>` / `<td>` children on their own lines.155- `<empty-block/>` must be on its own line to render as a blank line.156