AGENCYSCRIPT
CoursesEnterpriseBlog
đź‘‘FoundersSign inJoin Waitlist
AGENCYSCRIPT

Governed Certification Framework

The operating system for AI-enabled agency building. Certify judgment under constraint. Standards over scale. Governance over shortcuts.

Stay informed

Governance updates, certification insights, and industry standards.

Products

  • Platform
  • Certification
  • Launch Program
  • Vault
  • The Book

Certification

  • Foundation (AS-F)
  • Operator (AS-O)
  • Architect (AS-A)
  • Principal (AS-P)

Resources

  • Blog
  • Verify Credential
  • Enterprise
  • Partners
  • Pricing

Company

  • About
  • Contact
  • Careers
  • Press
© 2026 Agency Script, Inc.·
Privacy PolicyTerms of ServiceCertification AgreementSecurity

Standards over scale. Judgment over volume. Governance over shortcuts.

On This Page

Stage 1: DefineStage 2: RepresentStage 3: InstrumentStage 4: VerifyStage 5: ElectWhen to Apply Each StageHow the Stages Reinforce Each OtherA Quick Self-Check Per StageFrequently Asked QuestionsHow is DRIVE different from just following a checklist?Can I skip stages for a quick evaluation?Where do most evaluations go wrong in the DRIVE stages?Does DRIVE work for non-text tasks like image prompts?Key Takeaways
Home/Blog/The DRIVE Model for Deciding Whether a Prompt Is Ready
General

The DRIVE Model for Deciding Whether a Prompt Is Ready

A

Agency Script Editorial

Editorial Team

·July 11, 2023·6 min read
evaluating prompt qualityevaluating prompt quality frameworkevaluating prompt quality guideprompt engineering

Ad hoc prompt evaluation works until it does not. The moment more than one person touches a prompt, or the same person evaluates many prompts, the lack of a shared structure produces inconsistent judgments and forgotten steps. A named framework solves this by giving everyone the same stages to move through, the same vocabulary, and a clear answer to the question of what comes next.

This guide introduces DRIVE: a five-stage model for evaluating prompt quality. The stages are Define, Represent, Instrument, Verify, and Elect. They run in order, each producing an output the next consumes, and together they take you from a fuzzy sense that a prompt might be good to a documented, defensible decision about whether it ships.

DRIVE is deliberately lightweight. It is not a heavyweight process to slow you down; it is a checklist of thinking that scales from a ten-minute evaluation of an internal prompt to a rigorous vetting of a customer-facing one. The stages stay the same; only the depth changes.

Stage 1: Define

Everything starts with a precise definition of what the prompt is supposed to do and what a good output looks like. This stage produces your success criteria.

Write criteria that are specific and testable — something a stranger could score without consulting you. Name the dimensions that matter for this task, whether accuracy, format adherence, tone, or safety, and identify the single most dangerous failure mode up front so it stays in view. Skipping this stage is the root cause of most worthless evaluations, because without a definition every output looks acceptable.

For why criteria-first discipline matters, see Evaluating Prompt Quality: Best Practices That Actually Work.

Stage 2: Represent

The second stage builds a test set that represents the real distribution the prompt will face. The output is a curated collection of inputs.

A good representation includes common cases, edge cases, and adversarial cases in roughly the proportions you expect in production. Sample from real data where possible. Crucially, split the set into a tuning portion you may iterate against and a held-out portion you reserve for final measurement. This stage is where you decide whether your evaluation will describe reality or a convenient fiction.

Stage 3: Instrument

With criteria and a test set in hand, you choose how each criterion will be scored. The output is a scoring plan.

Match each criterion to the cheapest valid method:

  • Programmatic checks for structured requirements like valid JSON or value ranges.
  • Reference comparison for criteria with known correct answers.
  • Rubric-based human or model judgment for subjective qualities like tone.

Instrumenting before you generate outputs keeps scoring consistent across dozens of cases and prevents you from inventing standards on the fly.

Stage 4: Verify

Now you run the prompt against the test set, score it, and probe its robustness. The output is evidence: a pass rate, a failure analysis, and a consistency measurement.

Run important inputs multiple times to capture variance, because a single pass hides intermittent failure. Group failures by cause so the pattern points at the fix, then iterate one targeted change at a time, re-running the full set after each to catch regressions. Verify is the stage where the prompt's true behavior finally becomes visible.

For the mechanics of this stage in detail, see A Step-by-Step Approach to Evaluating Prompt Quality.

Stage 5: Elect

The final stage turns evidence into a decision. The output is a documented choice: ship, keep iterating, or escalate.

Weigh quality against cost, latency, and failure rate, and compare the result against the quality floor you set during Define. Document the test set, the final pass rate, and the reasoning so the decision is reproducible. Electing is what separates an evaluation that informs action from one that merely produces a number.

When to Apply Each Stage

