100 battle-tested Claude Opus 4.7 prompts for coding, research, writing, agents, and more. Power-user patterns we run at PromptsRush every day.
P
PromptsRushMay 22, 2026
•26 min read
On this page
17 sections
100 Best Claude Opus 4.7 Prompts for Power Users
Read
0%
2 views
Claude Opus 4.7 is the most capable general-purpose model on the market in mid-2026, and we have been running it as the senior model in our stack for six months. Along the way we accumulated a working library of prompts that consistently produce better output than the obvious version of the same ask.
This is that library — 100 prompts, ten categories, all tested in real work. None of these are toy prompts. Each one is something we either run weekly or have saved in our text-expander because the lift versus a naive version is worth the keystrokes.
Short version on how to use this post: read the mental model section first, then jump to whichever category matches what you are working on. The hero prompts in each section have copy buttons. The rest are numbered and ready to lift.
Why These Prompts Work — The Mental Model
Opus 4.7 is not the same model as GPT-5.5 or Gemini 3.5 Flash. The prompts that get the best out of it lean on three properties of the model:
It tolerates very long context. 1M tokens of useful input is normal. Stop summarising — paste the whole thing in.
It rewards a clear role and a clear deliverable. "You are X. The output is Y in format Z." Two sentences of setup beat two paragraphs of vague framing.
Extended thinking is always-on at the Opus tier. You do not need to say "think step by step." You can say "before answering, identify the three weakest links in the argument" and it will actually do that.
The pattern under almost every prompt in this list is the same: specific role + specific input + specific deliverable + constraints that force the model to do real work instead of plausible-sounding work. Once you see it you will start writing your own.
How to Use This List
Find the category that matches your task.
Pick the closest prompt. Replace the {{bracketed}} placeholders with your actual inputs.
Paste any relevant context (full files, full docs, real data) before the prompt, not after. Opus 4.7 weights early context heavily.
If the output is not what you wanted, the issue is almost always the constraint section. Tighten it and re-run.
Pro tip: For repetitive prompts, save them as Claude Projects with a system prompt. The system-prompt slot gives the model standing instructions that do not eat into your message context.
Category 1 — Coding & Engineering (Prompts 1–10)
Opus 4.7 leads SWE-bench Verified at 82.1%. These ten are the prompts that turn that benchmark number into real engineering output.
Prompt 1 — Senior Engineer Code Review
Ready to use
You are a senior staff engineer reviewing a pull request. I have pasted the full diff below. Review it the way you would in real life: identify the top three risks ordered by severity, the single architectural concern most likely to bite us in six months, and any change that should have been split into a separate PR. Do not be polite. Be specific about file names and line numbers. If the diff is fine, say so in one sentence and stop.
I have pasted the contents of {{N}} files from our codebase above. Produce a refactor plan that reduces duplication, improves testability, and respects the existing patterns. Output as a numbered list of concrete steps. For each step: which files change, what risk it carries, and an estimate in engineer-hours. Do not invent abstractions that are not justified by at least three callsites.
Bug reproduction script. Given the stack trace and error message I have pasted, write a minimal reproduction script in {{language}}. The script must fail in exactly the way the production error describes. Add inline comments explaining what each block proves about the bug.
Migration safety check. I have pasted a database migration. Tell me: what locks does this take, what happens to a row mid-write during the migration, and what is the rollback plan if it fails halfway. Be concrete about Postgres / MySQL behaviour, not generic.
API contract designer. Design a REST API for {{capability}}. Output the full OpenAPI 3 spec. Include error responses, pagination, rate limits, and idempotency keys where appropriate. Justify each design choice in a comment.
Test gap analyser. Given this source file and its test file, list the behaviours that are not tested. Rank by how likely they are to cause a regression. Suggest the three highest-value test cases to add.
Performance triage. I have pasted a flame graph and the relevant code. Identify the top three optimisations by expected impact. For each: the specific change, the expected speedup, and the risk of introducing a bug. Skip changes that save less than 5% wall time.
Architecture decision record. Given the context I just pasted, write an ADR comparing {{option A}}, {{option B}}, and {{option C}} for {{decision}}. Include the trade-offs, the recommendation, and the conditions under which we should revisit.
Library evaluator. Should we adopt {{library}}? Read the readme, the open issues from the last 90 days, and the closed PRs I have pasted. Output: maintenance health (1-10), API stability, lock-in risk, and a final yes/no with two reasons.
Commit message rewriter. Here is my git diff and my draft commit message. Rewrite the message to follow Conventional Commits, explain the why not the what, and call out any breaking changes. Keep it under 72 characters for the subject line.
This is where Opus 4.7 separates from every other model. Paste in entire codebases, entire PDFs, entire research corpora — then ask it to do work that no model with a 200k window can do.
Prompt 11 — Whole-Codebase Audit
Ready to use
I have pasted approximately {{N}} files from our production codebase above, totalling around {{X}}k lines. Audit it for three things: (1) the modules with the highest change frequency that also have the lowest test coverage, (2) any dead code paths you can prove are unreachable, and (3) any security pattern that appears more than twice and is implemented inconsistently. Cite file paths and line ranges. Do not pad with generic advice.
I have pasted the abstracts and conclusions of {{N}} papers on {{topic}}, spanning {{year range}}. Produce a synthesis with: the three claims that appear in five or more papers, the two areas where the field actively disagrees, the methods that have become dominant, and the open questions that recent work explicitly flags. Cite paper titles inline. Mark any claim you make that is not directly supported by the corpus.
Contract redline. Compare these two versions of a contract I have pasted. List every substantive change. Group changes by risk category. Flag anything that shifts liability or extends the term.
Meeting recap from raw transcript. Here is a 45-minute Zoom transcript. Produce: a 5-bullet executive summary, a numbered list of decisions made, an owner-tagged action item list, and any open question that was raised but not resolved.
Multi-document Q&A. I have pasted 6 documents above. Answer the following question using only information from those documents: {{question}}. For each claim in your answer, cite which document(s) support it. If no document supports an answer, say so and stop.
Earnings call analyser. Here is the full transcript of {{company}}'s most recent earnings call. Extract: the three forward-looking statements management made, the two questions analysts pressed hardest on, any change in tone from the previous quarter's call, and any metric that was disclosed for the first time.
Patent landscape map. Given the patent abstracts I have pasted, identify the dominant filers, the technology clusters, and the white space where filings are notably absent. Output as a structured taxonomy.
Codebase onboarding doc. Read this entire repository I have pasted. Produce a CLAUDE.md / README.md style onboarding doc for a new senior engineer joining tomorrow. Cover: how the code is structured, where the load-bearing complexity lives, conventions to respect, and the three files a new engineer should read first.
Long-document diff narrator. Here are two versions of a strategy doc. Write a one-page changelog that an executive can skim in 60 seconds, explaining what shifted and why it matters.
Customer feedback themer. I have pasted 200+ rows of customer feedback. Cluster them into themes. For each theme: count, representative quotes, severity, and a recommended product action. Do not invent themes that are supported by fewer than 5 entries.
Category 3 — Writing & Content (Prompts 21–30)
Opus 4.7 writes in a way that reads less like a model than any other frontier system. These are the prompts that make that strength usable.
Prompt 21 — The Lokesh Voice Match
Ready to use
Read the three blog posts I have pasted above. They are written by the same author. Identify the voice — sentence rhythm, vocabulary choices, openings, signposts, what they avoid. Then write a {{N}}-word blog post on {{topic}} in that voice. Match the cadence, not just the word choice. Open with the conclusion, then justify it.
Write a first draft on {{topic}}. Constraints: opening sentence must be under 12 words and must commit to a position. No filler phrases ('in today's world', 'it is important to note', 'let us explore'). Every paragraph must add a specific fact, number, or example. End when the argument is made — no manufactured conclusion.
Long-form to thread. Convert this long-form article into a 12-tweet thread. Each tweet under 270 characters. Open with the strongest hook. The thread must stand alone — no "read the full piece" until tweet 12.
Sales page from product notes. Here are my product notes. Write a sales page in the voice of {{brand reference}}. Sections: headline, sub-headline, three problem statements, three benefit blocks (with proof), pricing, FAQ, final CTA.
Cold email writer. Write a 90-word cold email to {{persona}} about {{offer}}. The opening line must reference something specific about their company. No "I hope this finds you well." End with a single yes/no question.
Headline test generator. Generate 20 headline variations for an article on {{topic}}. Categorise them into curiosity-led, benefit-led, and contrarian. Mark the top three by predicted CTR and explain the reasoning in one line each.
Ghostwriter for technical founders. I have pasted three Slack messages from {{founder name}}. Turn them into a publishable 600-word LinkedIn post that sounds like them. Keep their phrases, hesitations, and idioms. Do not smooth them out.
Newsletter remixer. Take this raw idea dump and turn it into a 400-word newsletter section. Voice: confident, specific, no corporate filler. Include one personal anecdote, one specific number, and one cross-link.
Press release. Write a press release for {{announcement}} in the AP-news style. Include a strong lead, two stakeholder quotes (you can draft them, mark with [DRAFT]), a boilerplate section, and a contact block.
Subject line A/B set. Generate 15 subject line variants for an email about {{offer}}. Five each: curiosity, urgency, value-stated. All under 60 characters. Rank the top three you would actually send.
Category 4 — Research & Analysis (Prompts 31–40)
Prompt 31 — Strongest Argument Both Sides
Ready to use
The question I am working through is: {{question}}. Steelman the strongest possible argument on each side, in roughly 250 words per side. Then identify the single piece of evidence that would most change your confidence in either direction. Finally, state your own current best guess and rate your confidence 1-10.
Produce a competitive landscape brief for {{product category}}. Required sections: market size and growth, top 5 incumbents with their distinct positioning, the two underrated emerging players, the regulatory or technical force most likely to reshape the category in 18 months, and the three places where a new entrant has a defensible wedge. Cite sources where you have them; mark inferences as inference.
Devil's advocate. Here is my plan. Argue against it as the smartest sceptic in the room. What are the three strongest objections? What is the single fact that, if true, would kill the plan?
Pre-mortem. Assume this initiative failed badly 12 months from now. Write a post-mortem from that future state explaining what went wrong, in priority order. Be specific about the failure mode, not generic.
Market sizing. Estimate the total addressable market for {{product}} in {{geography}}. Use top-down and bottom-up methods. Show every assumption explicitly. End with a confidence band, not a single point estimate.
Customer persona from data. Here are 30 customer transcripts. Build three distinct personas. For each: demographics, jobs-to-be-done, the moments they reach for our product, and the moments they hire a competitor.
SWOT but useful. Standard SWOT analyses are filler. Produce one for {{company}} where every entry is non-obvious. If you cannot find a non-obvious entry for a quadrant, leave it empty rather than padding.
5-Whys root cause. Here is a problem statement: {{problem}}. Run the 5-Whys technique. After the fifth why, name the underlying systemic issue and propose the single highest-leverage intervention.
Trend extraction. Given the news headlines I have pasted from the last 90 days, identify three trends that are visible across multiple stories but not yet named in mainstream coverage.
Pricing teardown. Compare the pricing pages of {{competitor 1}}, {{2}}, {{3}}. Identify the anchor price, the loss-leader tier, the actual margin tier, and the lock-in mechanism. Recommend the one change to our own pricing that would have the highest impact.
Category 5 — Agents & Automation (Prompts 41–50)
Opus 4.7 is the strongest agent model in the field. These prompts are how we get the most out of it inside Claude Code, computer-use, and tool-using setups.
Prompt 41 — Multi-Step Agent Planner
Ready to use
You are about to execute a long-running task: {{task}}. Before any tool use: produce a numbered execution plan, identify the three places the plan is most likely to fail, decide what 'done' looks like, and define a checkpoint after every third step where you will summarise progress and re-evaluate. Then begin executing.
You have access to the following tools: {{tool list}}. For every tool call: (1) state in one sentence why this tool, this argument, this moment, (2) predict the expected result shape, (3) make the call, (4) if the result differs from your prediction by more than trivially, stop and re-plan rather than continuing. Confirm with me before any action that is destructive or visible to other people.
Computer-use safety wrapper. When using computer-use, before any click that submits a form, makes a payment, or sends a message: pause, screenshot, describe what is about to happen in one sentence, and ask me to confirm with the word "go" before proceeding.
Sub-agent delegator. Decompose this task into parallel sub-tasks. For each sub-task: a clear goal, the inputs it needs, the output format expected. Spawn sub-agents and merge their results into a single final answer.
Self-critic loop. After every major output, write a one-paragraph critique of your own work pointing out the weakest claim, the missing perspective, and the assumption that is doing the most load-bearing work. Then either revise or stand by it.
API integration scaffolder. I am integrating with {{API name}}. Read its documentation that I have pasted. Generate: a typed client in {{language}}, request and response schemas, retry/backoff logic for the three most common failure modes, and a smoke test that proves the integration works end-to-end.
Cron job designer. Design a cron / scheduled job for {{task}}. Include: schedule expression, idempotency strategy, alerting on failure, the metric I should watch to know it is working, and the rollback procedure.
Webhook handler skeleton. Write a webhook handler for {{provider}} that verifies the signature, validates the payload, deduplicates by event ID, and processes the event asynchronously via a queue. Include the failure-replay path.
Data pipeline builder. Design a pipeline that ingests {{source}}, transforms it via {{rules}}, and lands it in {{destination}}. Cover schema evolution, late-arriving data, and the monitoring needed to know it is working.
Multi-agent debate. Simulate three agents debating {{decision}}: a sceptic, an optimist, and a domain expert. Each gets two rounds of arguments. At the end, synthesise their disagreement into a single recommendation.
Category 6 — Data & Spreadsheets (Prompts 51–60)
Prompt 51 — CSV Analyst
Ready to use
I have pasted a CSV of {{N}} rows above. Produce: a one-paragraph summary of what the data represents, the five most interesting patterns (anomalies, outliers, correlations), and the three questions this dataset is positioned to answer that I probably have not asked yet. Output any numerical claim with the specific row count it is based on.
SQL from natural language. Given the schema I have pasted, write the SQL for: {{question in plain English}}. Use the dialect for {{Postgres / BigQuery / Snowflake}}. Explain in one line what the query does. If the schema does not support the question, say so.
Query optimiser. Here is a slow SQL query and its EXPLAIN output. Identify why it is slow, propose three rewrites in priority order, and predict the expected speedup for each.
Excel formula factory. Translate this plain-English calculation into an Excel / Google Sheets formula: {{description}}. Provide the formula, an example with sample inputs, and a fallback for the most likely #ERROR case.
Dashboard designer. Given the metrics I have pasted, design a single dashboard for {{audience}}. Include: the four headline KPIs, the two diagnostic charts, the one drill-down view. Name each chart and specify the chart type.
Schema designer. Design a relational schema for {{domain}}. Include tables, columns, types, primary and foreign keys, indexes, and any required denormalisation with the justification.
Data cleaning plan. Here is the first 200 rows of a messy CSV. List the cleaning operations needed in execution order: column normalisation, type coercion, missing-value strategy, outlier handling, and duplicate detection.
A/B test reader. Here are the results of an experiment. Tell me: is the result statistically significant, what is the effect size in business terms, what would I need to see to launch, and the single confound most likely to be polluting the result.
Pivot summariser. I have pasted a complex pivot table. Explain it in three bullets a non-analyst can understand. Then list the two follow-up cuts I should ask the analyst for.
Metric definition. Define {{metric name}} precisely: numerator, denominator, time window, edge cases (zero denominators, late events, retroactive corrections), and the two ways teams typically game it.
Category 7 — Strategy & Business (Prompts 61–70)
Prompt 61 — Go-to-Market Strategist
Ready to use
Build a go-to-market plan for {{product}}. Required sections: ideal customer profile (with exclusions), wedge (the one job-to-be-done we win first), pricing positioning, the three distribution channels in priority order, the leading indicator we will watch for week one, and the metric that tells us to pivot. Be specific about audience segments — no 'everyone'.
I am deciding between {{option A}} and {{option B}} for {{situation}}. Run a structured decision: list the criteria that matter, weight them, score each option, and produce the recommendation. Then state the single fact that, if it turned out differently, would flip the recommendation.
OKR drafter. Draft Q3 OKRs for a {{team}} of {{size}} working on {{focus}}. Three objectives. Each with 3 key results. Each KR must be measurable, time-bound, and aggressive but plausible.
Pitch deck outliner. Outline a 12-slide investor pitch deck for {{company}}. For each slide: the headline, the supporting point, and the visual element. Pitch in the YC style — no fluff slides.
Build-vs-buy. Should we build or buy {{capability}}? Run the analysis. Cover: cost over 24 months, time-to-value, strategic differentiation, switching cost if we change our mind, and the team's capacity to maintain it.
Hiring scorecard. Build a scorecard for hiring a {{role}}. Cover: mission (one line), 4-6 outcomes, the competencies that matter, and the dealbreaker behaviours. No corporate filler.
Compensation benchmark. Given the role description I just pasted, estimate the compensation band (base, variable, equity) in {{geography}} for {{seniority}}. Show your sources or mark as estimate.
Quarterly review. Here are our results vs OKRs for last quarter. Produce: what worked, what did not, what we learned, what carries into next quarter, and the single change we should make to how we plan.
Stakeholder map. For the change I am proposing, list every stakeholder. For each: their interest, their power, whether they are an advocate / neutral / blocker, and the single message that moves them.
Risk register. List the top 10 risks to {{initiative}}. For each: likelihood (1-5), impact (1-5), the early-warning signal, and the mitigation we should put in place now.
Category 8 — Learning & Teaching (Prompts 71–80)
Prompt 71 — The Feynman Tutor
Ready to use
I want to learn {{topic}}. Teach it to me using the Feynman technique. Start with the simplest possible explanation. Stop after each idea and ask me a question that tests whether I actually got it, not whether I memorised the words. If I get it wrong, adjust the explanation, do not just rephrase the question.
Socratic challenger. I believe {{claim}}. Ask me four progressively harder questions designed to find the weakest part of my reasoning. Do not give me the answers. After my responses, tell me which assumption I should reconsider.
Spaced repetition deck. Generate 25 flashcards for {{topic}}. Format: question on one line, answer on the next. Avoid one-fact-per-card padding — bundle related facts that are usefully recalled together.
Pre-reading brief. I am about to read {{book / paper}}. In 300 words: the central thesis, the three arguments supporting it, the strongest critique, and the one chapter I should not skip.
Concept analogy generator. Explain {{technical concept}} using three different analogies aimed at three different audiences: a 10-year-old, a smart non-technical executive, and a domain expert in an adjacent field.
Exam designer. Build a 20-question exam on {{topic}} for someone preparing for {{certification / interview}}. Mix multiple choice, short answer, and one applied scenario. Include answers and the rationale for each.
Learning path designer. I have {{X hours / week}} for the next {{N weeks}} to learn {{topic}}. Build a weekly path with resources, exercises, and a checkpoint at the end of each week.
Code-along walkthrough. Teach me {{technical skill}} by building {{small project}} together. One step at a time. After each step, ask me to write the next bit before showing yours.
Misconception finder. What are the five most common misconceptions about {{topic}}? For each: why it is intuitive, why it is wrong, and the simplest experiment or example that demonstrates the truth.
Concept map. Build a hierarchical concept map for {{topic}}: the root idea, the major branches, the supporting concepts, and the connections between branches. Use indented bullets.
Category 9 — Creative & Ideation (Prompts 81–90)
Prompt 81 — 20 Ideas, Including the Bad Ones
Ready to use
Generate 20 ideas for {{prompt}}. Constraint: at least three must be deliberately bad, at least three must be obvious, at least three must be too expensive to ship, and at least three must be ideas a competitor would consider unfair. Mix them in. Do not label which is which. The mix forces the model to think wider.
Generate 30 candidate names for {{product description}}. Mix five distinct flavours: 5 evocative compound words, 5 made-up coinages, 5 short Latin/Greek roots, 5 unexpected adjectives, 5 verbs as nouns, 5 cultural references that age well. For each, a one-line tagline. Skip names where the .com is obviously taken.
Tagline writer. Write 15 taglines for {{brand}}. Mix benefit-focused, identity-focused, and contrarian. Top three: explain why each works in one sentence.
Story spine. Draft a story for {{topic}} using the structure: once upon a time, every day, until one day, because of that (x3), until finally, and ever since then.
Counterfactual world. Describe a world in which {{premise}} is true. Be specific about how everyday life, business, and politics shift. End with the one industry that would be created and the one that would die.
Constraint-driven brief. Design a {{thing}} with these constraints: must be {{X}}, must not be {{Y}}, must work for {{audience}}, budget under {{Z}}. The constraints are non-negotiable. If they conflict, name the conflict and propose the trade-off.
Mood board in words. Describe the visual mood for {{project}} in 200 words. Colours, typography, textures, motion, the cultural references it borrows from. Specific enough that a designer could move directly to making.
Reverse brief. Here is a finished piece of creative work. Reverse-engineer the brief that produced it: target audience, brand objective, key insight, the constraints, and the success metric.
Naming for an internal project. Give me 12 internal codenames for a project about {{topic}}. Theme: {{e.g. mythology, jazz, cities}}. None should leak the actual purpose.
Slogan stress test. Here is a draft slogan. Try to break it: when is it false, when is it ironic, when does it age badly, when does a competitor own it better. Score 1-10 and recommend keep / revise / kill.
Category 10 — Productivity & Meta (Prompts 91–100)
Prompt 91 — The Honest Daily Plan
Ready to use
Here is my todo list for today. Re-order it for actual impact, not feeling. Identify the one thing whose completion makes the rest of the day easier. Mark anything that is busywork. Suggest the one task on the list that I should delete entirely. Keep the output under 200 words.
I have pasted my inbox above. Classify each thread into: respond now (under 5 min), respond today (drafted reply needed), delegate (with the person to send it to), archive, or unsubscribe. For the 'respond now' items, draft the reply in my voice (terse, no filler, action-oriented).
Meeting prep brief. I have a meeting with {{person/team}} in {{N}} hours about {{topic}}. Write me a one-page brief: their likely position, my objective, the three questions I should ask, the two things I should not say, and the single decision I want them to make.
Saying no template. Draft a polite but firm reply declining {{request}}. Tone: warm, brief, leaves the door open for a different ask. Under 80 words.
Status update writer. Turn my raw notes from this week into a status update for my manager. Format: what shipped, what is on track, what is blocked, what I need from you. Each section three bullets max.
Idea capture. I just dumped a stream-of-consciousness about an idea. Extract the actual idea in two sentences. Then list the three smallest experiments I could run to test it this week.
Weekly review. Here is my calendar and todo list from last week. Tell me: where did my time actually go, which commitments did I keep, which did I quietly drop, and what would my future self thank me for changing next week.
Reading list curator. Based on the topics I have been working on recently, recommend 7 things to read this week. Mix one classic, two recent papers, two practitioner essays, and two contrarian takes. One-line summary each.
Note synthesiser. Here are my notes from the last 30 days in {{tool}}. Identify the three themes I am actually thinking about, the question I keep returning to, and the project I should commit to next.
The pre-mortem on me. Here is my plan for the next quarter. Argue why my future self will look back at this plan and regret it. Be specific. Suggest the one change that prevents the regret.
How to Combine These — The Power-User Pipeline
The biggest unlock is not running a single prompt — it is chaining them. A pipeline we run weekly:
Research stage: Prompt 32 (competitive landscape) → Prompt 38 (trend extraction) → Prompt 31 (steelman both sides).
Output stage: Prompt 21 (voice match) → Prompt 22 (honest first draft) → Prompt 26 (headline test generator).
Pipelines compound. A single prompt is a tool. Four prompts in sequence is a workflow. Twenty prompts orchestrated through Claude Code or Genspark is what an analyst, a strategist, or a junior engineer used to do in a week.
Steal These Patterns — The Meta-Rules
If you read the 100 prompts above carefully you will notice they share a small number of moves. These are the moves:
Role + deliverable + format + constraint. Every prompt has all four. Drop one and the output gets vague.
Forced opinion. "Be specific." "Do not pad." "If you cannot, say so and stop." These instructions block the model from defaulting to wishy-washy comprehensiveness.
Counter-incentives against confident wrongness. "Mark any claim that is not directly supported by the corpus." "Mark inferences as inference." This is how you stop hallucination on long-context analysis.
Reverse questions. "What would need to be true for this to be wrong?" forces the model to do work it would skip with a default phrasing.
Concrete over generic. "Cite file paths and line ranges" beats "be specific."
One question at a time. Compound prompts get compound answers. If you want a sharp answer, ask a sharp question.
Pro tip: If a prompt is not working, the fastest fix is almost never "rephrase the question." It is "add a constraint that makes the lazy answer impossible."
Where to Run These
You can run any of these in Claude.ai, the Anthropic API, or Claude Code. The right surface depends on the job:
Claude.ai (web app). For one-off prompts, long-document analysis, writing. Save the most-used ones as Projects with a system prompt.
Claude Code. For anything in Category 1 (Coding & Engineering) and Category 5 (Agents). The autonomous loop on top of these prompts is where Opus 4.7 actually shines.
Anthropic API. If you are wiring these into a product. Use the system prompt for the standing instructions and reserve the user message for the variable input.
Aggregators like Genspark. Useful when you want to A/B Opus 4.7 against Gemini 3.5 Flash or GPT-5.5 High on the same prompt — we cover the model-vs-model trade-offs in our latest model comparison.
The Verdict
The honest take after six months of running Opus 4.7 as our senior model: the gap between people who get great work out of these models and people who get mediocre work is almost entirely down to the prompt. The model is the same. The prompt is the lever.
The 100 above are not magic. They are the result of one specific habit: when a default prompt gave us a default answer, we asked what constraint would have forced a better one — then wrote that constraint into the prompt and saved it. Do that for 30 days and you will have your own list of 100. This one is just a head start.
Prompt Library — the full searchable collection, organised by tool and use case.
All AI Models — current capabilities, pricing, and best-fit guidance for every major model.
❓
Frequently Asked Questions
10 questions answered
Most work on Sonnet 4.6 too — the structure is what matters. The ones that lean heavily on Opus-specific strengths (very long context, multi-hour autonomous coding, deep multi-step reasoning) will degrade noticeably on the smaller model. Prompts in Category 2 (long-context) and Category 5 (agents) are the most Opus-dependent.
Yes, and they are particularly strong there. Claude Code adds tool use, file editing, and shell access on top of the base model, which makes the prompts in Categories 1 (Coding) and 5 (Agents) execute end-to-end rather than just produce text. Drop the prompts into the CLI or into a CLAUDE.md as standing instructions.
The system prompt is the standing instruction the model carries across every message in a conversation. The user prompt is the per-message ask. Most of the prompts above are designed as user prompts. For repeated use, lift the role and constraint sections into the system prompt and leave only the variable input in the user message — you save tokens and get more consistent behaviour.
Yes — Claude Projects is the cleanest way to operationalise these. Drop the relevant docs and reference materials into the project knowledge, save the prompt as a custom instruction, and you have a reusable workspace that is one click away. We have a separate Project per category for the prompts we run weekly.
Because Opus 4.7, like every frontier model, will sometimes generate plausible-sounding claims that are not supported by the input. Asking it explicitly to label inferences versus directly-supported claims is the single most reliable way to reduce hallucination on long-context analysis. The model is good at distinguishing the two when you ask it to.
Replace the placeholders, but also rewrite the constraint section to reflect what bad output looks like in your domain. For example, a legal prompt should add 'do not give legal advice; surface the questions that should go to counsel.' A medical prompt should add 'flag any claim that is not in current clinical guidelines.' The constraints carry the domain knowledge.
Yes. The Power-User Pipeline section above shows how. Each prompt in the chain takes the output of the previous one as input. Use Claude Code, the Anthropic API with tool use, or an aggregator like Genspark to orchestrate. The key is that each prompt should produce structured output the next prompt can ingest — JSON or numbered lists work best.
Prompt 45, the self-critic loop. It is one extra sentence: 'After every major output, critique your own work and point out the weakest claim.' That sentence catches ~80% of the errors that would have shipped otherwise. Add it to every workflow.
That is the point. Frontier models do not need long prompts — they need precise prompts. Most of these are under 80 words. The longer you make the prompt, the more the model has to interpret, and interpretation introduces variance. Shorter and more specific almost always beats longer and more verbose.
The full prompt library is at /prompts — battle-tested prompts across image generation, video, ad copy, research, and coding, organised by tool and use case. We also publish new prompt collections every week on the blog.