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

Example 1: Customer Support ReplyThe TemplateWhy It WorksExample 2: Meeting Transcript SummaryThe TemplateWhy It WorksExample 3: Content Brief GeneratorThe TemplateWhy It WorksExample 4: Data ClassificationThe TemplateWhy It WorksExample 5: Email Tone RewriteThe TemplateWhy It WorksExample 6: Comparative AnalysisThe TemplateWhy It WorksA Failure Worth StudyingWhy It BrokeThe FixWhat These Examples Have in CommonFrequently Asked QuestionsCan I copy these templates directly into my work?Why does almost every example include a fallback instruction?How do I adapt the support reply template for my industry?Should tone variables be free-text or fixed?How do I know which fallback rules my template needs?Key Takeaways
Home/Blog/Six Prompt Templates, Annotated and Dissected
General

Six Prompt Templates, Annotated and Dissected

A

Agency Script Editorial

Editorial Team

·June 5, 2024·7 min read
prompt templatesprompt templates examplesprompt templates guideprompt engineering

It is easy to talk about prompt templates in the abstract — variables, contracts, guardrails. It is harder, and more useful, to look at real ones and understand exactly why they work. This article walks through six concrete templates drawn from common business tasks. For each, you will see the template itself, the design decisions behind it, and what would break if those decisions were missing.

The goal is not to give you templates to copy verbatim — your tasks differ — but to show the reasoning patterns you can transfer. Notice how each example specifies the output, scopes its variables, and handles the case where the input is not what you hoped for. Those three moves recur in every reliable template regardless of domain.

Read these as case dissections. The interesting part is rarely the wording; it is the structure underneath.

Example 1: Customer Support Reply

A template for drafting first-draft replies to inbound support messages.

The Template

You are a support agent for a software company. Write a reply to the customer message below. Tone: warm and professional. Length: under 100 words. If the message contains a refund request, do not promise a refund — say the request has been escalated. Customer message: {{customer_message}}

Why It Works

The output contract is concrete (tone, word limit). The single variable is well-scoped — just the message. And the refund guardrail prevents the model from making a promise the business cannot keep, which is the kind of error that turns an AI helper into a liability. Remove that one line and the template becomes risky to run unattended.

Example 2: Meeting Transcript Summary

A template that turns a raw transcript into a structured summary.

The Template

Summarize the meeting transcript below into exactly these sections: - Decisions made (bulleted) - Action items with owners (bulleted) - Open questions (bulleted) If a section has no content, write "None." Only use information present in the transcript. Transcript: {{transcript}}

Why It Works

The required sections give consistent structure across every meeting. The "None" fallback handles the common case of a meeting with no decisions, preventing the model from fabricating them. The "only use information present" line is a hallucination guardrail. This pattern of fixed sections plus per-section fallbacks generalizes to almost any structured-extraction task. The method behind building it is in A Step-by-Step Approach to Prompt Templates.

Example 3: Content Brief Generator

A template marketers use to turn a topic into a writer-ready brief.

The Template

Create a content brief for an article on {{topic}} aimed at {{audience}}. Output: a target word count, one suggested angle, five H2 headings, and three questions the article must answer. The angle must not be a generic "complete guide" framing.

Why It Works

Two well-named variables (topic, audience) capture exactly what changes. The output contract enumerates deliverables precisely. The final constraint encodes an editorial standard directly into the template, so quality does not depend on the writer remembering it. Encoding standards into the template is a recurring theme in Prompt Templates: Best Practices That Actually Work.

Example 4: Data Classification

A template that labels free-text feedback into fixed categories.

The Template

Classify the feedback below into exactly one category: Bug, Feature Request, Praise, or Other. Respond with only the category name and nothing else. If the feedback fits more than one, choose the most prominent. Feedback: {{feedback_text}}

Why It Works

The fixed category list and "only the category name" instruction make the output machine-parseable — critical when the result feeds an automated pipeline. The tie-breaker rule ("most prominent") removes ambiguity that would otherwise produce inconsistent labels. Constrained outputs like this are what make templates safe to automate.

Example 5: Email Tone Rewrite

A template that adjusts the tone of a draft without changing its meaning.

The Template