DRIVE scales by depth, not by skipping stages. For a low-stakes internal prompt, Define might be two sentences and Represent might be ten inputs. For a customer-facing prompt, Define becomes a detailed rubric, Represent grows to hundreds of sampled inputs, and Verify includes adversarial probing and variance analysis. The discipline is to always pass through all five stages, even quickly, because each one defends against a distinct way evaluations mislead you.

To see the framework's failure modes named directly, read 7 Common Mistakes with Evaluating Prompt Quality.

How the Stages Reinforce Each Other

DRIVE is more than five steps in a row; the stages depend on one another in ways that make the order matter. The criteria from Define determine what your Represent stage must cover, because a test set that does not stress your most important criterion is not representative no matter how many inputs it holds. The scoring plan from Instrument is only valid against the criteria Define produced. The evidence from Verify is only meaningful if Represent built an honest test set. And the decision in Elect is only defensible if every prior stage was sound.

This dependency is why a weak early stage poisons everything downstream. A vague Define produces criteria too fuzzy to instrument, which produces scores too soft to verify, which produces a decision built on sand. Conversely, investing in the first two stages pays off through the rest of the framework, which is why experienced practitioners spend a disproportionate share of their time there.

A Quick Self-Check Per Stage

Before moving from one stage to the next, ask a single question:

  • Define: Could a stranger score an output using only what I wrote?
  • Represent: Does this test set stress my most dangerous failure mode?
  • Instrument: Is each criterion scored by the cheapest method that actually measures it?
  • Verify: Have I run important inputs enough times to see their variance?
  • Elect: Can the next person reproduce my decision from what I documented?

If the answer is no, you are not ready to advance, and pushing forward only defers the problem to a stage where it is more expensive to fix.

Frequently Asked Questions

How is DRIVE different from just following a checklist?

A checklist verifies discrete items; DRIVE organizes the entire evaluation into ordered stages where each produces an input for the next. The framework gives you a shared mental model and vocabulary, which matters most when multiple people evaluate prompts or one person evaluates many. The two complement each other — use the framework to structure the work and a checklist to verify each stage.

Can I skip stages for a quick evaluation?

Skip depth, not stages. Each of the five stages defends against a specific failure: Define against vague criteria, Represent against unrepresentative tests, Instrument against inconsistent scoring, Verify against hidden variance, and Elect against undocumented decisions. For a quick pass you can do each in minutes, but omitting one reintroduces the exact problem it exists to prevent.

Where do most evaluations go wrong in the DRIVE stages?

Most failures trace to a weak Define or Represent stage. Vague success criteria make every score meaningless, and an unrepresentative test set produces confident numbers that do not hold in production. Getting those two stages right resolves the majority of evaluation problems, which is why the framework front-loads them.

Does DRIVE work for non-text tasks like image prompts?

The stages generalize because they describe a way of thinking, not a text-specific procedure. You still define success, represent the input distribution, instrument scoring, verify behavior across runs, and elect a decision. The scoring methods in the Instrument stage change for images, but the structure of moving from definition to documented decision stays the same.

Key Takeaways

  • DRIVE structures prompt evaluation into five ordered stages: Define, Represent, Instrument, Verify, Elect.
  • Define produces testable success criteria and names the most dangerous failure mode.
  • Represent builds a realistic test set split into tuning and held-out portions.
  • Instrument assigns the cheapest valid scoring method to each criterion before generating outputs.
  • Verify produces a pass rate, failure analysis, and variance measurement through iterative testing.
  • Elect weighs quality against cost and latency and documents a reproducible decision; scale depth, never skip stages.

Search Articles

Categories

OperationsSalesDeliveryGovernance

Popular Tags

prompt engineeringai fundamentalsai toolsthe difference between AIMLagency operationsagency growthenterprise sales

Share Article

A

Agency Script Editorial

Editorial Team

The Agency Script editorial team delivers operational insights on AI delivery, certification, and governance for modern agency operators.

Related Articles

General

Prompt Quality Decides Whether AI Earns Its Keep

Prompt quality is the single biggest variable in whether AI delivers real work or expensive noise. The model matters, the platform matters — but the prompt you write determines whether you get a first

A
Agency Script Editorial
June 1, 2026·10 min read
General

Counting the Real Cost of Every Token You Send

Tokens and context windows sit at the intersection of AI capability and operational cost—yet most business cases treat them as technical footnotes. That's a mistake that costs real money. Every time y

A
Agency Script Editorial
June 1, 2026·10 min read
General

Rolling Out AI Hallucinations Across a Team

Most teams discover AI hallucinations the hard way — a confident-sounding wrong answer makes it into a client deliverable, a legal brief, or a published report. The damage isn't just to the output; it

A
Agency Script Editorial
June 1, 2026·11 min read

Ready to certify your AI capability?

Join the professionals building governed, repeatable AI delivery systems.

Explore Certification