Tricks for Using AI Well A Harvard Business School study of 758 BCG consultants found that AI boosts productivity and quality for tasks within its capabilities but reduces accuracy for tasks outside its "jagged frontier," where users often accept plausible-sounding wrong answers. The Chain-of-Verification (CoVe) method, a four-step prompting strategy, helps mitigate hallucinations by separating answer generation from verification. Operational flow of the Chain-of-Verification CoVe method . A structured four-step prompting strategy to mitigate hallucinations in LLMs by generating control questions and cross-verifying them in isolation. The model discovers inconsistencies that it would overlook in the integrated version. The separation between generating and verifying is what makes it work : if you ask for everything at once in a single prompt, the model “looks at” its own response and confirms what it already said, perpetuating the same error. Step 3 is the critical one: the verification questions are answered without seeing the original response. Does the CoVe method not resemble Spec-Driven Development where the API is designed, defined, and validated in a specification before a single line of code is written; seeGoodbye Agile, Hello Specification-Drivenin saga 2 ? They do resemble each other: in both cases the idea is to define the correctness criteria before executing, rather than generating and accepting at the same time. But CoVe is a prompting technique to reduce hallucinations in any factual text; Spec-Driven is a process methodology for software. Same principle, different scope. Using AI well calls for a four-phase cycle, not a single prompt: The typical mistake is jumping directly from step 1 to step 4 while skipping step 3, or iterating between 1 and 2 without any genuine refinement. The patterns below improve specific points in this cycle. A Harvard Business School study https://pubsonline.informs.org/doi/10.1287/orsc.2025.21838 with 758 Boston Consulting Group consultants Dell’Acqua et al., published in Organization Science in 2026 introduced the concept of the jagged technological frontier . The idea: AI is not uniformly good or bad. There are tasks in which it outperforms the average human, and tasks in which it produces results worse than those of an unassisted human. What makes the frontier “jagged” is that those two categories do not separate by difficulty or task type in any predictable way — they can sit side by side in the same workflow. For tasks inside the frontier : consultants with AI completed 12% more tasks , 25% faster , at 40% higher quality than the group without AI. For the task designed specifically to fall outside the frontier : humans without AI solved it correctly 84% of the time ; consultants with AI dropped to 60–70% , because they tended to accept the model’s answer even when it was plausibly wrong. The most uncomfortable finding was not the performance gap: it was the persuasion problem . When participants spotted the error and pressed the model to correct it, the model did not back down. It apologized, adjusted surface details, and returned to defending the same wrong position with new, more elaborate arguments. More apparent confidence — same underlying error. Conceptual diagram. The frontier is “jagged” because apparently similar tasks can fall into different quadrants. This does not represent data from the BCG study: it illustrates the concept from Dell’Acqua et al. 2026 . The practical lesson: before optimizing the prompt, ask yourself whether the task is the type in which AI has a good chance of succeeding. Signals that you may be outside the frontier: the problem requires very specific or local data unlikely to be in the training corpus, the correct answer depends on context the model does not have, or the result looks plausible but you cannot validate it easily. In those cases, AI helps more as a verifier of your own solution than as the author of the answer. The first mistake almost everyone makes is starting with the question. “Write me an article about X.” “Give me a report on Y.” The model does its best without context, which is to generate an average response for that type of request. The result is generic, bland, and interchangeable. The difference comes from giving the model all the relevant context before asking for anything : the audience, the tone you use, the objective, what background information already exists, and what to avoid. This might take ten lines before your question — or it might be so concise that you have practically written the answer yourself. The Wharton research 2025 confirmed that structure and prompt format are the most consistently beneficial variable among everything they tested. Politeness “please,” threats, flattery had dramatic effects on individual questions but balanced out at scale; structure did not: it helped consistently. A before-and-after example: Before:“Write me an email introducing our services to a new client.” After:“You are my writing assistant. I am drafting an email to the head of innovation at a mid-sized pharmaceutical company, whom I met at a conference a week ago. He is interested in clinical data analytics but has expressed skepticism about consulting firms that promise magical AI. I want to present our services without sounding like a sales pitch, and I am offering a first conversation for free. My usual tone is direct, brief, and jargon-free. Avoid superlatives and phrases like ‘innovative solutions.’ Here is the first draft I wrote — tell me what you would improve and propose a final version: draft ” The rule of thumb: if what you are sending the model fits in a single tweet, it almost certainly lacks context. And if your prompt — combining context, instructions, and background material — is longer than the response you expect, you are on the right track: you have done the work of defining the frame. One technical detail worth knowing: models perform worse on information placed in the middle of the context than at the beginning or the end. The phenomenon is called “lost in the middle” Liu et al., 2023, published in TACL 2024 and replicated in 2025 across 18 different models https://arxiv.org/abs/2307.03172 . The drop in performance when you bury relevant information in the middle of a long prompt can exceed 20%. Practical consequence: if the context you provide is long, put the main instructions and the most critical information at the beginning or end — not buried in the middle. Approximate U-shaped curve based on Liu et al. TACL 2024 . Exact values vary by model and task; the degradation pattern at the middle is the consistent finding. Current models process a request more effectively when they know exactly what format is expected in the response. Three concrete tools: XML tags for large blocks. When you pass the model a long piece of text an article to review, a transcript, code , wrap it in a clear tag: