Wyatt Brocato / The AI Business Playbook
Free 3-minute quiz

What’s your AI work style?

Find the bottleneck keeping AI from actually saving you time at work, then get the first workflow I’d recommend for how you work.

7 quick questionsPersonalized resultBuilt for real workNo tool roundup
Question 1 of 7
Choose the closest fit

Your result is ready.

Enter your email below to see your AI Work Style and the first workflow I’d recommend.

You’ll also get The AI Business Playbook, one practical weekly email about using AI for real work without outsourcing your judgment.
(function() { const resultTypes = { context: { label: "The Context Juggler" }, draft: { label: "The First-Draft Staller" }, followup: { label: "The Follow-Up Firefighter" }, tools: { label: "The Tool Treadmill Runner" }, judgment: { label: "The Judgment Keeper" } }; const questions = [ { title: "Where does work feel most expensive right now?", help: "Not emotionally expensive. Operationally expensive. The work that keeps costing more attention than it should.", answers: [ { title: "Holding all the moving pieces", detail: "Notes, context, meetings, constraints, and updates are scattered everywhere.", type: "context" }, { title: "Getting the first draft started", detail: "You know what you mean, but the blank page slows everything down.", type: "draft" }, { title: "Cleaning up after meetings", detail: "Decisions, owners, and next steps keep leaking out of the room.", type: "followup" }, { title: "Trying tools that do not stick", detail: "You have prompts and apps, but no repeatable workflow.", type: "tools" }, { title: "Trusting the output", detail: "AI helps, but you still worry about accuracy, tone, and context.", type: "judgment" } ] }, { title: "When you open AI during work, what usually happens?", help: "Pick the pattern you recognize most.", answers: [ { title: "I dump context and hope it can make sense of it", detail: "The hard part is organizing the mess.", type: "context" }, { title: "I ask it to draft something I have been avoiding", detail: "The hard part is getting a usable first version.", type: "draft" }, { title: "I ask it to summarize a call or notes", detail: "The hard part is turning discussion into action.", type: "followup" }, { title: "I bounce between prompts and tools", detail: "The hard part is knowing what system to keep.", type: "tools" }, { title: "I rewrite almost everything it gives me", detail: "The hard part is making the output safe to use.", type: "judgment" } ] }, { title: "What would make AI feel useful this week?", help: "The best quiz results come from the answer that would change your actual calendar.", answers: [ { title: "Walking into meetings with better context", detail: "Less scrambling before conversations.", type: "context" }, { title: "Getting clean drafts faster", detail: "Less time staring at a blank page.", type: "draft" }, { title: "Leaving meetings with clear owners", detail: "Less follow-up confusion afterward.", type: "followup" }, { title: "Knowing which workflows to build first", detail: "Less random experimentation.", type: "tools" }, { title: "Having a review process I trust", detail: "Less risk when AI helps with real work.", type: "judgment" } ] }, { title: "Which task quietly eats your week?", help: "Do not pick the task you dislike most. Pick the one that keeps coming back.", answers: [ { title: "Pre-call prep and context gathering", detail: "You spend too much time getting oriented.", type: "context" }, { title: "Docs, emails, and written updates", detail: "You spend too much time forming the first pass.", type: "draft" }, { title: "Meeting notes and follow-ups", detail: "You spend too much time turning talk into action.", type: "followup" }, { title: "Testing new AI workflows", detail: "You spend too much time experimenting without a system.", type: "tools" }, { title: "Reviewing and correcting AI output", detail: "You spend too much time making sure it is actually right.", type: "judgment" } ] }, { title: "What is your biggest hesitation with using AI more?", help: "This is the objection that usually shapes your work style.", answers: [ { title: "I have too much context to explain every time", detail: "The setup work feels too heavy.", type: "context" }, { title: "The output sounds generic", detail: "It gets words on the page, but not your words.", type: "draft" }, { title: "It misses the real decisions", detail: "It summarizes, but does not always catch the operational weight.", type: "followup" }, { title: "I do not know where it fits", detail: "Every use case feels possible, which makes none of them obvious.", type: "tools" }, { title: "I do not fully trust it", detail: "You need a better way to check the work before using it.", type: "judgment" } ] }, { title: "What do people rely on you for at work?", help: "Your result should match the role you actually play, not just the tasks you do.", answers: [ { title: "Holding the bigger picture", detail: "You connect context across people, projects, and decisions.", type: "context" }, { title: "Communicating clearly", detail: "You turn rough thoughts into something other people can use.", type: "draft" }, { title: "Keeping people aligned", detail: "You make sure owners, next steps, and open loops are clear.", type: "followup" }, { title: "Finding better ways to work", detail: "You test systems and try to improve the operating model.", type: "tools" }, { title: "Protecting the standard", detail: "You catch what is wrong, risky, vague, or not ready.", type: "judgment" } ] }, { title: "Which sentence sounds most like you?", help: "Go with the one that feels uncomfortably accurate.", answers: [ { title: "I am carrying more context than my system can handle.", detail: "Your leverage leak is scattered information.", type: "context" }, { title: "I lose too much time turning thoughts into finished work.", detail: "Your leverage leak is first-draft friction.", type: "draft" }, { title: "My meetings create more work than they resolve.", detail: "Your leverage leak is unresolved follow-up.", type: "followup" }, { title: "I have AI inputs, but not an AI operating system.", detail: "Your leverage leak is scattered experimentation.", type: "tools" }, { title: "I want speed, but not at the cost of judgment.", detail: "Your leverage leak is review and trust.", type: "judgment" } ] } ]; let current = 0; let answers = []; const qCount = document.getElementById("wsQuestionCount"); const qTitle = document.getElementById("wsQuestionTitle"); const qHelp = document.getElementById("wsQuestionHelp"); const answersEl = document.getElementById("wsAnswers"); const progress = document.getElementById("wsProgress"); const backBtn = document.getElementById("wsBackBtn"); const restartBtn = document.getElementById("wsRestartBtn"); const quizCard = document.getElementById("wsQuizCard"); const gate = document.getElementById("wsGate"); const scrollBtn = document.getElementById("wsScrollToForm"); function renderQuestion() { const q = questions[current]; qCount.textContent = "Question " + (current + 1) + " of " + questions.length; qTitle.textContent = q.title; qHelp.textContent = q.help; progress.style.width = ((current) / questions.length * 100) + "%"; answersEl.innerHTML = ""; q.answers.forEach(function(answer) { const btn = document.createElement("button"); btn.className = "ws-answer"; btn.type = "button"; btn.innerHTML = "" + answer.title + "" + answer.detail + ""; btn.addEventListener("click", function() { answers[current] = answer.type; if (current < questions.length - 1) { current += 1; renderQuestion(); window.scrollTo({ top: quizCard.offsetTop - 24, behavior: "smooth" }); } else { finishQuiz(); } }); answersEl.appendChild(btn); }); backBtn.style.visibility = current === 0 ? "hidden" : "visible"; } function finishQuiz() { progress.style.width = "100%"; const scores = { context: 0, draft: 0, followup: 0, tools: 0, judgment: 0 }; answers.forEach(function(type) { scores[type] += 1; }); let winner = "context"; Object.keys(scores).forEach(function(type) { if (scores[type] > scores[winner]) winner = type; }); const resultPayload = { type: winner, label: resultTypes[winner].label, scores: scores, completedAt: new Date().toISOString() }; localStorage.setItem("abpWorkStyleResult", JSON.stringify(resultPayload)); quizCard.style.display = "none"; gate.classList.add("is-visible"); setTimeout(function() { gate.scrollIntoView({ behavior: "smooth", block: "start" }); }, 80); } backBtn.addEventListener("click", function() { if (current > 0) { current -= 1; renderQuestion(); } }); restartBtn.addEventListener("click", function() { current = 0; answers = []; quizCard.style.display = "block"; gate.classList.remove("is-visible"); localStorage.removeItem("abpWorkStyleResult"); renderQuestion(); window.scrollTo({ top: 0, behavior: "smooth" }); }); scrollBtn.addEventListener("click", function() { const target = document.getElementById("signup"); if (target) { target.scrollIntoView({ behavior: "smooth", block: "start" }); } }); renderQuestion(); })();

You’ll get your result on the next page, plus one practical AI workflow each week.

© Wyatt Brocato · The AI Business Playbook