AI LiteracyMDX field template

AI That Helps Without Making People Feel Behind

A practical way to introduce generative AI to holdouts, busy owners, parents, and teams without turning the room into a hype demo.

June 3, 20264 min readBy theProject.
AI That Helps Without Making People Feel Behind

AI That Helps Without Making People Feel Behind

Most people do not need another keynote about artificial general intelligence. They need a calm first win: a better email, a cleaned-up spreadsheet, a safer way to ask questions, or a draft they can improve.

The adoption myths

A starter prompt pattern

notes/prompt-pattern.mdx
text
You are helping a local business owner improve one task.
Ask one clarifying question only if required.
Return:
- a plain-English summary
- a first draft
- two risks to review before sending

Try the tone shift

Live field demoreact-ts
import * as React from 'react'

export default function ToneShift() {
const [tone, setTone] = React.useState('Plain')
const copy = {
Plain: 'Thanks for reaching out. I can help you map the next step and keep it simple.',
Warm: 'Thanks for trusting me with the idea. Let us make the next step feel clear and manageable.',
Direct: 'Send the goal, budget, and timeline. I will reply with the cleanest path forward.'
}
return <main style={{fontFamily:'system-ui', padding:24, background:'#101014', color:'white', minHeight:'100%'}}> <h2>Client reply tone</h2><div style={{display:'flex', gap:8, margin:'16px 0'}}>{Object.keys(copy).map((item) => <button key={item} onClick={() => setTone(item)} style={{border:'1px solid #444', color:'white', background:item===tone?'#e20074':'transparent', borderRadius:8, padding:'8px 12px'}}>{item}</button>)}</div><p style={{fontSize:20, lineHeight:1.5}}>{copy[tone]}</p></main>
}

The point is not to make the machine sound clever. The point is to help a person feel less stuck.