Rewrite the email below to be more {{targettone}} while preserving all facts and requests. Do not add new information or remove any commitment already stated. Email: {{draftemail}}

Why It Works

The "preserve all facts" and "do not add or remove commitments" constraints protect the email's substance, which is the real risk in any rewrite task. The {{target_tone}} variable is borderline free-text; in practice teams replace it with named variants (formal, friendly, firm) to avoid inconsistent inputs — exactly the variable-scoping issue covered in 7 Common Mistakes with Prompt Templates (and How to Avoid Them).

Example 6: Comparative Analysis

A template for evaluating two options against fixed criteria.

The Template

Compare {{optiona}} and {{optionb}} across these criteria: cost, speed, and risk. Output a short paragraph per criterion, then a one-line recommendation. If you lack information for a criterion, state "Insufficient information" rather than guessing.

Why It Works

Fixed criteria make every comparison structurally identical and easy to scan. The "insufficient information" fallback is the guardrail against confident-sounding fabrication, which is the most dangerous failure in any analysis task. A full narrative of deploying templates like these is in Case Study: Prompt Templates in Practice.

A Failure Worth Studying

Examples that succeed are instructive, but a failure teaches faster. Consider a template a team built to "extract key points from a document and email them to the relevant stakeholder." It bundled three tasks — extraction, judgment about relevance, and drafting — into one call.

Why It Broke

The extraction was usually fine, but "the relevant stakeholder" required judgment the model had no basis for, so it guessed, and the email draft confidently addressed the wrong person. Worse, when extraction was good but stakeholder selection was wrong, the team could not tell which part had failed, because it was all one opaque output.

The Fix

They split it into three focused templates: one to extract key points, one to classify which stakeholder category applied (from a fixed list), and one to draft the email given a confirmed recipient. Each became independently testable, the stakeholder step gained a "if unclear, flag for human" fallback, and the wrong-recipient errors disappeared. The lesson — one objective per template, chained rather than bundled — is the core message of A Framework for Prompt Templates.

What These Examples Have in Common

Across six successes and one failure, the same three moves recur. Every reliable template names its exact output, scopes its variables to one clear thing each, and tells the model what to do when the input is empty, ambiguous, or missing. Notice that none of the examples depends on clever wording or a secret phrase. The reliability comes entirely from structure. When you build your own, resist the temptation to hunt for magic words and instead make sure those three structural moves are present. That is the transferable skill, and it holds whether you are drafting support replies or running structured extraction at scale.

Frequently Asked Questions

Can I copy these templates directly into my work?

You can use them as starting points, but adapt the specifics to your context — your categories, your tone standards, your word limits. The transferable part is the structure: explicit output contract, scoped variables, and a fallback for missing or ambiguous input. Copy the pattern, not just the text.

Why does almost every example include a fallback instruction?

Because real inputs are messier than test inputs. Without a fallback, the model improvises when it hits an empty section, an ambiguous case, or missing information — often by fabricating content. A one-line fallback turns that risk into predictable behavior.

How do I adapt the support reply template for my industry?

Change the role line to your domain, adjust tone and length to your brand standards, and replace the refund guardrail with whatever promise your business must not make automatically. The skeleton stays; the domain-specific guardrail is what you customize most.

Should tone variables be free-text or fixed?

Prefer fixed named variants. A free-text tone slot invites inconsistent inputs like "casual," "relaxed," and "chill" that the model interprets differently. Defining a small set of named tones makes output predictable and easier to test.

How do I know which fallback rules my template needs?

Look at your test set, especially the edge and adversarial cases. Each failure you see there points to a fallback you should add: empty input, off-topic input, missing data, or ambiguous classification. The fallbacks you need are exactly the failures your inputs actually produce.

Key Takeaways

  • Every reliable template specifies its output, scopes its variables, and handles imperfect input.
  • Per-section fallbacks like "None" prevent the model from fabricating content it cannot find.
  • Constrained outputs (fixed categories, "only the category name") make templates safe to automate.
  • Encode editorial and business standards directly into the template so quality does not rely on memory.
  • Prefer named tone and detail variants over free-text slots to keep behavior consistent.
  • The transferable lesson is structural, not verbal — copy the pattern, adapt the specifics.

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