Prompts and Agents

Python Programming AI Prompts

Explore 100 detailed, copy-ready prompts for designing, testing, operating, and improving Python software. The library supports learners and experienced practitioners with practical guidance for real engineering work.

How to use these prompts

Replace bracketed placeholders with your project facts, paste a complete prompt into your preferred AI assistant, and review all code, recommendations, and assumptions before applying them.

1. Foundations, Learning, and Debugging

1Python Learning Roadmap for a First Project

Use when: You are beginning Python and want a practical, confidence-building path toward a small working application.

Open copy-ready prompt
Act as a patient Python instructor designing a four-week learning plan for an adult who knows basic computer concepts but has not programmed before. The learner wants to build a command-line personal expense tracker using standard-library Python. Sequence the plan into weekly objectives, short lessons, exercises, and one progressively developed project milestone per week. Explain why each concept matters, especially variables, control flow, functions, collections, files, exceptions, and testing. Keep sessions under 45 minutes and include one deliberate mistake for the learner to diagnose. End with a rubric covering correctness, readability, and independent problem-solving. Before finalizing, check that every exercise supports the expense-tracker goal, prerequisites appear before dependent topics, and no external package or unsafe file operation is required.

Optional inputs: [available study time] [prior programming experience] [preferred project theme]

2Explain a Python Concept at Three Levels

Use when: A learner understands a Python feature superficially but needs an explanation that connects intuition to working code.

Open copy-ready prompt
Act as a Python mentor helping a developer understand list comprehensions without relying on memorized syntax. Explain the concept at three levels: a plain-language analogy, a desugared `for`-loop equivalent, and a production-minded example that filters and transforms a list of records. Include two carefully chosen examples, one common readability failure, and guidance on when a regular loop is clearer. Use only built-in Python features and ensure the examples are syntactically complete. Present the response with headings, annotated code blocks, and a short “try it yourself” exercise whose expected result is stated. Self-check that the explanation distinguishes filtering from transformation, avoids claiming performance benefits without measurement, and follows standard naming conventions.

Optional inputs: [Python version] [learner’s current explanation] [domain for the records]

3Debug a Failing Function with Evidence

Use when: A small Python function returns an unexpected result and you want a disciplined diagnosis rather than a guess.

Open copy-ready prompt
Act as a senior Python debugger reviewing a function that should return the first repeated item in a sequence but instead sometimes returns `None`. Analyze the supplied code, sample inputs, and observed outputs without rewriting everything immediately. Identify the minimal reproducible case, trace the relevant state changes, and separate confirmed facts from hypotheses. Then provide a minimal patch, an explanation of the defect, and focused regression tests covering an empty sequence, no duplicate, an adjacent duplicate, and a duplicate appearing later. Preserve the public function signature unless a change is essential. Do not execute commands, access files, or infer hidden requirements. Self-check every proposed test against the stated behavior and note any ambiguity that requires clarification.

Optional inputs: [function code] [sample inputs] [observed output] [expected behavior]

4Turn Tracebacks into a Beginner-Friendly Diagnosis

Use when: A novice has a traceback but cannot tell which line matters or what corrective action is safe.

Open copy-ready prompt
Act as a Python support engineer translating a provided traceback into an accurate, beginner-friendly incident note. Explain the exception type, the failing frame, the immediate cause, and the likely underlying mistake in plain language. Show the smallest safe code correction, then provide a preventive habit and one test that would catch the issue. If the traceback is incomplete or the evidence supports multiple causes, say so explicitly and list the smallest additional details needed. Avoid suggesting that the learner suppresses exceptions or exposes private data in logs. Structure the answer as: diagnosis, evidence, minimal fix, verification steps, and prevention. Self-check that each claim is grounded in the traceback and that the replacement code preserves the original intent rather than masking the error.

Optional inputs: [full traceback] [relevant code] [Python version] [expected behavior]

5Refactor a Beginner Script into Clear Functions

Use when: A working Python script has grown into one long block and needs a maintainable structure without changing behavior.

Open copy-ready prompt
Act as a Python code reviewer refactoring a small command-line script that reads a text file, counts non-empty lines, and prints a summary. Preserve its observable behavior while separating responsibilities into focused functions for input handling, counting, and presentation. Use type hints where they improve clarity, a `main()` entry point, and a guarded script entry. Explain each design choice briefly, identify any behavior that is intentionally preserved, and include three tests using temporary data rather than relying on a user’s real files. Keep the solution in the standard library and avoid broad exception catches. Return a before-and-after rationale, complete replacement code, and test cases. Self-check that file handles are managed safely, empty input is handled, and the refactor does not silently change output semantics.

Optional inputs: [original script] [sample output] [supported Python version]

6Build a Test-First Practice Exercise

Use when: You want to learn Python by implementing a modest function with explicit behavior and meaningful tests.

Open copy-ready prompt
Act as a test-driven Python instructor creating a practice exercise for a function that normalizes a list of user-entered tags. Define behavior for surrounding whitespace, case normalization, blank values, duplicate tags, and input order. Begin with a concise specification and a table of examples, then provide a starter function signature and a pytest-free test suite using `unittest` from the standard library. Do not provide the implementation at first; instead, include hints in increasing levels of specificity and a separate answer key that can be hidden from the learner. Require deterministic results and explain how each test maps to a rule. Self-check that the specification resolves edge cases consistently, tests do not depend on locale or external services, and the answer key cannot pass by ignoring invalid inputs.

Optional inputs: [desired function name] [tag syntax rules] [learner level]

7Diagnose Data-Type and Mutation Bugs

Use when: A Python program produces confusing results because values change type or a mutable object is shared unexpectedly.

Open copy-ready prompt
Act as a Python instructor preparing a code-reading clinic on two frequent beginner errors: accidentally concatenating strings where numeric addition is intended, and modifying a list through an alias. Create a compact example program containing both defects, but do not make the mistakes visually obvious. Ask the learner to predict the output, locate the defects, and propose fixes. Then provide an instructor’s walkthrough showing runtime types, object references, and the corrected version. Include a small set of assertions that verify the intended results, plus one question about when copying is necessary. Use plain Python and avoid implementation details that are irrelevant to the examples. Self-check that the walkthrough accurately distinguishes rebinding from mutation and that every assertion would fail before the fixes.

Optional inputs: [learner age or level] [preferred domain] [Python version]

8Learn to Read Documentation and Validate an API Call

Use when: You need to learn an unfamiliar standard-library function without copying unverified snippets.

Open copy-ready prompt
Act as a Python documentation coach guiding a learner through the standard-library `pathlib.Path` API for listing files in a directory. Show how to identify the authoritative documentation, interpret the function signature, choose between `iterdir()` and `glob()`, and write a small example that reports matching `.csv` files. Include assumptions, platform-safe path construction, and a dry-run validation approach that does not modify files or reveal directory contents. Explain likely exceptions and how to handle them narrowly. Organize the response as a documentation-reading checklist, annotated example, verification plan, and follow-up exercise. Self-check that the code performs read-only inspection, does not assume a particular operating system, and clearly separates documented behavior from recommendations.

Optional inputs: [directory purpose] [file pattern] [Python version]

9Convert an Error Report into a Minimal Reproducible Example

Use when: A vague bug report needs to become a small, shareable case that others can inspect safely.

Open copy-ready prompt
Act as a Python maintainer helping transform a report that “sometimes loses records” into a minimal reproducible example. Provide a method for reducing the program while preserving the failure: record the environment, isolate inputs, remove unrelated dependencies, add assertions, and capture deterministic evidence. Demonstrate the method with a harmless in-memory example involving a dictionary keyed by an identifier, and explicitly mark which details are illustrative rather than confirmed facts. Include a reproduction template, a triage checklist, and a short example of a good issue description. Prohibit including API keys, personal information, proprietary data, or unreviewed executable attachments. Self-check that the example can be run offline, the failure is observable, and the reduction preserves the suspected mechanism rather than merely producing a different error.

Optional inputs: [original report] [Python version] [sample data shape] [execution environment]

10Review Python Code for Learning-Oriented Quality

Use when: You want constructive feedback on beginner Python code that improves understanding instead of merely assigning a style score.

Open copy-ready prompt
Act as a supportive Python reviewer assessing a short script that parses comma-separated product prices and calculates a total. Review it for correctness, edge-case handling, naming, control flow, function boundaries, testability, and clarity. Do not rewrite the entire script without explaining the learning value of each change. Return a prioritized review with severity labels, quoted code locations, questions for the author, a minimally revised version, and five targeted tests. Treat unspecified behavior—such as malformed prices, blank fields, and rounding—as requirements to clarify, not facts to invent. Keep dependencies out of scope and never request real customer data. Self-check that each criticism is actionable, each revision corresponds to an identified issue, and the proposed tests expose at least one edge case the original likely misses.

Optional inputs: [script] [expected input format] [rounding policy] [learner goal]

2. Data Structures, Algorithms, and Problem Solving

11Optimize a Nested Loop Algorithm

Use when: You need to reduce the time complexity of an existing algorithm that uses nested loops.

Open copy-ready prompt
You are a Python performance optimization engineer. I have a working algorithm that uses nested loops to process data, but it's too slow for production use with large datasets. Review the provided code, identify the computational bottleneck, and refactor it to achieve better time complexity. Propose at least two alternative approaches using appropriate data structures such as hash maps, sets, or heaps. For each approach, explain the time and space complexity trade-offs, then implement the most efficient solution with inline comments. Include a brief benchmark comparison showing the performance improvement on a sample dataset of 10,000 elements. Your solution must preserve the original algorithm's correctness and handle edge cases such as empty inputs or duplicate values.

Optional inputs: [Current code], [Sample dataset size], [Performance requirements]

12Design a Custom Data Structure

Use when: You need to implement a specialized data structure that combines features not available in Python's standard library.

Open copy-ready prompt
You are a data structures architect specializing in Python. I need a custom data structure that supports efficient insertion, deletion, and retrieval operations with specific constraints that standard collections cannot satisfy. Design and implement this structure from scratch, explaining your choice of underlying components such as arrays, linked lists, trees, or hash tables. Provide a complete class definition with clear docstrings for each method, including time complexity annotations. Implement at least five core operations with appropriate error handling for invalid inputs. Write a comprehensive test suite demonstrating correctness across normal cases, edge cases, and stress tests with 1,000+ elements. Document any memory overhead and suggest when developers should use your structure versus built-in alternatives.

Optional inputs: [Required operations], [Performance constraints], [Expected data volume]

13Implement a Graph Traversal Algorithm

Use when: You need to solve a problem that requires exploring relationships or paths in a network structure.

Open copy-ready prompt
You are a graph algorithms specialist. I have a problem that can be modeled as a graph where nodes represent entities and edges represent relationships. Implement both depth-first search and breadth-first search algorithms to traverse this graph, using an adjacency list representation. Your implementation must handle directed and undirected graphs, detect cycles, and track visited nodes to prevent infinite loops. For each algorithm, explain when it's more appropriate to use one over the other. Include a function that finds the shortest path between two nodes and returns both the path and its length. Provide clear examples with a sample graph of at least eight nodes, and add assertions to verify that your traversal order is correct.

Optional inputs: [Graph type], [Start node], [Target node], [Specific path constraints]

14Solve a Dynamic Programming Challenge

Use when: You need to optimize a recursive solution by eliminating redundant calculations.

Open copy-ready prompt
You are a competitive programming coach specializing in dynamic programming. I have a problem that can be solved recursively, but the naive approach has exponential time complexity due to overlapping subproblems. Transform this into an efficient dynamic programming solution using either top-down memoization or bottom-up tabulation. Clearly explain your state definition, recurrence relation, and base cases. Implement both approaches and compare their performance and readability. Your solution must include detailed comments explaining how each subproblem contributes to the final answer. Provide a complexity analysis showing the improvement from the recursive version, and test your implementation with at least three different input sizes to demonstrate scalability.

Optional inputs: [Problem description], [Input constraints], [Preferred approach]

15Refactor Code Using Design Patterns

Use when: You need to improve code maintainability and extensibility by applying established design patterns.

Open copy-ready prompt
You are a software design consultant with expertise in Python design patterns. I have functional code that has become difficult to maintain due to tight coupling, repeated logic, or unclear responsibilities. Analyze the code and identify which design pattern would best address these issues—such as Strategy, Factory, Observer, or Decorator. Refactor the code to implement your chosen pattern, ensuring that the new structure improves testability and makes future extensions easier. Explain how the pattern solves the specific problems in the original code. Provide before-and-after class diagrams or structure outlines, and write unit tests demonstrating that the refactored code produces identical results. Your refactoring must not introduce breaking changes to the public interface.

Optional inputs: [Current code], [Specific pain points], [Extensibility requirements]

16Analyze Algorithm Complexity

Use when: You need to understand or document the performance characteristics of an algorithm.

Open copy-ready prompt
You are an algorithms professor teaching complexity analysis. I have implemented an algorithm but need a rigorous analysis of its time and space complexity. Walk through the code step by step, identifying loops, recursive calls, and data structure operations. Express the time complexity in Big O notation for best, average, and worst cases, explaining the conditions that lead to each scenario. Calculate the space complexity including auxiliary space used by recursion or temporary data structures. If the complexity is suboptimal, suggest concrete improvements and explain how they would change the complexity class. Provide a clear written explanation suitable for documentation, and include a simple table summarizing the complexity of each major operation.

Optional inputs: [Algorithm code], [Input characteristics], [Performance concerns]

17Implement a Sorting Algorithm from Scratch

Use when: You need to understand sorting mechanics or require a custom sorting behavior not provided by built-in functions.

Open copy-ready prompt
You are a computer science educator demonstrating sorting algorithms. Implement a specific sorting algorithm from scratch without using Python's built-in sort functions. Provide a clear, well-commented implementation that shows each step of the sorting process. Explain the algorithm's strategy, including how it partitions, compares, or merges elements. Include a visualization function that prints the array state after each major step so learners can follow the progression. Analyze the time complexity for best, average, and worst cases, and explain when this algorithm is preferable to alternatives. Test your implementation on arrays that trigger different performance scenarios: already sorted, reverse sorted, random, and arrays with duplicate values. Ensure your code handles edge cases like empty arrays and single-element arrays.

Optional inputs: [Algorithm name], [Array size], [Data characteristics]

18Build a Caching System with Eviction Policy

Use when: You need to implement efficient data caching with automatic memory management.

Open copy-ready prompt
You are a systems programmer building a caching layer. Design and implement a cache that stores key-value pairs with a maximum capacity and automatically evicts entries when full. Implement a specific eviction policy such as Least Recently Used, Least Frequently Used, or First In First Out. Use appropriate data structures to ensure that all operations—get, put, and eviction—run in O(1) or O(log n) time. Your implementation must include methods to retrieve cached values, insert new entries, update existing entries, and clear the cache. Add comprehensive docstrings explaining the eviction logic and thread-safety considerations. Write tests that verify correct eviction behavior when the cache reaches capacity, and demonstrate the cache's effectiveness by measuring hit rates on a realistic access pattern.

Optional inputs: [Cache size], [Eviction policy], [Expected access patterns]

19Solve a Backtracking Problem

Use when: You need to explore all possible solutions to a constraint satisfaction problem.

Open copy-ready prompt
You are an algorithms expert specializing in backtracking techniques. I have a problem that requires exploring multiple possibilities and backtracking when constraints are violated—such as puzzle solving, permutation generation, or combinatorial search. Implement a backtracking solution that systematically explores the solution space while pruning invalid branches early. Your code must clearly show the recursive structure, the choice at each step, the constraint checking, and the backtracking mechanism. Include a solution counter or collector that gathers all valid solutions or finds the first valid one, depending on requirements. Add print statements or logging to trace the search process for educational purposes. Test with inputs that have no solution, exactly one solution, and multiple solutions to verify correctness.

Optional inputs: [Problem constraints], [Solution requirements], [Search space size]

20Optimize Memory Usage in Data Processing

Use when: You need to process large datasets that exceed available memory using streaming or chunking techniques.

Open copy-ready prompt
You are a data engineering specialist focused on memory-efficient Python. I need to process a dataset that is too large to fit in memory all at once. Design a solution using generators, iterators, or chunked reading to handle the data in a streaming fashion. Your implementation must read, transform, and aggregate data without loading the entire dataset into RAM. Explain how your approach reduces memory footprint compared to loading everything upfront, and provide memory profiling results using tools like memory_profiler or tracemalloc. Handle file I/O efficiently, and ensure that your solution can process datasets of arbitrary size. Include error handling for corrupted data or incomplete records. Demonstrate your solution on a simulated large dataset and show that memory usage remains constant regardless of input size.

Optional inputs: [Data source], [Processing operations], [Memory constraints]

3. Application Architecture and APIs

21Design a Modular Service Boundary

Use when: You need to split a growing Python application into maintainable modules without prematurely creating distributed services.

Open copy-ready prompt
Act as a principal Python architect advising a team whose order-management application has tangled business rules, database calls, and HTTP handlers. Design a modular monolith architecture that separates domain logic, application services, infrastructure adapters, and API delivery. Define responsibilities, dependency direction, package boundaries, and a migration sequence from the current structure. Keep the design suitable for a five-person team, favor explicit interfaces over framework magic, and avoid introducing microservices unless a specific operational need justifies one. Present a concise architecture diagram in Mermaid, a proposed directory tree, boundary rules, and three representative Python interface signatures. Self-check by listing two likely coupling violations and explaining how the design prevents them.

Optional inputs: [Current package tree] [Framework] [Database] [Most problematic workflow]

22Build a Versioned REST API Contract

Use when: You are introducing a public REST API and need a stable, reviewable contract before implementation.

Open copy-ready prompt
Act as an API design lead creating a version-one REST contract for a Python service that manages team projects, memberships, and invitations. Specify resource URLs, HTTP methods, request and response examples, pagination, filtering, validation errors, authentication expectations, idempotency behavior, and compatibility rules for future changes. Use consistent JSON naming and status-code conventions, but state assumptions where requirements are incomplete rather than inventing business facts. Produce an OpenAPI-oriented outline followed by a compact endpoint table and a checklist for consumer review. Include one deliberately rejected endpoint design with its rationale. Self-check the contract for naming consistency, ambiguous authorization behavior, missing error responses, and at least one retry-safe operation; flag every unresolved decision for product or security review.

Optional inputs: [API consumers] [Authentication method] [Core resources] [Existing conventions]

23Choose an Async or Sync Web Architecture

Use when: A Python team must select a request-processing model for an API with mixed workloads and unclear performance assumptions.

Open copy-ready prompt
Act as a senior Python platform engineer evaluating whether a new API should use synchronous workers, asynchronous endpoints, or a deliberate hybrid. The service receives ordinary CRUD requests, calls one slow third-party API, and runs occasional CPU-heavy document parsing. Compare the options against correctness, operational complexity, library compatibility, latency, throughput, observability, and failure isolation. Do not invent benchmark results; identify the measurements needed and propose a small load-test plan using representative scenarios. Recommend an initial architecture only conditionally, with explicit decision criteria and a rollback path. Return a decision matrix, request-flow sketches, and implementation risks. Self-check by identifying any blocking operation that could undermine async performance and any CPU-bound work that needs process isolation.

Optional inputs: [Expected request rate] [Latency target] [Python framework] [Third-party API limits]

24Define a Reliable Background-Job API

Use when: An API must hand off slow or retryable work to background workers without confusing clients about completion.

Open copy-ready prompt
Act as a Python distributed-systems engineer designing the API and workflow for asynchronous video-transcription jobs. Define the submission, status, cancellation, and result-retrieval endpoints, including idempotency keys, authentication and authorization checks, state transitions, retry semantics, expiration, and failure responses. Assume workers may crash, messages may be delivered more than once, and clients may poll irregularly. Keep the design provider-neutral and do not include credentials, destructive commands, or claims about guaranteed delivery. Explain which state is authoritative and how duplicate submissions are detected. Deliver a state-transition diagram, endpoint examples, persistence fields, and operational alerts. Self-check by tracing a worker crash after completion but before acknowledgment, plus a repeated client submission, and show why neither produces an incorrect duplicate result.

Optional inputs: [Job types] [Queue technology] [Retention period] [Maximum processing time]

25Establish Dependency Injection for Testability

Use when: Python code is difficult to test because application services instantiate databases, clocks, HTTP clients, or configuration internally.

Open copy-ready prompt
Act as a Python application architect refactoring a billing service toward explicit dependency injection. Show how to separate pure business decisions from adapters for payment gateways, repositories, clocks, and feature flags. Use small protocols or abstract interfaces where they improve substitution, but avoid an elaborate container framework. Provide a before-and-after design, illustrative type-annotated code for one use case, composition-root guidance, and a testing strategy covering fake adapters, contract tests, and integration tests. Preserve behavior and explain how to migrate incrementally without changing every call site at once. Do not include real secrets or payment credentials. Self-check by examining whether the proposed unit test can run without a network or database and by identifying one dependency that should remain concrete for simplicity.

Optional inputs: [Existing service class] [Python version] [Test framework] [External adapters]

26Design Consistent API Error Handling

Use when: Multiple Python endpoints return inconsistent errors that make client behavior, support, and monitoring unreliable.

Open copy-ready prompt
Act as an API reliability specialist standardizing error handling for a Python REST application. Create a single machine-readable error envelope with fields for stable code, human-safe message, request identifier, field details, and optional remediation metadata. Map validation, authentication, authorization, not-found, conflict, rate-limit, dependency, and unexpected failures to appropriate responses without leaking stack traces, secrets, or internal topology. Explain logging and correlation requirements separately from the client-facing payload, and distinguish retryable from non-retryable failures. Provide framework-agnostic pseudocode, six concrete JSON examples, and a rollout plan that preserves backward compatibility for existing consumers. Self-check every example for accidental sensitive data and verify that clients can programmatically handle unknown future error codes.

Optional inputs: [Current error samples] [Framework] [Logging platform] [Client compatibility constraints]

27Plan API Authentication and Authorization Layers

Use when: An API needs a security architecture that separates identity verification from permission decisions across users and service accounts.

Open copy-ready prompt
Act as a Python application-security architect designing authentication and authorization for a multi-tenant analytics API. Compare session cookies, short-lived bearer tokens, and service-to-service credentials in the context of browser users, scheduled jobs, and partner integrations. Define tenant isolation, role and resource checks, token rotation, revocation considerations, audit events, and secure failure behavior. Keep the guidance implementation-oriented but provider-neutral; never request, print, or store real secrets, and do not assume an identity has access merely because it is authenticated. Present a threat-to-control table, a request authorization sequence, policy pseudocode, and questions requiring qualified security review. Self-check by tracing a cross-tenant object request, a stolen expired token, and a compromised service account, stating the expected denial and evidence captured.

Optional inputs: [Identity provider] [Tenant model] [Roles] [Partner integration needs]

28Create an API Contract-Test Strategy

Use when: Independent Python API producers and consumers need confidence that changes will not silently break integrations.

Open copy-ready prompt
Act as a test architect establishing contract testing for a Python inventory API used by a web client and a warehouse integration. Explain what belongs in producer tests, consumer expectations, schema validation, compatibility gates, and end-to-end tests. Design representative contracts for stock lookup, reservation, and release, including malformed input, concurrency conflict, and unavailable dependency behavior. Prefer deterministic fixtures, synthetic data, and isolated test environments; do not rely on production credentials or real customer records. Return a test-pyramid diagram, a sample contract in readable JSON-like form, CI gate rules, and a versioning policy for additive and breaking changes. Self-check by introducing one harmless response-field addition and one breaking type change, then state which checks should pass, fail, or require approval.

Optional inputs: [API schema] [Consumer list] [CI provider] [Deployment cadence]

29Model Data Ownership and Transaction Boundaries

Use when: A Python application has race conditions or unclear consistency because several components update related data independently.

Open copy-ready prompt
Act as a senior backend engineer reviewing a Python subscription platform whose signup flow updates accounts, plans, entitlements, and notifications. Define ownership for each piece of state and draw transaction boundaries that preserve business invariants without pretending a single database transaction can cover external email delivery. Explain optimistic concurrency, uniqueness constraints, transactional outbox or equivalent event publication, idempotent handlers, and reconciliation for partial failure. Keep examples database-agnostic and clearly mark assumptions. Produce an invariant list, a sequence diagram, pseudocode for the critical write path, and a failure-mode table. Self-check by simulating duplicate signup requests, a database commit followed by a worker crash, and a concurrent plan change; identify the observable outcome and recovery mechanism for each.

Optional inputs: [Current schema] [Database type] [Business invariants] [External side effects]

30Evaluate an API Gateway and Service Composition

Use when: A Python product is considering a gateway or backend-for-frontend layer to simplify clients without hiding important operational trade-offs.

Open copy-ready prompt
Act as a platform architect assessing whether a Python product should add an API gateway or backend-for-frontend between mobile clients and several internal services. Analyze routing, aggregation, authentication context, rate limiting, caching, timeout budgets, observability, versioning, and failure behavior. Compare a thin gateway with a domain-heavy composition layer, and state when direct service access is safer or simpler. Do not recommend bypassing authorization, exposing internal endpoints, or using destructive deployment steps. Deliver an options table, a request fan-out sequence, resilience rules, ownership boundaries, and a phased adoption plan with measurable exit criteria. Self-check by tracing one slow dependency and one unauthorized resource request, ensuring the design limits blast radius and preserves a clear audit trail.

Optional inputs: [Client types] [Existing services] [Latency budget] [Traffic pattern] [Team ownership model]

4. Data Engineering and Automation

31Build a Resilient CSV Ingestion Pipeline

Use when: You need a maintainable Python workflow that ingests recurring CSV files without silently corrupting data.

Open copy-ready prompt
Act as a senior data engineer designing a Python 3.12 CSV ingestion pipeline for a small analytics team. Files arrive daily in a landing directory and may contain reordered columns, UTF-8 or UTF-8-SIG encoding, duplicate rows, malformed records, and schema drift. Produce a complete implementation using pathlib, csv or pandas only where justified, structured logging, configuration through environment variables, and a quarantine directory for rejected files. Make processing idempotent and explain how it records file-level and row-level outcomes without exposing secrets. Return the code, a concise configuration example, a test plan with edge cases, and an operations checklist. Self-check that rerunning the same file cannot duplicate accepted records and that every failure path is observable.

Optional inputs: [input directory] [expected columns] [destination format] [deduplication key] [retention period]

32Automate Paginated API Extraction

Use when: You must collect complete records from a paginated API while respecting limits and handling transient failures.

Open copy-ready prompt
Act as a Python integration engineer responsible for extracting customer-support tickets from a documented REST API that uses cursor pagination. Write a safe, reusable client that reads the base URL and token from environment variables, requests pages with timeouts, honors Retry-After, retries only appropriate transient errors with bounded exponential backoff, and persists a checkpoint so an interrupted run can resume. Include type hints, structured logs that never print authorization headers or personal message bodies, response validation, and a dry-run mode. Return a module, example command-line usage, unit-test scenarios using mocked responses, and a brief explanation of rate-limit and data-retention assumptions. Self-check that cursor loops, empty pages, non-JSON responses, and duplicate records are handled deterministically.

Optional inputs: [API documentation] [page size] [rate limit] [checkpoint path] [field selection]

33Design a Data-Quality Monitoring Job

Use when: A scheduled dataset needs repeatable quality checks and actionable failure reporting.

Open copy-ready prompt
Act as a data reliability engineer creating a Python data-quality job for a daily orders table. Define checks for required columns, null thresholds, unique order IDs, nonnegative quantities, valid currency codes, timestamp parsing, and day-over-day volume anomalies. Implement the checks with clear interfaces so the team can add rules without rewriting the runner. The job should emit machine-readable JSON results, a human-readable summary, exit with a meaningful status, and avoid embedding credentials or sensitive row samples in logs. Distinguish warnings from blocking failures and explain how thresholds should be reviewed by the data owner. Return the implementation, a sample report, and pytest cases. Self-check that each rule identifies its scope, observed value, threshold, severity, and remediation hint.

Optional inputs: [table schema] [quality thresholds] [business timezone] [alert destination] [anomaly window]

34Convert a Notebook into a Production ETL Module

Use when: An exploratory notebook works manually but needs to become testable, repeatable production code.

Open copy-ready prompt
Act as a Python platform engineer refactoring an exploratory notebook that downloads product data, cleans prices, joins a reference table, and writes a partitioned Parquet dataset. Propose a small package layout and provide representative code that separates extraction, transformation, validation, and loading. Preserve business behavior while making inputs explicit, outputs deterministic, and dependencies injectable for tests. Add configuration handling, logging, schema validation, atomic writes, and a command-line entry point; do not include real credentials or destructive cleanup commands. Return the package tree, key source files, test fixtures, migration notes, and a runbook for backfills. Self-check that a failed write cannot leave a misleading “successful” partition and that timezone and decimal handling are stated rather than assumed.

Optional inputs: [notebook excerpt] [source systems] [target path] [partition columns] [runtime environment]

35Create a Safe File-Organization Utility

Use when: A local data directory contains recurring files that must be classified and moved predictably.

Open copy-ready prompt
Act as a Python automation specialist building a cross-platform utility that organizes downloaded data files by date and type. It must scan only an explicitly supplied directory, recognize extensions case-insensitively, normalize filenames without overwriting collisions, support a preview mode, and require an explicit confirmation flag before moving anything. Use pathlib, avoid shell commands, preserve metadata where practical, and report skipped symlinks, unreadable files, and ambiguous names. Include a configurable dry-run report in JSON and human-readable text, plus tests for collisions, nested folders, invalid dates, and permission errors. Return the implementation, usage examples, and safety rationale. Self-check that no path can escape the approved root and that preview mode performs no filesystem mutation.

Optional inputs: [approved root] [file categories] [date extraction rule] [collision policy] [Python version]

36Build an Incremental Database Loader

Use when: You need to load only changed source records into a warehouse while preserving repeatability.

Open copy-ready prompt
Act as a Python data engineer designing an incremental loader from a PostgreSQL source to an analytical database. Use a monotonically increasing updated_at watermark plus a stable primary key tie-breaker, and explain how the loader behaves when timestamps arrive late or records are deleted. Provide database-agnostic Python structure with parameterized SQL, transaction boundaries, batch sizing, checkpoint persistence, and a reconciliation query. Include retry boundaries and rollback behavior without inventing vendor-specific features. Do not include passwords, connection strings, or destructive SQL. Return pseudocode or runnable illustrative code, a state-transition explanation, operational metrics, and tests for reruns, equal timestamps, partial batches, and clock skew. Self-check that a crash between extraction and checkpoint advancement cannot permanently skip records.

Optional inputs: [source schema] [target schema] [watermark column] [batch size] [deletion policy]

37Orchestrate a Multi-Step Python Workflow

Use when: Several dependent data tasks need visible state, retries, and resumability without hidden side effects.

Open copy-ready prompt
Act as a workflow engineer creating a lightweight Python orchestration pattern for extract, validate, transform, publish, and notify stages. The workflow runs on a scheduler, but should remain executable locally for debugging. Define stage contracts, a run identifier, dependency-aware status tracking, bounded retries, timeout handling, and a manual resume path. Make each stage idempotent and ensure notifications contain summaries rather than sensitive payloads. Avoid assuming a particular orchestration platform and do not provide deployment or credential instructions that could grant unauthorized access. Return a reference implementation, state diagram in Mermaid, configuration example, and failure-injection test matrix. Self-check that a failed validation prevents publication, a retried stage does not duplicate outputs, and the final status accurately distinguishes failure, cancellation, and success.

Optional inputs: [scheduler] [stage commands] [artifact store] [retry limits] [notification channel]

38Generate Reproducible Synthetic Test Data

Use when: A data pipeline needs realistic fixtures without exposing production records.

Open copy-ready prompt
Act as a privacy-conscious Python test engineer generating synthetic yet relationally consistent data for an e-commerce pipeline. Create a deterministic generator with a seed that produces customers, orders, line items, products, refunds, and timestamps across a configurable period. Preserve referential integrity and deliberately include configurable edge cases such as null contact fields, duplicate-like events, late arrivals, currency variation, and invalid records in a separate rejected set. Do not copy or infer real personal data, and explain why the fixtures are synthetic. Return typed Python code, sample output schemas, pytest usage, and guidance for keeping generated data out of production. Self-check that the same seed yields the same records, foreign keys resolve, and sensitive-looking values are clearly marked as test-only.

Optional inputs: [record counts] [seed] [date range] [edge-case rates] [output format]

39Add Observability to a Batch Script

Use when: A previously opaque Python batch job needs metrics and diagnosable logs before automation at scale.

Open copy-ready prompt
Act as a reliability-minded Python engineer improving a nightly inventory reconciliation script. Design instrumentation that records run ID, input count, output count, duration, retry count, validation failures, and high-level outcome using structured logging and a metrics abstraction that can target either a local file or an existing monitoring system. Redact credentials, customer identifiers, and full record contents; use correlation fields rather than payload logging. Show how to measure stages without materially changing business logic, and define alert thresholds as examples rather than universal truths. Return revised code fragments, a sample log event, metric definitions, and a troubleshooting guide. Self-check that logs remain useful when an exception occurs before initialization and that counters cannot be confused with monetary totals.

Optional inputs: [existing script] [logging format] [metrics backend] [privacy fields] [job schedule]

40Plan a Robust Excel-to-Database Automation

Use when: Business users supply spreadsheet data that must enter a controlled Python processing workflow.

Open copy-ready prompt
Act as a Python automation architect designing a controlled Excel-to-database intake process for monthly expense submissions. The workflow should accept a declared workbook and sheet, validate headers and types, detect duplicate expense IDs, preserve a raw immutable copy, transform dates and decimal amounts explicitly, and produce an exception workbook for corrections. Use openpyxl or pandas with a clear rationale, parameterized database operations, transaction rollback, and an approval gate before final loading. Account for formulas, hidden rows, merged cells, locale-specific number formats, and workbook corruption; never upload files or credentials without explicit authorization. Return a process design, illustrative Python code, validation report schema, and user-facing correction instructions. Self-check that rejected rows remain traceable to source coordinates and that a rerun cannot double-load approved records.

Optional inputs: [workbook path] [sheet name] [column mapping] [database table] [locale] [approval owner]

5. Testing, Quality, and Code Review

41Build a Boundary-First Test Plan

Use when: You need a pytest strategy for a function whose edge cases matter as much as its happy path.

Open copy-ready prompt
Act as a senior Python test engineer reviewing a function that parses subscription dates and returns the next charge date. Using the signature, business rules, and examples below, design a boundary-first test plan. Identify equivalence classes, invalid inputs, leap days, timezone offsets, daylight-saving transitions, and exception semantics. Provide a compact matrix followed by copy-ready parametrized pytest cases. Keep tests deterministic, avoid network access and real clocks, and state assumptions about date libraries. Finish by checking that every business rule has at least one meaningful assertion and that no test depends on the machine’s local timezone. Do not rewrite production code unless a small testability seam is essential. > **Optional inputs:** [Function signature] [Business rules] [Examples] [Allowed libraries]

Optional inputs: [Function signature] [Business rules] [Examples] [Allowed libraries]

42Diagnose Flaky Tests Without Masking Failures

Use when: A pytest test passes locally but fails intermittently in continuous integration.

Open copy-ready prompt
Act as a Python reliability specialist investigating a flaky test. Review the test, fixtures, failure traces, CI details, and recent changes below. Rank plausible causes such as shared mutable state, ordering dependence, race conditions, wall-clock use, filesystem assumptions, random seeds, or leaked resources. For each hypothesis, propose a minimal experiment that can confirm or falsify it, then recommend a durable fix rather than retries or broad sleeps. Present an incident note with evidence, hypotheses, experiments, remediation, and regression coverage. Preserve the failure signal, never suppress exceptions, and do not request secrets or protected-system access. Self-check that every recommendation is tied to evidence and that the regression test would fail if the original cause returned. > **Optional inputs:** [Failing test] [Traceback] [Fixtures] [CI logs] [Recent changes]

Optional inputs: [Failing test] [Traceback] [Fixtures] [CI logs] [Recent changes]

43Review Mocking Boundaries and Test Doubles

Use when: Tests may be proving implementation details instead of meaningful Python behavior.

Open copy-ready prompt
Act as an experienced Python maintainer reviewing pytest code that mocks HTTP clients, repositories, and environment configuration. Determine whether each mock is placed at the correct import boundary, whether assertions verify meaningful behavior, and whether tests are coupled to private implementation details. Classify each double as a mock, stub, fake, or spy, and recommend a contract test or in-memory fake when appropriate. Return a table with location, concern, risk, and suggested change, followed by revised examples for the riskiest tests. Keep examples offline, avoid credentials and external services, and preserve supplied-data privacy. Self-check that the proposed tests would survive a reasonable internal refactor that preserves public behavior. > **Optional inputs:** [Test module] [Production imports] [External interfaces] [Public behavior]

Optional inputs: [Test module] [Production imports] [External interfaces] [Public behavior]

44Establish Type and Lint Quality Gates

Use when: You want incremental, defensible quality checks for an existing Python repository.

Open copy-ready prompt
Act as a Python tooling lead introducing formatting, linting, import, and static type checks without blocking legitimate legacy work. Inspect the repository layout, pyproject configuration, supported Python versions, and current CI commands. Recommend a staged configuration that fits the project. Show exact commands and a minimal CI job, distinguishing required checks from optional adoption steps. Explain how to baseline existing violations without hiding new defects, and identify rules likely to create noise. Do not include destructive commands, secret values, or assumptions about an unapproved platform. Present an adoption plan with configuration snippets, failure policy, and ownership notes. Self-check that each command works from a clean checkout and matches the declared Python versions. > **Optional inputs:** [Repository tree] [pyproject.toml] [Python versions] [CI platform] [Tool output]

Optional inputs: [Repository tree] [pyproject.toml] [Python versions] [CI platform] [Tool output]

45Improve Coverage Without Chasing a Number

Use when: A coverage target exists but does not show whether important Python behavior is protected.

Open copy-ready prompt
Act as a test-quality reviewer auditing a Python service with strong line coverage but recent regressions. Analyze the coverage report, public interfaces, risk areas, and defect history below. Identify untested behavior by consequence rather than percentage, including error paths, authorization boundaries, serialization changes, idempotency, and integration seams. Recommend prioritized tests with rationale, and write representative pytest cases for the highest-risk gaps. Treat coverage as evidence, not proof; call out generated code and defensive branches that should not drive the target. Use deterministic fixtures, avoid production data, and do not invent requirements. Return a prioritized audit table and implementation sequence. Self-check that each test protects a specific observable behavior rather than merely inflating coverage. > **Optional inputs:** [Coverage report] [Defects] [API description] [Risk register] [Representative modules]

Optional inputs: [Coverage report] [Defects] [API description] [Risk register] [Representative modules]

46Refactor a Test Suite for Clarity and Speed

Use when: A growing pytest suite is slow, repetitive, or difficult for contributors to understand.

Open copy-ready prompt
Act as a Python test-architecture specialist reviewing a slow pytest suite for a data-import package. Examine test files, fixture graphs, timing reports, and naming conventions. Propose a refactoring that improves readability and execution time while preserving behavioral coverage. Separate safe changes, such as clearer parametrization and correct fixture scope, from changes requiring evidence, such as parallel execution or altered isolation. Provide before-and-after examples for one module, explain fixture lifetimes, and include a verification checklist comparing results before and after. Keep tests independent, do not introduce order dependence, and never disable tests merely to improve metrics. Self-check that the plan preserves failure localization, cleanup guarantees, and focused local runs. > **Optional inputs:** [Test suite] [Duration report] [Fixtures] [CI limit] [Approved plugins]

Optional inputs: [Test suite] [Duration report] [Fixtures] [CI limit] [Approved plugins]

47Review a Pull Request for Correctness

Use when: A Python pull request needs a structured review focused on production risk and maintainability.

Open copy-ready prompt
Act as a principal Python reviewer evaluating a pull request that adds retry behavior to a payment-status client. Read the diff, surrounding code, tests, and acceptance criteria. Review correctness, exception handling, retry limits, idempotency, observability, backwards compatibility, security, and maintainability. Distinguish blocking defects from non-blocking suggestions and avoid speculative criticism. For each finding, cite the code location, explain concrete impact, and suggest a focused fix or test. Summarize strengths and unanswered questions afterward. Do not claim a vulnerability without evidence, expose credentials, or recommend bypassing authorization. Format the response as review comments followed by an approval-readiness summary. Self-check that every blocking comment is actionable and supported by the diff or a stated requirement. > **Optional inputs:** [Pull-request diff] [Acceptance criteria] [Related modules] [Tests] [Compatibility promises]

Optional inputs: [Pull-request diff] [Acceptance criteria] [Related modules] [Tests] [Compatibility promises]

48Design Property-Based Tests for Invariants

Use when: Example-based tests miss combinations of inputs in a Python transformation or serialization layer.

Open copy-ready prompt
Act as a property-based testing expert designing Hypothesis tests for a function that normalizes nested configuration dictionaries. Based on the schema and examples, identify invariants such as deterministic output, preservation of permitted keys, idempotence, stable ordering where promised, and clear rejection of malformed structures. Define bounded, meaningful strategies and provide copy-ready tests with readable diagnostics. Explain which properties are guaranteed and which would be unsafe assumptions. Keep dependencies local, avoid external services, and do not rely on private implementation details. Return sections for specification extraction, strategies, properties, examples, and limitations. Self-check that each property has a counterexample discussion and generated inputs remain within the documented domain. > **Optional inputs:** [Function code] [Schema] [Valid examples] [Invalid examples] [Guarantees] [Hypothesis version]

Optional inputs: [Function code] [Schema] [Valid examples] [Invalid examples] [Guarantees] [Hypothesis version]

49Create a Safe Regression Test from a Bug Report

Use when: A production defect needs a focused Python regression test before implementation changes.

Open copy-ready prompt
Act as a senior developer writing a minimal regression test for a CSV importer that merges records when identifiers differ only by surrounding whitespace. Use the bug report, parser code, and data contract below to reconstruct the smallest representative failing case. Write a pytest test demonstrating the defect before the fix and expressing the intended result after it. Add one assertion for the nearest legitimate behavior so the test does not overfit a single example. Keep the fixture self-contained, use no customer data, and do not infer unreported business rules. Explain why the case is minimal and where it belongs. Self-check that the test fails for the stated defect, passes after a correct fix, and catches a regression involving both records. > **Optional inputs:** [Bug report] [Parser code] [Data contract] [Anonymized sample] [Test layout]

Optional inputs: [Bug report] [Parser code] [Data contract] [Anonymized sample] [Test layout]

50Perform a Release-Readiness Quality Review

Use when: A Python package is approaching release and needs an evidence-based final quality assessment.

Open copy-ready prompt
Act as a release-quality lead reviewing a Python package candidate for version 3.0. Examine the changelog, test results, dependency changes, public API documentation, type-checking output, security scan summary, and supported-environment matrix. Assess whether the evidence supports release, conditional release, or a hold. Identify missing evidence and high-impact risks, especially compatibility breaks, untested migrations, dependency constraints, and caller-visible error changes. Produce a concise decision memo with an evidence table, severity-ranked findings, owners, and explicit go/no-go criteria. Do not invent scan results, expose secrets, or give false assurance based on passing tests alone. State which conclusions require maintainer, security, or domain-owner sign-off. Self-check that every recommendation points to an artifact or is clearly labeled unknown. > **Optional inputs:** [Release version] [Test reports] [Changelog] [Dependency diff] [Compatibility matrix] [Security review] [Sign-off policy]

Optional inputs: [Release version] [Test reports] [Changelog] [Dependency diff] [Compatibility matrix] [Security review] [Sign-off policy]

6. Performance, Reliability, and Observability

51Profile Before Optimizing

Use when: A Python service is slower than its response-time target and the team needs evidence before changing code.

Open copy-ready prompt
Act as a senior Python performance engineer reviewing a production-like service whose p95 latency has risen from [baseline] to [current value]. Design a safe investigation using representative workloads, deterministic profiling, and low-overhead measurements. Explain where to place `cProfile`, sampling profilers, timers, and database-query instrumentation without logging secrets or personal data. Separate CPU, I/O, lock contention, serialization, and external-service hypotheses, then rank tests by information gained and operational risk. Return a short experiment plan, commands or code snippets, an evidence table, and optimization decision rules. Include a rollback boundary for every proposed change. Self-check by confirming that each recommendation has a measurable hypothesis, a baseline, and a way to avoid mistaking benchmark noise for improvement.

Optional inputs: [service entry point] [latency target] [representative workload] [runtime version] [deployment constraints]

52Design a Load-Test Harness

Use when: A Python API needs a repeatable load test that reveals saturation without harming shared environments.

Open copy-ready prompt
Act as a reliability-focused Python test architect. Build a non-destructive load-testing approach for [API or worker system] with expected traffic of [rate], a peak multiplier of [multiplier], and a maximum test duration of [duration]. Define realistic scenarios, warm-up and cool-down periods, concurrency, payload boundaries, success criteria, and percentile reporting for p50, p95, and p99 latency. Show a small Locust, asyncio, or equivalent harness that uses synthetic data, timeouts, rate limits, and an explicit test-environment allowlist; never include credentials or uncontrolled production traffic. Specify which server, client, database, and queue metrics to capture. Return setup steps, scenario code, a results schema, and stop conditions. Self-check by tracing every metric to a stated hypothesis and verifying that failure leaves no persistent test data.

Optional inputs: [system under test] [safe endpoint] [traffic profile] [test environment] [success thresholds]

53Harden Retry and Timeout Policies

Use when: Intermittent downstream failures cause duplicate work, request pileups, or cascading outages in a Python application.

Open copy-ready prompt
Act as a Python distributed-systems reviewer. Analyze the integration with [downstream dependency], where calls currently use [timeout behavior] and [retry behavior]. Propose a bounded policy covering connect, read, total, and queue timeouts; retryable versus non-retryable errors; exponential backoff with jitter; idempotency keys; retry budgets; and circuit-breaking or load-shedding behavior. Account for synchronous and asynchronous clients, cancellation, partial success, and observability fields that do not contain secrets. Provide a decision table, framework-neutral pseudocode, and a staged rollout with rollback triggers. Do not assume retries improve reliability when the dependency is overloaded. Self-check by walking through timeout, 429, 5xx, malformed response, cancellation, and duplicate-submission scenarios, and state the expected user-visible outcome for each.

Optional inputs: [client library] [dependency SLA] [operation semantics] [current error samples] [maximum acceptable delay]

54Establish Structured Logging

Use when: Logs from several Python components are difficult to search, correlate, or use safely during incidents.

Open copy-ready prompt
Act as a Python observability lead standardizing logs for [service or repository]. Create a structured logging strategy using JSON output, a consistent schema, and correlation IDs across threads, processes, and asynchronous tasks. Define log levels, required fields, optional context, and a mechanism to redact PII, credentials, and secrets before emission. Provide a sample configuration for the standard `logging` module or a library like `structlog`, a middleware snippet for injecting request IDs, and a guide for developers on what to log at each level. Return the schema, code examples, and a checklist for reviewing pull requests. Self-check by verifying that the configuration prevents accidental secret leakage and that the resulting JSON is parseable by standard aggregation tools.

Optional inputs: [logging library] [web framework] [required fields] [sensitive data patterns] [log aggregator]

55Implement Graceful Shutdown

Use when: A Python application drops requests, corrupts data, or leaves connections open when terminated.

Open copy-ready prompt
Act as a Python reliability engineer fixing shutdown behavior in [application type]. Design a graceful shutdown sequence that handles SIGINT and SIGTERM signals correctly. Explain how to stop accepting new work, drain in-flight requests, flush buffers, close database connections, and release locks within a [timeout] window. Provide a robust implementation for [framework or concurrency model] that avoids deadlocks, handles cancellation exceptions, and logs the shutdown progress. Include a strategy for forceful termination if the timeout is exceeded. Return the signal-handling code, a state-transition diagram, and a test plan for verifying the shutdown sequence under load. Self-check by confirming that the code distinguishes between normal exit and timeout-driven termination, and that no resources are leaked.

Optional inputs: [application framework] [concurrency model] [critical resources] [maximum shutdown time] [deployment environment]

56Optimize Memory Usage

Use when: A Python process consumes excessive memory, triggers OOM kills, or suffers from frequent garbage collection pauses.

Open copy-ready prompt
Act as a Python memory optimization specialist investigating [application component] that processes [data volume] and currently uses [memory amount]. Develop a plan to identify memory leaks, reference cycles, and inefficient data structures. Explain how to use tools like `tracemalloc`, `objgraph`, or memory profilers to pinpoint the source. Propose strategies for reducing memory footprint, such as generators, streaming processing, `__slots__`, memory-mapped files, or specialized libraries like NumPy/Pandas for numeric data. Return a diagnostic checklist, profiling commands, a table of memory-efficient alternatives, and guidelines for tuning the garbage collector. Self-check by ensuring the proposed tools have acceptable overhead for the target environment and that the optimization strategies do not compromise correctness or significantly degrade CPU performance.

Optional inputs: [data types] [processing pattern] [current memory limit] [Python version] [acceptable profiling overhead]

57Design Health Checks and Liveness Probes

Use when: A Python service needs reliable endpoints for load balancers or orchestrators to determine its status.

Open copy-ready prompt
Act as a Python infrastructure engineer designing health checks for [service name]. Create a specification for liveness, readiness, and startup probes that accurately reflect the service's ability to handle traffic. Define what dependencies (databases, caches, downstream APIs) should be checked, how to avoid cascading failures from deep health checks, and how to cache check results to prevent denial-of-service. Provide a lightweight implementation using [web framework] that returns appropriate HTTP status codes and a JSON payload with component status. Return the endpoint design, code snippets, and configuration recommendations for [orchestrator]. Self-check by verifying that a failure in a non-critical dependency does not cause the service to be marked as completely unhealthy, and that the probes do not consume excessive resources.

Optional inputs: [web framework] [critical dependencies] [non-critical dependencies] [orchestrator] [probe timeout]

58Implement Circuit Breakers

Use when: A Python application needs to protect itself and its dependencies from cascading failures during outages.

Open copy-ready prompt
Act as a Python resilience architect introducing circuit breakers to [service name] for its calls to [downstream system]. Design a circuit breaker implementation that monitors failure rates, response times, and timeouts. Define the thresholds for opening the circuit, the cooling-off period, and the criteria for transitioning to half-open and closed states. Explain how to handle requests when the circuit is open (e.g., fallback responses, failing fast, queuing). Provide a code example using a library like `pybreaker` or a custom implementation, including metrics emission for state changes. Return the configuration parameters, integration code, and a testing strategy for simulating downstream failures. Self-check by confirming that the circuit breaker prevents resource exhaustion during an outage and recovers automatically when the dependency stabilizes.

Optional inputs: [downstream system] [failure threshold] [recovery timeout] [fallback strategy] [metrics system]

59Optimize Database Connection Pooling

Use when: A Python application experiences high latency or connection exhaustion when interacting with a database.

Open copy-ready prompt
Act as a Python database performance expert tuning connection management for [application] connecting to [database type]. Analyze the current connection strategy and propose an optimized connection pooling configuration. Explain how to size the pool based on concurrency, database limits, and query execution time. Define settings for connection timeouts, idle connection recycling, and statement timeouts. Provide a configuration example for [ORM or driver] that handles connection drops gracefully and prevents pool exhaustion. Return the recommended parameters, code snippets for pool initialization, and a list of metrics to monitor (e.g., active connections, waiting requests). Self-check by verifying that the pool size does not exceed the database's capacity and that the application can recover from temporary network partitions.

Optional inputs: [database type] [ORM or driver] [expected concurrency] [query latency] [database connection limit]

60Establish Distributed Tracing

Use when: A Python microservices architecture requires end-to-end visibility into request flows and latency bottlenecks.

Open copy-ready prompt
Act as a Python observability engineer implementing distributed tracing for [system architecture]. Design a tracing strategy using OpenTelemetry or a similar standard. Explain how to instrument [web framework], [database driver], and [HTTP client] to propagate trace context across service boundaries. Define the sampling strategy to balance visibility with overhead and storage costs. Provide code examples for initializing the tracer, creating custom spans for critical business logic, and adding relevant attributes without exposing sensitive data. Return the instrumentation plan, configuration snippets, and guidelines for developers on when to create custom spans. Self-check by confirming that the trace context is correctly propagated through asynchronous boundaries and that the sampling rate is appropriate for the expected traffic volume.

Optional inputs: [web framework] [database driver] [HTTP client] [tracing backend] [sampling rate]

7. Security, Privacy, and Safe Integrations

61Threat-Model a Python Integration

Use when: You are reviewing a Python service that exchanges data with an external API and need a practical security assessment before release.

Open copy-ready prompt
Act as a senior Python application-security engineer reviewing a service that sends customer records to a third-party API. Build a lightweight threat model covering assets, trust boundaries, data flows, plausible threats, abuse cases, and mitigations, using only the architecture and code details I provide. Prioritize authentication, authorization, transport security, input validation, logging, rate limits, dependency risk, and privacy exposure. Do not assume a permission to access systems or recommend offensive testing against live targets. Return a data-flow summary, a risk register ranked by likelihood and impact, and a verification checklist with safe test methods. Self-check that every recommendation is actionable, least-privilege oriented, and traceable to a stated threat.

Optional inputs: [Architecture notes] [Relevant Python snippets] [Data classifications] [API documentation] [Release date]

62Design Secret-Safe Configuration

Use when: You need to refactor Python configuration so credentials and sensitive settings are handled without entering source control or logs.

Open copy-ready prompt
Act as a Python platform engineer designing a secure configuration pattern for a small service deployed across local development, CI, staging, and production. Show how to load non-secret settings separately from credentials, validate required values at startup, prevent accidental logging, and support rotation without embedding keys in code. Use standard-library-friendly examples unless a dependency is genuinely justified, and clearly mark illustrative values as non-working examples. Include a recommended environment-variable or secret-manager interface, a redacted configuration example, failure behavior, and a review checklist. Do not print, request, or invent real secrets, and do not suggest committing .env files. Before finalizing, self-check that error messages reveal no secret material and that each environment has a documented least-privilege boundary.

Optional inputs: [Deployment platform] [Required settings] [Secret manager] [Existing config module] [Rotation policy]

63Validate and Sanitize Untrusted Input

Use when: A Python endpoint, CLI, or worker accepts user-controlled input and you need a defensive validation design.

Open copy-ready prompt
Act as an application-security reviewer helping harden a Python endpoint that accepts JSON containing filenames, URLs, identifiers, and free-text fields. Produce a validation design that distinguishes syntax, semantic, size, and business-rule checks, then provide concise Python examples using safe allowlists and explicit error handling. Address path traversal, unsafe URL fetching, injection into downstream queries or commands, Unicode edge cases, and denial-of-service concerns without providing exploit instructions. Explain where validation belongs and what must still be enforced by downstream services. Return a field-by-field rules table, representative safe and rejected cases, and pytest-style test ideas. Self-check that the design does not rely on client-side validation, permissive parsing, or blacklists as the primary control.

Optional inputs: [Endpoint schema] [Accepted formats] [Maximum sizes] [Downstream services] [Current validation code]

64Build Privacy-Preserving Logging

Use when: Production diagnostics require useful Python logs without exposing personal, authentication, or confidential business data.

Open copy-ready prompt
Act as a Python observability engineer creating a privacy-preserving logging plan for a web service that handles account details and payment-related metadata. Define which events should be logged, which fields must be omitted, masked, hashed, or generalized, and how correlation identifiers can support debugging without becoming personal identifiers. Provide a structured-logging example, a redaction helper with careful limitations, retention and access recommendations, and test cases that detect leakage in messages and exception paths. Keep the examples synthetic and do not reproduce sensitive values. Return the plan as a policy table followed by implementation notes and a release gate. Self-check that stack traces, request bodies, headers, and third-party responses cannot bypass the proposed redaction approach.

Optional inputs: [Framework] [Log schema] [Sensitive-field inventory] [Retention period] [Compliance requirements]

65Review Dependency and Supply-Chain Risk

Use when: You are preparing a Python dependency update and need a disciplined, non-alarmist supply-chain review.

Open copy-ready prompt
Act as a Python dependency-management specialist reviewing a proposed requirements change for a production application. Analyze the package list, version constraints, transitive dependencies, licensing notes, maintenance signals, and known vulnerability findings supplied by the team; do not claim a package is vulnerable without evidence or current verification. Recommend a reproducible installation approach, lockfile or hash strategy, update cadence, and CI checks that fail safely. Separate confirmed findings, items requiring investigation, and acceptable residual risk. Return an evidence matrix, prioritized review actions, and a small CI policy example that avoids downloading arbitrary code during tests. Self-check that recommendations distinguish development-only from runtime dependencies and do not silently replace packages or loosen version pins.

Optional inputs: [requirements files] [Lockfile] [Python version] [CI provider] [Approved package sources]

66Secure OAuth and Token Handling

Use when: A Python application must integrate with an OAuth-protected service while minimizing token exposure and privilege.

Open copy-ready prompt
Act as a Python identity-integration architect designing an OAuth 2.0 client for a service that needs narrowly scoped access to a partner API. Explain the appropriate flow for the stated application type, redirect and state protections, token storage, refresh behavior, expiration handling, scope minimization, and revocation. Provide framework-neutral pseudocode or small Python examples that never contain real credentials or tokens. Address secure callback validation, error handling, clock skew, and safe observability. Return an interaction sequence, configuration contract, threat checklist, and integration test plan using a mock provider rather than a live account. Self-check that the design does not place tokens in URLs, browser storage, source control, logs, or unencrypted persistent files, and flag decisions requiring identity or legal review.

Optional inputs: [Application type] [Provider documentation] [Required scopes] [Token store] [Callback URLs]

67Make Safe Outbound HTTP Calls

Use when: Python code calls external URLs and must reduce SSRF, resource-exhaustion, and data-leakage risk.

Open copy-ready prompt
Act as a Python network-security engineer reviewing a worker that fetches documents from customer-supplied URLs. Design a safe outbound-request policy covering URL parsing, scheme and port allowlists, DNS and redirect handling, private-network protection, connection and response limits, timeouts, retries, content-type checks, and audit logging. Use defensive pseudocode or a minimal example that is suitable for a controlled test environment; do not provide instructions for probing internal networks. Explain when a dedicated egress proxy or sandbox is preferable to application-level checks. Return a decision flow, configuration defaults with rationale, failure cases, and tests using mocked resolvers and responses. Self-check that redirects are revalidated, unbounded downloads are impossible, and sensitive headers are never forwarded to untrusted destinations.

Optional inputs: [Allowed domains] [Network topology] [Maximum response size] [HTTP library] [Proxy policy]

68Verify Webhook Authenticity

Use when: A Python service receives webhooks and needs reliable authenticity, replay, and payload-integrity controls.

Open copy-ready prompt
Act as a Python backend security specialist designing webhook verification for an endpoint receiving events from a known provider. Explain how to obtain the raw request body, verify the provider’s signature with constant-time comparison, enforce timestamp or nonce freshness, reject replays, handle key rotation, and acknowledge events safely. Provide concise framework-appropriate Python pseudocode with synthetic headers and secrets, plus guidance for idempotent processing and failure responses. Do not assume undocumented provider behavior; identify fields that must be confirmed in official documentation. Return a verification sequence, configuration checklist, and tests for altered bodies, stale signatures, duplicate event IDs, malformed headers, and rotated keys. Self-check that verification occurs before parsing or acting on the payload and that secrets never appear in logs or test fixtures.

Optional inputs: [Provider signature spec] [Framework] [Replay window] [Event identifier] [Key-rotation process]

69Handle Personal Data Minimally

Use when: A Python feature collects or transforms personal data and the team needs a privacy-by-design implementation review.

Open copy-ready prompt
Act as a privacy-minded Python architect reviewing a feature that imports contact data, enriches it, and produces internal reports. Map the data elements and processing stages, then recommend minimization, purpose limitation, access controls, retention, deletion, pseudonymization, and subject-request considerations appropriate to the stated context. Do not make a legal determination or infer consent; identify questions for qualified privacy or legal counsel. Provide a concise data inventory, processing-flow description, implementation controls, and a Python-oriented test checklist for deletion and redaction behavior. Use synthetic examples only. Self-check that every collected field has a stated purpose, that derived data is treated as potentially sensitive, and that the output clearly separates engineering controls from obligations requiring organizational review.

Optional inputs: [Data fields] [Business purpose] [User jurisdictions] [Retention rules] [Existing privacy notice]

70Integrate Safely with a Local Command

Use when: Python must invoke an approved local utility and you need to prevent command injection, privilege misuse, and accidental data exposure.

Open copy-ready prompt
Act as a Python reliability and security engineer reviewing code that invokes an approved local document-conversion utility. Design a safe integration using fixed executable paths, argument arrays, validated input paths, controlled working directories, timeouts, resource limits, least-privilege execution, and sanitized error reporting. Prefer a subprocess pattern that does not invoke a shell, and explain when a separate sandbox or queue worker is warranted. Include a small illustrative example with synthetic paths, a failure-handling table, and tests for spaces, unexpected characters, missing files, timeouts, and oversized inputs. Do not provide destructive commands, privilege escalation, or instructions for bypassing host controls. Self-check that user input cannot become an executable or option, output files remain confined, and secrets are absent from arguments and logs.

Optional inputs: [Approved utility path] [Input/output directories] [Timeout] [Resource limits] [Execution account]

8. Packaging, Tooling, and Developer Experience

71Design a Modern `pyproject.toml`

Use when: You need to convert a Python library’s scattered setup files into a clear, standards-based project configuration.

Open copy-ready prompt
Act as a senior Python packaging engineer helping maintainers modernize a small, public library currently using `setup.py`, `requirements.txt`, and ad hoc metadata. Design a complete `pyproject.toml` using a widely supported build backend, with explicit project metadata, Python version bounds, runtime dependencies, optional development dependencies, console scripts, source layout, and tool settings for formatting, linting, testing, and type checking. Preserve the library’s public import paths and explain any migration-sensitive choices. Return the file first, followed by a concise migration checklist and a table of assumptions. Do not invent dependencies or credentials. Self-check that every declared entry has a clear purpose, the build configuration is internally consistent, and the commands can be run locally without network access to private systems.

Optional inputs: [package name], [current setup files], [supported Python versions], [entry points], [preferred build backend]

72Choose a Dependency Management Strategy

Use when: A team needs a practical, reproducible way to manage application and development dependencies across local, CI, and production environments.

Open copy-ready prompt
Act as a Python platform engineer advising a team that deploys a web service from a Git repository and wants fewer “works on my machine” failures. Compare three realistic dependency workflows, such as pinned requirements with hashes, a lockfile-based manager, and a project-metadata-first approach. Evaluate them against reproducibility, contributor onboarding, security review, platform portability, upgrade effort, and compatibility with the team’s existing CI system. Recommend one strategy conditionally rather than presenting it as universal, then show a safe repository layout and representative commands using placeholder package names only. Return a decision matrix, adoption sequence, and rollback considerations. Self-check that development-only packages cannot enter the production environment accidentally and that no step assumes access to private indexes or undisclosed secrets.

Optional inputs: [application type], [deployment targets], [current dependency files], [CI provider], [private-index constraints]

73Build a Reproducible CLI Package

Use when: You are turning an internal Python script into an installable command-line tool that others can run reliably.

Open copy-ready prompt
Act as a Python developer-experience specialist converting a single-file data utility into an installable CLI named `record-audit`. Propose a `src/` layout, a typed command entry point, argument and configuration handling, meaningful exit codes, structured logging, and a testable separation between I/O and business logic. Include a minimal `pyproject.toml` excerpt, an example invocation, and a testing plan covering valid input, malformed files, missing permissions, and interrupted execution. The tool must never print credentials or full sensitive records, and it must fail without deleting or overwriting source data. Present the answer as a small directory tree followed by annotated code snippets and acceptance criteria. Self-check that the advertised command name matches the packaging metadata and that every error path has a predictable exit behavior.

Optional inputs: [script behavior], [input formats], [supported operating systems], [sensitive fields], [desired command name]

74Establish a Quality-Gated Python Toolchain

Use when: A project needs consistent formatting, linting, typing, and tests without making contributor workflows confusing or brittle.

Open copy-ready prompt
Act as a staff Python engineer creating a lightweight quality gate for a team of six contributors. Select compatible tools for formatting, linting, import hygiene, static typing, and testing, and explain why each belongs in the workflow. Provide a staged configuration for local development and CI, including commands that produce useful failure messages and a policy for handling legacy violations without hiding new defects. Use a small example configuration with generic package names, avoid pretending that any tool catches every bug, and distinguish required checks from advisory checks. Return a tool-selection rationale, configuration excerpts, a contributor quick-start, and a CI job outline. Self-check for overlapping or contradictory rules, verify that formatting is deterministic, and ensure the proposed gate does not require privileged access or expose environment variables in logs.

Optional inputs: [Python version], [repository size], [existing tools], [CI platform], [legacy violation count]

75Plan a Python Version and Dependency Upgrade

Use when: You must upgrade a supported Python version or dependency set while controlling compatibility and release risk.

Open copy-ready prompt
Act as a release engineer planning an upgrade from Python 3.10 to 3.12 for a maintained package with several transitive dependencies. Create a risk-based upgrade plan that inventories runtime support, build tooling, native extensions, deprecations, test coverage, documentation, and downstream consumers. Specify a safe order for updating constraints, running tests, inspecting changelogs, and publishing prereleases; do not claim a dependency is compatible without evidence from project metadata or a test run. Include a compatibility matrix template, stop/go criteria, and a concise release-note draft. Recommend reversible changes and isolated test environments rather than destructive commands. Self-check that the plan separates facts from assumptions, includes a path for unsupported users, and never instructs maintainers to bypass security advisories or pin around a known vulnerability without review.

Optional inputs: [current Python versions], [target version], [dependency manifest], [supported platforms], [downstream projects]

76Create a Secure Build and Release Pipeline

Use when: A Python package needs an automated release process with provenance, review controls, and minimal secret exposure.

Open copy-ready prompt
Act as a software supply-chain engineer designing a CI pipeline for publishing a Python package to a public index. Describe jobs for validation, isolated building, artifact inspection, provenance or signing where supported, approval, and publication. Use generic secret references and explain least-privilege permissions; never include real tokens, bypasses, or commands that delete releases. Show a provider-neutral YAML skeleton or pseudocode, identify where trusted publishing could replace long-lived credentials, and define what artifacts and logs should be retained. Include failure handling for a compromised build, a malformed wheel, and a failed upload. Return the pipeline outline, control table, and release checklist. Self-check that publication occurs only after tests and metadata validation pass, that secrets are masked, and that the workflow cannot silently publish from an unreviewed branch.

Optional inputs: [CI provider], [package index], [branch policy], [artifact-signing capability], [retention period]

77Improve Onboarding for a Python Repository

Use when: New contributors take too long to install, test, understand, or safely modify a Python codebase.

Open copy-ready prompt
Act as a developer-experience researcher reviewing a medium-sized Python repository whose README says only “install dependencies and run tests.” Design an onboarding journey that gets a new contributor from clone to first small change with minimal ambiguity. Specify prerequisites, environment creation, editable installation, configuration through documented non-secret examples, test commands, formatting and linting commands, architecture orientation, troubleshooting, and a first issue suitable for practice. Include a proposed README section, a checklist for maintainers, and measurable success criteria such as setup time and first-test completion. Do not assume a particular operating system or expose real environment values. Self-check that every command is explained, that failure messages have a next step, and that the onboarding path works without access to production systems or private credentials.

Optional inputs: [repository structure], [supported OSes], [current setup failures], [test command], [new-contributor profile]

78Design a Plugin Architecture and Packaging Contract

Use when: A Python application needs third-party extensions without turning discovery, compatibility, and failure handling into hidden complexity.

Open copy-ready prompt
Act as an architect designing a plugin system for a Python reporting application. Define a small, documented extension contract covering registration, configuration validation, lifecycle, error isolation, logging, version compatibility, and security boundaries. Compare explicit registration with package-entry-point discovery, then recommend one for the stated scenario and explain its trade-offs. Include a protocol or abstract interface, a sample plugin metadata entry using fictional names, a compatibility policy, and tests for discovery failure, duplicate names, malformed configuration, and plugin exceptions. Extensions must not receive secrets or unrestricted filesystem access by default. Return an architecture decision record followed by code sketches and acceptance tests. Self-check that the host can reject incompatible plugins deterministically and that a broken optional plugin cannot prevent the core application from starting.

Optional inputs: [host application], [plugin responsibilities], [configuration format], [support window], [isolation requirements]

79Establish Reproducible Documentation Examples

Use when: Documentation contains Python snippets that drift from the actual API or fail on a clean environment.

Open copy-ready prompt
Act as a documentation tooling engineer for a public Python library with tutorials, API examples, and Jupyter notebooks. Propose a system that keeps examples executable and aligned with released interfaces, using isolated environments, deterministic fixtures, and clearly labeled network-dependent cases. Define how examples are collected, tested in CI, versioned, and reported when they fail. Include a sample documentation test, a fixture policy that avoids personal data, and a triage workflow distinguishing product regressions from stale prose. Do not fabricate output values; mark illustrative output explicitly when exact results depend on runtime state. Return a workflow diagram in text, configuration fragments, and contributor guidance. Self-check that tests do not contact production services, depend on hidden credentials, or fail merely because timestamps, ordering, or machine paths differ.

Optional inputs: [documentation stack], [example types], [network restrictions], [supported versions], [known flaky examples]

80Evaluate and Roll Out a Python Developer Portal

Use when: A growing Python organization needs one discoverable place for templates, standards, commands, and service ownership information.

Open copy-ready prompt
Act as a platform product manager with strong Python experience evaluating a developer portal for ten internal Python services. Define the minimum useful portal scope: project templates, packaging conventions, local setup, CI standards, ownership, runbooks, and links to approved tooling. Separate canonical guidance from service-specific documentation, establish an ownership model, and propose a phased pilot rather than a large rewrite. Include user stories, an information architecture, a migration scorecard, and metrics for search success, setup time, stale-page rate, and contributor satisfaction. Avoid recommending a vendor without requirements evidence and do not include operational secrets or privileged procedures. Self-check that each proposed page has an owner and review cadence, that metrics are measurable, and that the pilot can be abandoned without disrupting existing repositories.

Optional inputs: [team size], [number of services], [current documentation tools], [portal constraints], [baseline onboarding metrics]

9. Machine Learning, Analytics, and Notebooks

81Build a Reproducible Experiment Notebook

Use when: You need a repeatable notebook for comparing machine-learning experiments.

Open copy-ready prompt
Act as a senior Python machine-learning engineer turning an exploratory notebook into a reproducible experiment. Using the supplied tabular dataset, create sections for assumptions, data checks, preprocessing, training, evaluation, error review, and conclusions. Compare a simple baseline with two suitable candidates without leakage. Load data through explicit relative paths, record package versions, dimensions, random seeds, and metrics, and export a compact results table. Keep configuration separate from code and avoid credentials or unauthorized external access. Self-check by running from a clean kernel in order, confirming every transformation is fitted only on training data, and labeling nondeterministic steps and tentative conclusions.

Optional inputs: [dataset path] [target column] [metric] [Python version] [candidate models] [execution environment]

82Diagnose Data Leakage

Use when: Validation performance appears implausibly strong.

Open copy-ready prompt
Act as a machine-learning auditor reviewing a scikit-learn pipeline with unusually high validation results. Inspect feature descriptions, timestamps, split logic, target construction, preprocessing, duplicate entities, and post-outcome fields. Design tests for direct, temporal, group-based, and preprocessing leakage, then rebuild evaluation with grouped or time-aware splitting when justified. Return a finding table containing evidence, severity, affected metric, remediation, and residual uncertainty, followed by corrected Python code. Do not tune decisions on the final test set. Self-check that each transformation is fitted inside its training boundary, no future field enters features, and every claimed defect is demonstrated by a reproducible comparison rather than suspicion alone.

Optional inputs: [schema] [current notebook] [event timestamp] [entity ID] [target definition] [reported score]

83Create a Time-Series Forecast Notebook

Use when: You need a chronological forecast with defensible backtesting.

Open copy-ready prompt
Act as a Python forecasting specialist building a notebook for weekly demand data. Check frequency, missing periods, duplicate timestamps, outliers, seasonality, and definition changes, documenting each decision. Establish a seasonal-naive baseline and compare two suitable methods using rolling-origin backtesting, not random splitting. Report MAE and one scale-aware metric, show residual diagnostics, and produce forecast intervals when supported. Keep future covariates separate from information unavailable at prediction time. Organize the output as data audit, methods, backtest table, forecast chart, assumptions, and limitations. Self-check that timestamps remain ordered, every training window precedes evaluation, units and horizon appear on charts, and conclusions do not exceed observed evidence.

Optional inputs: [CSV path] [timestamp column] [demand column] [horizon] [seasonality] [calendar]

84Evaluate Imbalanced Classification

Use when: Accuracy hides performance on a rare positive class.

Open copy-ready prompt
Act as a responsible applied-ML engineer evaluating a binary classifier for a rare-event use case. Profile prevalence and label quality, then compare a baseline with two models using stratified cross-validation. Report precision, recall, F1, PR-AUC, ROC-AUC, confusion matrices, alert volume, and probability calibration where appropriate. Discuss false-positive and false-negative costs without making an unsupported operational decision, and explain how an authorized owner should select a threshold. Keep class weighting or resampling inside each training fold. Return methods, results, error analysis, limitations, and approval questions. Self-check that metrics use untouched validation data, the threshold is not optimized on the final test set, and small classes are interpreted cautiously.

Optional inputs: [features] [label] [positive rate] [error costs] [validation strategy] [threshold policy]

85Analyze Customer Segments

Use when: You need exploratory clusters that are interpretable and not treated as proven customer types.

Open copy-ready prompt
Act as a Python data scientist conducting exploratory segmentation for a retail dataset. Audit identifiers, missingness, extreme values, duplicate customers, and observation windows before selecting behavior-based features. Explain scaling and transformations, compare two clustering methods or parameter settings, and use internal diagnostics plus stability checks across resamples. Profile each segment with robust summaries, sample sizes, and distinguishing features; do not invent motivations or stereotypes. Include a dimensionality-reduction plot with honest limitations and a plan for external validation. Return notebook code, diagnostics, profiles, and caveats. Self-check that identifiers and target-like outcomes are excluded, segment labels are not treated as causal findings, and every interpretation is tied to the stated time window.

Optional inputs: [customer data] [entity key] [features] [analysis window] [cluster counts] [profiling metrics]

86Build a Leakage-Safe Feature Pipeline

Use when: A tabular model needs engineered features without sacrificing maintainability.

Open copy-ready prompt
Act as a senior Python feature-engineering reviewer. Given the schema and prediction timestamp, propose features covering aggregations, categorical encodings, date logic, and missingness indicators, distinguishing fields available before prediction from post-outcome data. Implement transformations with reusable scikit-learn components or a custom transformer, and place feature selection inside cross-validation. Compare baseline and engineered pipelines with the requested metric, then produce a feature dictionary listing source, logic, availability, type, and failure modes. Avoid unnecessary complexity and do not claim importance proves causation. Return code, tests, metrics, and assumptions. Self-check using an unseen schema sample with nulls and new categories, and identify decisions requiring data-owner confirmation.

Optional inputs: [schema] [prediction time] [target] [baseline] [metric] [sample rows]

87Explain Predictions Responsibly

Use when: Stakeholders need model explanations without mistaking association for causation.

Open copy-ready prompt
Act as an ML interpretability specialist preparing a Python notebook for technical and nontechnical reviewers. For the supplied fitted model and evaluation sample, generate global and selected local explanations using methods compatible with the model and data type. Explain what each method measures, how correlated features affect interpretation, and why attribution is not causal evidence. Include performance metrics, approved subgroup checks, privacy-safe exports, and examples of plausible versus misleading conclusions. Structure the deliverable as methods, findings, caveats, and review questions rather than advocacy. Return code and captioned figures. Self-check that explanations use the inference preprocessing pipeline, every highlighted feature exists in the model input, sensitive records are not exported, and language does not overstate certainty or operational suitability.

Optional inputs: [model artifact] [preprocessor] [evaluation data] [model type] [subgroups] [privacy policy]

88Refactor a Notebook into Tested Python

Use when: Notebook logic should become reusable, reviewable, and testable.

Open copy-ready prompt
Act as a Python analytics engineer refactoring a supplied notebook into a small package without changing documented behavior. Identify pure transformations, I/O boundaries, configuration, plotting responsibilities, and public functions, then propose a clear project structure with typed signatures and docstrings. Add pytest tests for normal inputs, empty data, missing columns, duplicate keys, nulls, and timezone-aware timestamps. Preserve a thin demonstration notebook and keep paths configurable. Do not embed credentials, machine-specific absolute paths, destructive operations, or hidden downloads. Return structure, implementation snippets, tests, and migration notes. Self-check by tracing one notebook result from fixture input to assertion, documenting unverified behavior, and confirming the refactored code runs from a clean environment.

Optional inputs: [notebook] [project directory] [Python version] [expected outputs] [data contract] [test framework]

89Design a Privacy-Aware Analytics Notebook

Use when: Sensitive records must be explored while minimizing exposure.

Open copy-ready prompt
Act as a privacy-conscious Python data analyst working with sensitive operational records. Begin with purpose limitation, approved columns, access assumptions, retention expectations, and a de-identification plan; do not request or reproduce unnecessary personal data. Implement profiling with counts, null rates, ranges, and aggregate summaries, suppressing or generalizing small groups according to policy. Keep raw values out of logs, plots, notebook outputs, and exception messages. Explain which analyses become impossible after masking and where qualified privacy, security, or legal review is required. Return notebook structure, safe code, provenance notes, and limitations. Self-check on a synthetic fixture, confirm no credentials or raw identifiers are embedded, and label every result as aggregate, synthetic, or approved real-data evidence.

Optional inputs: [approved schema] [synthetic fixture] [privacy policy] [minimum group size] [retention period] [review contact]

90Benchmark an Analytics Pipeline

Use when: A pandas workflow works on samples but may fail at larger scale.

Open copy-ready prompt
Act as a Python performance engineer assessing an analytics pipeline before larger-scale use. Reproduce the workflow on a representative, non-sensitive fixture and benchmark loading, joins, grouping, feature creation, and export separately. Capture wall time, peak memory, row counts, and output equivalence with a repeatable harness; distinguish measurement noise from meaningful regressions. Recommend the least complex improvements first, such as column projection, suitable dtypes, chunked reads, indexed joins, or vectorization, and explain when a database should be evaluated instead. Return profiling results, revised snippets, benchmark tables, and limitations. Self-check that optimized output matches the reference within declared tolerances, identical inputs and warm-up rules are used, and sensitive data or credentials never enter logs.

Optional inputs: [pipeline code] [fixture generator] [input size] [memory limit] [runtime target] [numeric tolerance]

10. Delivery, Documentation, and Technical Leadership

91Production Handoff Package

Use when: A Python service is moving from development to an operations team that needs a dependable handoff.

Open copy-ready prompt
Act as a senior Python engineer preparing a production handoff for a small API service. Review the supplied architecture notes, repository summary, configuration list, and known limitations, then create a handoff package in four parts: service overview, deployment prerequisites, operational runbook, and open risks. Explain how to start, stop, monitor, troubleshoot, and roll back the service without exposing secrets or prescribing destructive commands. Distinguish verified facts from assumptions and identify missing evidence. Include a readiness checklist with owners and acceptance criteria. Before finalizing, check that every operational step is reversible or explicitly marked as requiring approval, and that environment-specific values are represented safely rather than copied into the document.

Optional inputs: [repository summary] [runtime and hosting environment] [monitoring tools] [known incidents] [approved rollback method]

92Python API Documentation Review

Use when: Existing API documentation is inconsistent, incomplete, or difficult for another developer to use correctly.

Open copy-ready prompt
Act as a documentation-focused Python API maintainer. Transform the provided modules, public function signatures, type hints, examples, and error behavior into a concise developer guide. Organize the result into installation assumptions, quick start, public API reference, common workflows, failure handling, and compatibility notes. Use accurate examples that do not invent parameters, return values, performance claims, or external integrations. Flag undocumented behavior instead of silently filling gaps, and separate public interfaces from internal helpers. Recommend docstring or typing improvements only when they are supported by the supplied code. Self-check every example against the stated signatures, verify that exceptions are described consistently, and list any sections that require a code review before publication.

Optional inputs: [Python files] [package version] [supported Python versions] [existing README] [example use cases]

93Release Notes and Migration Guide

Use when: A Python library or service has a meaningful release that requires users to understand changes and migration work.

Open copy-ready prompt
Act as a Python release manager with strong engineering judgment. Using the supplied commit summary, issue list, changelog fragments, and before-and-after interfaces, write publication-ready release notes followed by a practical migration guide. Classify changes as added, changed, deprecated, fixed, or potentially breaking, and explain user impact in plain language. Include version requirements, migration steps, validation checks, and a rollback or pinning strategy that avoids destructive actions. Do not claim fixes, security improvements, or compatibility guarantees unless the evidence supports them. Call out unresolved ambiguity for maintainers. Before delivering, compare each statement with the supplied change record, ensure code snippets use the correct syntax, and confirm that breaking changes are clearly labeled rather than buried in prose.

Optional inputs: [current version] [target version] [commit or issue summary] [interface diff] [support policy]

94Test Strategy for Delivery Confidence

Use when: A Python team needs a risk-based test plan before releasing a feature or service.

Open copy-ready prompt
Act as a Python quality lead designing a release test strategy for the described feature. Analyze the requirements, existing tests, dependencies, data flows, and known failure modes, then produce a prioritized plan covering unit, integration, contract, end-to-end, regression, and operational checks. For each test area, state its purpose, representative scenarios, fixtures or safe test data, expected evidence, and release gate. Include cases for invalid input, timeouts, retries, observability, and backwards compatibility where relevant. Keep all examples non-destructive and prohibit the use of production secrets or personal data. Identify risks that cannot be validated from the supplied material. Self-check that every stated requirement maps to at least one verification method and that no gate depends on an unowned activity.

Optional inputs: [feature requirements] [existing test inventory] [dependency map] [risk register] [release schedule]

95Incident Retrospective Facilitation

Use when: A Python production incident has ended and the team needs a blameless, evidence-based retrospective.

Open copy-ready prompt
Act as an experienced incident facilitator for a Python platform team. Convert the supplied timeline, alerts, logs summary, user impact, decisions, and recovery notes into a blameless retrospective document. Structure it as incident synopsis, impact, timeline, contributing conditions, detection and response analysis, what helped, what hindered, and prioritized follow-up actions. Distinguish observed facts from hypotheses, avoid naming individuals as causes, and avoid reproducing credentials, tokens, private data, or sensitive customer details. Assign actions by outcome and owner role, with measurable completion criteria and review dates. Do not infer root cause beyond the evidence. Before finalizing, check chronological consistency, ensure customer impact is stated without exaggeration, and verify that every proposed action addresses a documented weakness.

Optional inputs: [incident timeline] [alert excerpts] [impact metrics] [recovery steps] [action owners]

96Architecture Decision Record

Use when: A Python project needs a durable record explaining an important technical choice and its trade-offs.

Open copy-ready prompt
Act as a principal Python architect writing an architecture decision record for the supplied design question. Present the context, decision drivers, considered alternatives, selected approach, consequences, risks, and revisit conditions. Address maintainability, testing, performance, security, operability, team capability, and migration cost without inventing measurements. Make assumptions explicit and distinguish constraints from preferences. Include a compact comparison table and a decision-review checklist that another engineer can apply later. Keep examples generic and never include secrets, unauthorized access techniques, or destructive migration instructions. Self-check that the chosen approach follows from the stated drivers, that each rejected alternative has a fair rationale, and that unresolved questions are listed as questions rather than disguised conclusions.

Optional inputs: [design question] [current architecture] [constraints] [alternatives] [known measurements] [review date]

97Mentoring Plan for Python Engineers

Use when: A technical lead needs a structured, fair development plan for an engineer working on Python delivery practices.

Open copy-ready prompt
Act as an inclusive Python engineering mentor creating a twelve-week development plan from the supplied role expectations, self-assessment, project context, and feedback. Define three to five observable learning outcomes, sequenced practice activities, appropriate review opportunities, resources, and evidence of progress. Balance coding, testing, documentation, debugging, communication, and delivery ownership without making assumptions about personal background or protected characteristics. Include weekly checkpoints, a feedback rubric, and a plan for adjusting scope when project priorities change. Frame the document as developmental rather than disciplinary, preserve confidential details, and recommend qualified HR review if it will affect formal performance decisions. Before finalizing, check that each outcome is measurable, feasible within the stated capacity, and evaluated using behaviors or artifacts rather than personality judgments.

Optional inputs: [role expectations] [self-assessment] [recent feedback] [available mentoring time] [target project]

98Code Review Standards and Checklist

Use when: A Python team wants consistent, efficient code reviews without turning review into a style-only exercise.

Open copy-ready prompt
Act as a Python staff engineer establishing a lightweight code review standard for a cross-functional team. Write a policy that explains reviewer responsibilities, author preparation, review scope, severity labels, response etiquette, and escalation paths. Provide a checklist covering correctness, tests, error handling, typing, security, performance, observability, documentation, compatibility, and maintainability. Separate blocking concerns from suggestions, and include examples of constructive comments that focus on code and evidence. Do not require reviewers to approve unsafe behavior, expose secrets, or bypass ownership controls. Tailor the standard to the supplied repository conventions and delivery risks. Self-check that the checklist is practical for small pull requests, that every blocking criterion is objectively testable, and that style guidance defers to automated tooling where possible.

Optional inputs: [repository conventions] [branch policy] [CI checks] [team size] [common review defects]

99Technical Roadmap and Dependency Plan

Use when: A Python product team must turn delivery goals into a sequenced, dependency-aware technical roadmap.

Open copy-ready prompt
Act as a Python engineering manager translating the supplied product goals, technical debt inventory, reliability concerns, staffing capacity, and deadlines into a six-month technical roadmap. Organize initiatives by outcome, sequencing, dependencies, estimated effort bands, risk, decision owner, and evidence of completion. Identify enabling work such as tests, observability, documentation, or upgrade preparation, and distinguish commitments from exploratory options. Avoid false precision and do not promise business results that the inputs cannot support. Include a capacity-aware quarterly view, dependency risks, and a review cadence for changing assumptions. Before finalizing, check that every initiative has a measurable engineering outcome, that sequencing respects prerequisites, and that the plan contains no hidden reliance on unapproved access, secrets, or destructive changes.

Optional inputs: [product goals] [technical debt list] [team capacity] [deadlines] [dependency constraints] [reliability targets]

100Executive Technical Briefing

Use when: Engineering leadership must explain a Python delivery decision to non-specialist stakeholders clearly and responsibly.

Open copy-ready prompt
Act as a senior Python technology leader preparing a decision brief for executives and partner teams. Use the supplied project status, delivery metrics, architecture summary, risks, options, and requested decision to produce a two-page briefing with executive summary, current state, business-relevant impact, options and trade-offs, recommendation boundaries, delivery implications, and decisions needed. Translate technical language without hiding uncertainty, and label estimates, assumptions, and evidence separately. Do not fabricate metrics, customer outcomes, compliance claims, or dates; do not provide personalized financial or legal advice. Include a short appendix of technical details for reviewers. Self-check every number against the inputs, ensure the recommendation is conditional on stated evidence, and verify that risks include owners and practical mitigation or escalation paths.

Optional inputs: [project status] [delivery metrics] [architecture summary] [options] [known risks] [decision deadline]

Responsible use

Verify generated code in an appropriate environment, avoid sharing secrets or sensitive data, and maintain human review of security- and production-critical changes.

Prompts and Agents

Ruby Programming AI Prompts

Use 100 detailed, copy-ready prompts to support Ruby and Rails development, from language fluency and architecture through operations, modernization, and technical leadership.

How to use these prompts

Replace bracketed placeholders with project context, provide relevant code or evidence where requested, and test recommendations before applying changes in a shared or production environment.

1. Ruby Language Fluency and Debugging

1Reading Ruby Idioms Without Guessing

Use when: You need to understand unfamiliar Ruby code before changing its behavior.

Open copy-ready prompt
Act as a senior Ruby maintainer reviewing a small service object that uses blocks, implicit returns, keyword arguments, and safe navigation. Explain the code’s execution flow in plain language, then annotate each potentially surprising expression with its value, receiver, and control-flow effect. Identify any behavior that depends on Ruby version or project conventions, but do not invent missing context. Propose a clearer equivalent only where readability would materially improve, preserving public behavior. Present the response as an annotated walkthrough followed by a “safe refactors” table with risk levels. Finish by checking your explanation against at least three concrete input cases and explicitly flagging anything that cannot be proven from the excerpt.

Optional inputs: [Ruby version] [Code excerpt] [Expected behavior] [Project style guide]

2Isolating a Failing Test

Use when: A Ruby test fails intermittently or produces too much output to diagnose efficiently.

Open copy-ready prompt
Act as a test-driven Ruby developer investigating a failing RSpec example. Given the test, relevant implementation, failure output, and any reproduction notes, reduce the problem to the smallest deterministic reproduction without weakening the assertion. Separate likely causes into setup, data, timing, dependency, and implementation categories. Recommend narrowly scoped diagnostic edits, such as controlled seeds, explicit time, or focused logging, while avoiding secrets and unrelated production changes. Provide: a reproduction checklist, a revised minimal test, hypotheses ranked by evidence, and the smallest candidate fix. Do not claim certainty where the evidence is incomplete. Self-check that the proposed test still fails for the original defect and passes for the intended behavior.

Optional inputs: [RSpec example] [Failure trace] [Ruby version] [Reproduction frequency] [Fixtures or factories]

3Debugging Exceptions at the Boundary

Use when: An exception crosses a Ruby application boundary and its original cause is obscured.

Open copy-ready prompt
Act as a Ruby platform engineer debugging an exception flowing through a controller, job, or command-line boundary. Trace how the error should move from the lowest failing operation to the user-facing response, distinguishing rescue scope, exception wrapping, retries, and logging. Recommend a repair that preserves the original cause, gives users an actionable but non-sensitive message, and records useful structured context without credentials or personal data. Include a before-and-after code example, an exception-flow diagram in text, and tests for the original exception, wrapped exception, and unexpected exception. Address whether the boundary should retry or fail fast. Verify that your solution does not silently swallow errors or expose stack traces in a public response.

Optional inputs: [Boundary type] [Current code] [Exception class] [Log policy] [Expected response]

4Choosing Enumerable Methods Precisely

Use when: A Ruby collection pipeline is correct-looking but returns the wrong shape, count, or side effects.

Open copy-ready prompt
Act as a Ruby code reviewer evaluating a collection transformation that chains methods such as map, select, filter_map, flat_map, each_with_object, and reduce. Explain the intended data shape after every stage, then identify where the implementation diverges from that intention. Rewrite the pipeline using the clearest idiomatic method, preserving ordering and handling nil or empty inputs explicitly. Compare readability, allocation behavior, and mutation risk without making unsupported performance promises. Structure the answer as: data-shape trace, defect diagnosis, corrected code, alternative implementation, and focused tests. Include examples for an empty collection, duplicate values, and one malformed element. Self-check that the final result has the documented element type and that no accumulator is accidentally shared between calls.

Optional inputs: [Collection sample] [Desired output] [Current pipeline] [Nil-handling policy] [Performance concern]

5Making Metaprogramming Explainable

Use when: Dynamic Ruby behavior makes a class difficult to inspect, test, or safely maintain.

Open copy-ready prompt
Act as a Ruby library maintainer reviewing a class that uses define_method, method_missing, const_get, or dynamic attribute creation. Explain exactly which methods and constants exist at runtime, which calls are intercepted, and how introspection and error messages behave. Identify hidden coupling and propose the least magical design that preserves the required API, preferring explicit methods or a narrow registry when practical. Supply a behavior matrix covering valid calls, unknown calls, nil values, and malformed names. Include a refactored code sample and tests for public behavior and useful failure messages. Do not recommend broad evaluation or dynamic loading of untrusted input. Self-check that the refactor preserves method visibility, avoids recursion in method_missing, and fails safely for unsupported names.

Optional inputs: [Class definition] [Supported dynamic names] [Public API] [Ruby version] [Security constraints]

6Diagnosing State and Mutation Bugs

Use when: A Ruby object changes unexpectedly between calls, examples, or threads.

Open copy-ready prompt
Act as a senior Ruby engineer diagnosing an unexpected mutation bug in a model, value object, or service. Track ownership of every mutable array, hash, string, and nested object in the supplied code, distinguishing shallow duplication, deep duplication, freezing, and intentional mutation. Explain the smallest change that restores clear ownership without creating needless complexity. Provide a timeline of the mutation, a corrected implementation, and regression tests that prove callers cannot accidentally alter internal state. Discuss thread safety only when the code demonstrates shared concurrent access; otherwise state what evidence is missing. Avoid suggesting global monkey patches. Self-check with two independent instances, nested data, and repeated calls, and confirm that the fix preserves expected equality and serialization behavior.

Optional inputs: [Class or method] [Observed mutation] [Object samples] [Concurrency context] [Serialization contract]

7Handling Time and Time Zones Correctly

Use when: Ruby date or time logic fails around zones, daylight-saving changes, or boundary conditions.

Open copy-ready prompt
Act as a Ruby application engineer reviewing code that schedules, compares, or displays timestamps. Separate instants from calendar dates and local wall-clock times, then identify assumptions about time zones, parsing, persistence, and daylight-saving transitions. Recommend a correction using the project’s existing time library where possible, without silently changing stored data. Show the intended behavior for a normal timestamp, a zone conversion, a date boundary, and an ambiguous or skipped local time. Return a concise diagnosis, revised code, a table of edge cases, and tests with controlled time rather than the system clock. State which requirements need product confirmation. Self-check that comparisons use a consistent reference frame and that display formatting does not alter the underlying instant.

Optional inputs: [Current code] [Ruby or framework version] [Storage format] [Business time zone] [Expected examples]

8Improving Error Messages and Contracts

Use when: A Ruby method fails correctly but leaves callers unable to understand or recover from the problem.

Open copy-ready prompt
Act as an API-focused Ruby maintainer improving a method whose inputs, return value, and failures are poorly documented. Infer only contracts supported by the code and examples; list unanswered questions separately. Define accepted types and ranges, nil behavior, return semantics, and exception classes without overloading one exception for unrelated failures. Rewrite the method with a clear guard structure and helpful messages that exclude secrets and sensitive values. Provide a short contract specification, implementation, caller guidance, and tests for valid, invalid, boundary, and already-processed inputs. Consider whether a result object is safer than exceptions, but choose one approach and explain why. Self-check that every documented failure path is tested and that the method does not partially mutate state before rejecting input.

Optional inputs: [Method code] [Call sites] [Existing errors] [Input examples] [Compatibility requirements]

9Finding a Regression with Git Bisect Logic

Use when: A Ruby behavior worked previously, but the introducing change is unclear.

Open copy-ready prompt
Act as a Ruby release engineer planning a disciplined regression investigation. Given a known-good revision, known-bad revision, failing command, and environment details, design a repeatable test harness suitable for automated git bisect. Keep the check isolated, deterministic, and safe: do not deploy, delete data, access unauthorized systems, or print credentials. Explain how to classify pass, fail, and untestable revisions, including dependency-installation failures and unrelated environmental errors. Provide the harness, invocation steps, an evidence log template, and criteria for confirming the culprit after bisect completes. If the failure may depend on external services, propose a local substitute or clearly mark the limitation. Self-check that the harness tests the regression rather than merely matching a brittle error string.

Optional inputs: [Good revision] [Bad revision] [Failing command] [Lockfile state] [Environment constraints]

10Reviewing Ruby Performance Evidence

Use when: A Ruby method is suspected of being slow and needs evidence-based optimization.

Open copy-ready prompt
Act as a Ruby performance reviewer assessing a reported slowdown in a specific method. Establish a baseline before proposing changes, separating algorithmic cost, allocations, database or I/O latency, garbage collection, and measurement noise. Use representative inputs and a repeatable benchmark plan; do not fabricate numbers or promise a speedup without measurements. Recommend at most three targeted changes, explaining their trade-offs in readability, memory, compatibility, and correctness. Return a diagnosis, benchmark script or procedure, results table template, prioritized experiments, and a correctness-test plan. Avoid micro-optimizations unsupported by profiling and do not expose production data or secrets. Self-check that the benchmark warms up appropriately, compares equivalent outputs, includes small and large inputs, and distinguishes local results from production conclusions.

Optional inputs: [Method code] [Input-size distribution] [Observed latency] [Ruby version] [Profiler or benchmark output]

2. Object Design, Refactoring, and Patterns

11Extract a Cohesive Domain Object

Use when: A Ruby service object mixes validation, pricing, persistence, and notifications.

Open copy-ready prompt
Act as a senior Ruby designer reviewing a `CheckoutService` that validates a cart, calculates discounts, reserves inventory, saves an order, and emails the customer. Propose a behavior-preserving refactoring into cohesive domain objects. Show responsibilities, Ruby interfaces, collaboration flow, migration steps, and a unit/integration test split. Keep transaction boundaries explicit, avoid undocumented models, and keep external effects visible. Use synthetic data only; never include credentials or live endpoints. Return an annotated design followed by representative code. Self-check that each object has one clear reason to change, dependencies point in one direction, and no circular collaboration is introduced.

Optional inputs: [service code] [domain rules] [persistence boundary] [existing tests]

12Replace Conditionals with Strategy Objects

Use when: A growing Ruby `case` statement selects among several algorithms.

Open copy-ready prompt
Act as a Ruby architect improving a `ShippingQuote` component whose conditional handles parcel, express, freight, and pickup rules. Replace it with explicit Strategy objects so a new carrier does not require editing a central decision method. Include the strategy contract, concrete implementations, a safe registry, dependency injection, compatibility for symbol-based callers, and invalid-option behavior. Keep units and currency assumptions visible. Return a rationale, Ruby code, and a focused test matrix. Do not invent carrier rules or expose configuration secrets. Self-check that every strategy is substitutable, selection is independently testable, and unsupported carriers fail predictably rather than silently using a default.

Optional inputs: [conditional code] [carrier rules] [currency convention] [error policy]

13Refactor a God Object Safely

Use when: A large Ruby class contains unrelated responsibilities and must improve without a risky rewrite.

Open copy-ready prompt
Act as a staff Ruby engineer refactoring a 900-line `Account` class responsible for billing, profile updates, fraud checks, reporting, and audit logging. Explain how to capture current behavior with characterization tests, including seams for time, randomness, networks, and persistence. Propose small extractions that preserve the public API, show one before-and-after change, and list behavior-drift risks. Do not invent business rules or recommend a wholesale rewrite. Return baseline, incremental plan, code sample, and verification checklist. Use synthetic fixtures and no customer data. Self-check that each step is reviewable and reversible, and that tests protect behavior rather than private class structure.

Optional inputs: [class source] [public API] [test suite] [external dependencies]

14Model State Transitions Explicitly

Use when: A Ruby workflow uses scattered booleans to represent lifecycle state.

Open copy-ready prompt
Act as a Ruby domain-modeling specialist. Redesign an order workflow represented by `paid`, `packed`, `shipped`, `cancelled`, and `refunded` flags. Use an explicit state model or transition object to define legal transitions, rejected transitions, persistence representation, and side-effect boundaries. Include a transition table, plain Ruby implementation, and tests for happy paths, illegal paths, duplicate requests, and conceptual concurrent updates. Do not assert rules the prompt does not supply; label assumptions. Return rationale, code, and verification cases. Self-check that impossible combinations cannot be created through the public API and that side effects occur only after an accepted durable transition.

Optional inputs: [current flags] [allowed transitions] [persistence schema] [side effects]

15Introduce a Money Value Object

Use when: Ruby financial code passes amounts as unlabelled floats or strings.

Open copy-ready prompt
Act as a Ruby engineer designing reliable domain objects. Create a `Money` value object that stores amount and currency together, rejects arithmetic across currencies, and applies an explicit rounding policy. Specify immutability, equality, hashing, serialization, invalid input, and percentage calculation. Provide idiomatic Ruby code, invoice-total usage, and tests for mismatch, negative values, rounding boundaries, and JSON output. Avoid tax advice and do not rely on a gem without explaining the boundary. Return invariants, implementation, usage, and tests. Self-check that arithmetic cannot silently mix currencies, mutate existing values, or hide the chosen precision convention.

Optional inputs: [currencies] [minor-unit rules] [rounding mode] [serialization format]

16Compose Decorators Safely

Use when: A Ruby notification sender needs optional logging, metrics, redaction, and bounded retries.

Open copy-ready prompt
Act as a senior Ruby developer designing a notification pipeline. Define a small `Notifier` contract, then implement decorators for structured logging, metrics, redaction, and bounded retry behavior. Explain ordering, failure propagation, and the composition root. Keep provider credentials outside source code and prevent private message content from entering logs. Include a composition example and tests using a fake notifier, with explicit assumptions about retryable errors. Return contract, decorators, assembly, and verification sections. Self-check that every decorator preserves the interface, has one responsibility, cannot expose secrets, and does not transform an ordinary failure into a misleading success.

Optional inputs: [message schema] [provider contract] [retryable errors] [redaction rules]

17Replace Callback Orchestration

Use when: Implicit Ruby callbacks trigger external effects that are surprising or hard to test.

Open copy-ready prompt
Act as a Rails-oriented Ruby refactoring consultant. Review a `Subscription` model whose callbacks normalize input, charge a card, provision access, enqueue email, and write an audit entry. Keep pure normalization near the model, but move orchestration and external effects into an explicit application service or command. Show call flow, transaction and job boundaries, failure semantics, migration safeguards, and tests for success, validation failure, provider failure, and retries. Do not assume a payment provider or expose credentials. Return diagnosis, target design, code, and rollout checks. Self-check that callers can see what triggers each effect and every externally visible action has an idempotency strategy.

Optional inputs: [callbacks] [database behavior] [job system] [payment contract]

18Choose Composition over Inheritance

Use when: Ruby classes vary across several independent dimensions and inheritance is becoming fragile.

Open copy-ready prompt
Act as a pragmatic Ruby object-design reviewer. Compare inheritance, modules, and composition for reports that vary by format, delivery channel, and signing. Recommend a design that permits a new delivery channel without cloning report logic. Include a responsibility map, small Ruby implementation, two alternatives with trade-offs, and tests showing independent variation. Discuss substitutability, construction, and test seams without presenting one pattern as universal. Use framework-neutral code and synthetic data. Return a decision record, code, and tests. Self-check that format, delivery, and signing do not create an inheritance explosion, ambiguous ownership, or hidden shared mutable state.

Optional inputs: [class tree] [variation axes] [construction constraints] [new feature]

19Adapt a Legacy Ruby API

Use when: New Ruby code must use a legacy client with incompatible naming, hashes, and exceptions.

Open copy-ready prompt
Act as a Ruby integration architect. Design an adapter around a `LegacyCrmClient` exposing `push_contact`, `lookup_by_ref`, and `remove_person`, with inconsistent response keys and provider-specific exceptions. Define a stable `ContactGateway`, translate results into a small domain representation, and map failures into documented application errors. Include adapter code, a fake gateway, contract tests, and a replacement plan that hides the legacy client from callers. Explain missing records, malformed responses, timeouts, and retry decisions. Use injected configuration and never embed tokens or real identifiers. Return mapping table, code sketch, and tests. Self-check that callers depend only on the stable interface and the fake detects contract drift.

Optional inputs: [legacy signatures] [response samples] [exception list] [domain fields]

20Establish a Refactoring Review Rubric

Use when: A Ruby team needs consistent criteria for evaluating object-design changes before merging.

Open copy-ready prompt
Act as a principal Ruby reviewer creating a practical pull-request rubric for refactoring classes, introducing patterns, or reorganizing domain logic. Cover responsibility boundaries, public contracts, dependency direction, naming, test design, error behavior, performance risk, observability, migration safety, and privacy. For each criterion, define strong evidence and one warning sign. Apply the rubric to extracting `ReportExporter` from a controller and recommend approve, request changes, or defer using only stated evidence. Return a Markdown table, sample review comments, and final checklist. Self-check that every criterion is observable in the diff or tests, style preferences are separated from correctness, and the rubric does not reward abstraction for its own sake.

Optional inputs: [team conventions] [pull request] [Ruby version] [review time limit]

3. Rails Models, Data, and Background Jobs

21Design a resilient order domain model

Use when: You need to model orders, line items, payments, and fulfillment without allowing inconsistent state transitions.

Open copy-ready prompt
Act as a senior Rails domain architect advising a team building a subscription commerce platform. Design an Active Record model layer for orders, line items, payments, shipments, and refunds, including associations, database constraints, enums or state-transition guidance, indexes, and transaction boundaries. Account for retries, partial refunds, soft deletion only where justified, and historical auditability. Assume PostgreSQL and Rails 7.2, and prefer database-enforced invariants over callback magic. Return a concise domain diagram in Mermaid, model skeletons, migration excerpts, and a table explaining each invariant. Include a test plan covering valid transitions, concurrency, and failed transactions. Self-check that every critical business rule has both an application-level and database-level safeguard, or clearly explain why not.

Optional inputs: [Order states] [Currency rules] [Fulfillment providers] [Audit requirements]

22Plan a safe legacy-schema migration

Use when: A Rails application must evolve a heavily used table with minimal downtime and reversible deployment steps.

Open copy-ready prompt
Work as a staff Rails engineer planning a zero-downtime migration for a production `customers` table containing 80 million rows. The team must split a nullable `full_name` column into `given_name` and `family_name`, while old and new application versions run concurrently during a rolling deploy. Provide a phased expand-migrate-contract plan for PostgreSQL, including migration code, batching strategy, throttling, indexes, backfill observability, rollback boundaries, and the final cleanup criteria. Do not recommend locking operations that could block normal traffic, and do not invent measured timings. Present the answer as a deployment runbook with prerequisites, commands to review, verification queries, and abort signals. Self-check for compatibility between each intermediate schema and both application versions.

Optional inputs: [Database version] [Traffic profile] [Maintenance constraints] [Existing column semantics]

23Diagnose an N+1 query regression

Use when: A Rails endpoint has slowed after a feature added nested associations and conditional rendering.

Open copy-ready prompt
Act as a Rails performance specialist reviewing an index endpoint that lists projects, owners, tasks, and the latest task comment. Explain how to investigate an alleged N+1 regression using logs, query annotations, development tooling, and representative production-like data. Then propose a corrected query strategy using appropriate `includes`, `preload`, or `eager_load` choices, while warning about row multiplication and unnecessary object loading. Show an example controller or query object, view access pattern, and request-level performance test. Distinguish query count from total database time, and identify cases where a counter cache or separate read model would be preferable. Return findings, recommended code, trade-offs, and a verification checklist. Self-check that the solution remains correct when projects have no tasks or comments.

Optional inputs: [Endpoint code] [Association definitions] [Baseline query log] [Dataset size]

24Build an idempotent Active Job workflow

Use when: A background job performs an external side effect and may be retried, duplicated, or interrupted.

Open copy-ready prompt
Serve as a Rails reliability engineer designing a job that exports an invoice PDF to a third-party document service and records the resulting remote identifier. Assume Active Job with a queue adapter that can retry after timeouts, and assume the provider supports an idempotency key but offers no transactional integration with PostgreSQL. Specify the job contract, stable key derivation, state machine, retry and discard policies, timeout handling, structured logging, and operator-visible failure states. Provide Ruby code, a migration for durable attempt metadata, and tests for duplicate delivery, ambiguous remote success, and permanent validation errors. Avoid swallowing failures or exposing credentials in logs. Structure the response as design decisions followed by implementation and tests. Self-check that replaying the same job cannot create two remote documents.

Optional inputs: [Provider API behavior] [Invoice identifier] [Retention policy] [Queue adapter]

25Choose between callbacks and service objects

Use when: A Rails team is debating where to place cross-model business behavior that currently lives in callbacks.

Open copy-ready prompt
Act as a pragmatic Rails architect reviewing a booking system where `Booking` callbacks reserve inventory, charge a card, send email, and publish analytics events. Recommend a refactoring approach that preserves behavior while making transactions, retries, and testing explicit. Explain which logic belongs in validations, domain methods, service objects, database constraints, and asynchronous jobs. Provide a target design with Ruby examples, an incremental extraction sequence, and characterization tests that can be written before changing production code. Address callback ordering, nested transactions, after-commit behavior, and failure recovery without assuming a particular payment provider. Return a decision matrix plus a short implementation plan. Self-check that no external side effect occurs before the booking transaction commits and that each failure has an observable owner.

Optional inputs: [Current callbacks] [Booking states] [Side effects] [Test coverage]

26Review multi-tenant data isolation

Use when: A Rails SaaS application needs defensible tenant scoping across models, jobs, admin tools, and direct database access.

Open copy-ready prompt
Work as a security-minded Rails engineer reviewing a multi-tenant SaaS using a shared PostgreSQL database and an `account_id` column on tenant-owned records. Develop a layered isolation design covering request context, model querying, authorization boundaries, background jobs, console usage, reporting queries, and database protections such as row-level security where appropriate. Show safe Ruby patterns and examples of dangerous patterns to reject, but do not include real secrets or destructive commands. Include a test matrix for cross-tenant reads, writes, exports, and queued work, plus an incident-response note for suspected leakage. Return architecture guidance, code sketches, and review questions. Self-check that jobs carry an explicit tenant identity and that every bypass path is documented, restricted, and tested.

Optional inputs: [Tenant hierarchy] [Admin roles] [Database topology] [Compliance obligations]

27Implement auditable soft deletion

Use when: Records must be hidden from normal workflows while remaining recoverable and legally explainable.

Open copy-ready prompt
Act as a Rails data-governance engineer designing deletion semantics for a healthcare scheduling application. Compare hard deletion, nullable `deleted_at`, archival tables, and an event or audit log, then recommend a model appropriate for appointments, patients, and staff notes without giving legal advice. Cover default scopes and their pitfalls, explicit query APIs, uniqueness constraints, dependent associations, restoration rules, reporting, retention controls, and authorization. Provide migrations, model methods, representative queries, and tests for hidden records, recovery, and audit history. Keep sensitive data examples fictional and avoid claiming compliance merely from a technical pattern. Present the answer as an options table followed by the recommended design. Self-check that administrative users cannot silently erase audit evidence and that normal queries cannot accidentally include retired records.

Optional inputs: [Retention schedule] [Recovery window] [Audit fields] [Access roles]

28Optimize bulk imports with validation

Use when: A Rails application must ingest large CSV files while preserving data quality and useful error reporting.

Open copy-ready prompt
Serve as a Rails data-import specialist designing a CSV import for 500,000 supplier products. The import must validate row-level business rules, avoid loading the entire file into memory, preserve the source row number, handle duplicate product codes deterministically, and report errors without exposing confidential supplier data. Assume PostgreSQL and Rails 7.2. Compare row-by-row Active Record writes, batched inserts, and staging-table workflows, then recommend one based on correctness and operational simplicity. Include pseudocode or Ruby implementation, transaction boundaries, conflict handling, progress metrics, retry strategy, and a result schema for accepted and rejected rows. Make clear which validations belong in the database. Self-check that rerunning the same file has a defined outcome and does not create unintended duplicates.

Optional inputs: [CSV columns] [Uniqueness rule] [Import SLA] [Error-report destination]

29Test concurrency in inventory reservations

Use when: Overselling or duplicate reservations may occur when multiple requests update the same stock record concurrently.

Open copy-ready prompt
Act as a Rails concurrency specialist diagnosing an inventory reservation flow in which two checkout requests can read the same available quantity. Design a correct reservation algorithm for PostgreSQL, comparing row locks, atomic conditional updates, optimistic locking, and a reservation ledger. State assumptions about reservation expiry, cancellation, and transaction isolation. Provide Ruby service code, the essential schema constraints or indexes, and integration tests that deliberately exercise concurrent attempts rather than merely asserting sequential behavior. Include guidance for deadlock handling, bounded retries, and monitoring contention. Do not suggest bypassing authorization or issuing irreversible production commands. Return the analysis as alternatives, chosen design, implementation, and test strategy. Self-check that successful reservations can never reduce available inventory below zero, including after retries and expiration races.

Optional inputs: [Stock model] [Reservation duration] [Database version] [Concurrency budget]

30Design reliable scheduled data cleanup

Use when: Old temporary records must be removed or anonymized safely through scheduled background work.

Open copy-ready prompt
Work as a Rails operations engineer designing a scheduled job to purge expired password-reset tokens and anonymize abandoned checkout sessions. Define eligibility rules, batching, ordering, indexes, retention exceptions, dry-run behavior, metrics, alerting, and an operator approval boundary. Use Active Job or the team’s scheduler without assuming a specific vendor, and separate irreversible anonymization from reversible cleanup where practical. Provide migration guidance, Ruby job code, a query plan for large tables, and tests covering time zones, clock skew, duplicate execution, and records updated during the run. Avoid printing token values or personal data in logs, and flag any policy or legal questions for qualified review. Self-check that the job is resumable, bounded per invocation, and safe if two workers overlap.

Optional inputs: [Retention policy] [Time zone] [Table cardinality] [Anonymization fields] [Scheduler]

4. Rails Controllers, APIs, and Views

31Refactor a Thin Controller

Use when: A Rails controller has accumulated authorization, persistence, branching, and presentation logic.

Open copy-ready prompt
Act as a senior Ruby on Rails maintainer reviewing a production `ProjectsController`. Refactor it so authorization, validation, orchestration, and response formatting have clear homes while preserving existing HTML and JSON behavior. Identify hidden side effects and avoid service objects that merely relocate code. Show the revised controller, supporting policy or service interfaces, and a migration plan from the current implementation. Include request specs for valid, invalid, unauthorized, and missing-record cases, with safe error messages that do not reveal sensitive details. Organize the response as diagnosis, code, tests, and trade-offs. Self-check that every branch has an explicit response, lookups remain scoped, and no credentials, tokens, or destructive operations appear.

Optional inputs: [Current controller], [Authorization library], [Supported formats], [Existing tests]

32Design a Versioned JSON API

Use when: You are adding a stable API endpoint that must evolve without breaking existing consumers.

Open copy-ready prompt
Act as a Rails API architect designing `GET /api/v1/invoices` for a multi-tenant billing platform. Specify routing, authentication boundaries, tenant scoping, pagination, filtering, sorting, and a consistent JSON envelope. Define status codes and machine-readable errors for invalid parameters, missing tenants, and unexpected failures. Use serializers or presenters only after explaining the choice. Include request specs for success, unauthorized access, cross-tenant attempts, and malformed input. Keep examples fictional and free of secrets; do not recommend bypassing access controls. Return an endpoint contract, implementation sketch, test matrix, and upgrade notes. Self-check that an invoice from another tenant cannot be selected through an ID, filter, cursor, or serializer association.

Optional inputs: [Rails version], [Authentication mechanism], [Serializer preference], [Pagination convention]

33Secure Nested Strong Parameters

Use when: A form submits nested customer and address data and the permitted-parameter boundary is unclear.

Open copy-ready prompt
Act as an application-security engineer implementing `CustomersController#create` for a form with nested addresses. Define a strong-parameters method that permits only documented fields, rejects unexpected keys, and excludes administrative attributes such as account status, ownership, internal notes, and audit metadata. Explain how model validations, authorization policies, and database constraints complement—but do not replace—the parameter boundary. Provide controller code, fictional payloads, and request-spec examples covering nested creation and unauthorized field injection. Avoid real personal data or credentials. Structure the response as assumptions, implementation, tests, and review risks. Self-check that mass assignment cannot alter roles, billing state, ownership, or audit records and omitted nested values have deliberate behavior.

Optional inputs: [Allowed fields], [Address attributes], [Policy framework], [Model associations]

34Add Idempotency to a State-Changing API

Use when: Clients may retry a request after a timeout and duplicate side effects must be prevented.

Open copy-ready prompt
Act as a Rails API engineer designing `POST /api/v1/subscriptions` for retrying clients. Introduce an idempotency-key workflow scoped to the authenticated account and endpoint, persisting request fingerprints and outcomes safely. Distinguish a first submission, identical replay, conflicting replay, and in-progress request. Show controller flow, persistence considerations, transaction boundaries, and response semantics. Represent external payment work behind a fake adapter; do not implement real payment calls or expose secrets. Include concurrency-focused tests and explain retention choices. Present the response as a text sequence diagram, Ruby outline, and test checklist. Self-check that concurrent requests cannot create duplicate subscriptions and a conflicting key never returns another request’s result.

Optional inputs: [Database engine], [Job system], [Adapter interface], [Retention period]

35Build Policy-Aware Nested Resources

Use when: A Rails application exposes comments under projects and must enforce ownership at every lookup.

Open copy-ready prompt
Act as a Rails engineer reviewing `Projects::CommentsController` for a collaboration product. Implement nested routes and controller actions for listing, creating, updating, and deleting comments while ensuring every project and comment is authorized within the current user’s organization. Use scoped associations rather than global comment lookups, and apply policy checks consistently for HTML and JSON requests. Include routes, controller code or pseudocode, policy expectations, and request specs for authorized, unauthorized, missing, and cross-organization cases. Keep not-found behavior from unnecessarily revealing inaccessible records. Return sections for route design, lookup flow, authorization, and tests. Self-check that a comment ID alone can never escape its parent project scope and direct HTTP requests receive the same protection as UI actions.

Optional inputs: [Namespace structure], [Policy library], [Organization model], [Not-found behavior]

36Create Accessible Server-Rendered Views

Use when: An administrative index page is difficult to navigate with keyboards or assistive technology.

Open copy-ready prompt
Act as a Rails view specialist and accessibility reviewer. Improve an ERB index view for support tickets with filters, status badges, pagination, empty states, and row-level actions. Produce semantic HTML and Rails view code with a meaningful heading, labels for every control, preserved filter values, status communication that does not rely on color alone, and useful focus and error behavior. Keep business logic out of the template by suggesting helper or component boundaries. Include a system-test checklist for keyboard navigation, landmarks, and form errors, plus localization notes. Do not invent claims or rely on JavaScript-only interactions. Self-check that every interactive element has an understandable accessible name and restricted actions remain protected server-side.

Optional inputs: [Existing ERB], [CSS framework], [Pagination helper], [Supported locales]

37Stream Large Collections Safely

Use when: An API export risks exhausting memory or timing out while processing many records.

Open copy-ready prompt
Act as a Rails performance engineer designing `GET /api/v1/audit-events/export`. Propose a safe streaming or asynchronous strategy for a large, tenant-scoped collection, explaining when to use batching, a background job, generated storage, or chunked responses. Include controller boundaries, query ordering, authorization, bounded-memory assumptions, cancellation or timeout behavior, and a client-visible status contract if asynchronous. Avoid destructive database commands and infrastructure credentials. Provide an implementation outline, index recommendations, observability fields, and tests for tenant isolation, empty results, retries, and partial failures. Return the answer as an architecture decision record with a Ruby sketch and acceptance criteria. Self-check that the design never loads the full dataset into memory or leaks another tenant’s events.

Optional inputs: [Approximate row count], [Database engine], [Storage service], [Job backend], [Export format]

38Standardize HTML and JSON Negotiation

Use when: One controller serves browser requests and API clients but returns inconsistent errors.

Open copy-ready prompt
Act as a Rails web-platform reviewer. Standardize `OrdersController` behavior for `show`, `create`, and `update` across HTML and JSON requests. Define how successful responses, validation failures, missing records, authorization failures, redirects, unsupported formats, and unexpected exceptions differ by format without duplicating business logic. Show a controller sketch, shared error-rendering approach, and request or controller specs for each branch. Keep messages useful but avoid stack traces, internal identifiers, personal data, and secrets. Present the response as a behavior matrix followed by code and tests. Self-check that every action has one predictable response path for each supported format and no error branch relies on an implicit framework default.

Optional inputs: [Supported MIME types], [Error envelope], [Redirect rules], [Exception policy]

39Test Controller Contracts Without Over-Mocking

Use when: Brittle controller tests pass despite broken routes, templates, or authorization behavior.

Open copy-ready prompt
Act as a test-focused Rails lead. Rework the test strategy for `ReportsController`, which serves an HTML dashboard and a JSON summary endpoint. Recommend a balanced set of request, system, model, and policy tests that verifies observable contracts rather than private implementation details. Include RSpec or Minitest examples for routing, authentication, authorization, query parameters, JSON shape, rendered empty states, and validation errors. Explain where a test double is appropriate and where integration coverage is safer. Use fictional fixtures, avoid network calls and secrets, and include tenant-isolation cases. Organize the response as testing principles, sample tests, coverage gaps, and a review checklist. Self-check that the suite fails if tenant scoping or a documented response field is removed.

Optional inputs: [RSpec or Minitest], [Current test suite], [Authentication helper], [API schema]

40Diagnose a Slow Rails Endpoint

Use when: A dashboard endpoint has become slow and you need evidence-led remediation rather than guesses.

Open copy-ready prompt
Act as a Rails performance investigator examining `GET /teams/:team_id/activity`. Create a diagnostic workflow separating routing, authorization, database queries, serialization, view rendering, caching, and network latency. Show how to capture reproducible timings, inspect query counts and plans, detect N+1 behavior, and compare representative small and large datasets without exposing production data. Then propose prioritized fixes with measurable acceptance thresholds while preserving authorization and result correctness. Include a sample instrumented query or controller, test strategy, and rollback considerations. Return an investigation worksheet followed by likely findings and evidence requirements. Self-check that no optimization is recommended before measurement, tenant isolation is re-tested, and the plan distinguishes database time from slow rendering or an external dependency.

Optional inputs: [Rails version], [Database engine], [Current latency], [Sample logs], [APM availability]

5. Testing, Quality, and Code Review

41Contract-Test a Ruby API Client

Use when: You need confidence that a Ruby client still matches a third-party API without relying on live services.

Open copy-ready prompt
Act as a senior Ruby test engineer reviewing an API client for a subscription platform. Design a contract-testing strategy with RSpec and WebMock or VCR, covering pagination, rate-limit responses, malformed payloads, authentication boundaries, and backward-compatible field additions. Show one concise endpoint example using synthetic fixtures; exclude credentials, tokens, customer data, and unauthorized network access. Explain which checks belong in unit, contract, and separately controlled integration suites. Present a test matrix, implementation guidance, and review checklist. Self-check that every assertion is deterministic, provider behavior is distinguished from client assumptions, and no fixture or tool silently exposes secrets.

Optional inputs: [Ruby version] [HTTP library] [endpoint shape] [test framework] [provider constraints]

42Mutation Testing for Ruby Business Rules

Use when: A Ruby domain model has high coverage but important regressions still escape ordinary tests.

Open copy-ready prompt
Act as a quality engineer specializing in mutation testing for Ruby. Evaluate a pricing policy object that applies discounts, minimum charges, eligibility dates, and rounding. Propose a focused experiment using Mutant or an equivalent tool, including target classes, meaningful mutations, justified exclusions, and interpretation of surviving mutants. Include two illustrative RSpec examples that test observable behavior rather than private methods or incidental call order. Organize the response into Scope, Example Tests, Triage Procedure, and Exit Criteria. Use fabricated values, avoid claiming any score proves correctness, and self-check that each assertion would detect a plausible rule change without overfitting implementation details.

Optional inputs: [Ruby version] [test runner] [policy rules] [mutation score] [coverage report]

43Ruby Pull-Request Review Rubric

Use when: A team needs consistent, constructive review standards for Ruby pull requests of different sizes and risks.

Open copy-ready prompt
Act as a Ruby staff engineer creating a pull-request review rubric for a product team. Cover correctness, public interfaces, error handling, query behavior, concurrency, observability, test quality, readability, dependency changes, and backward compatibility. Separate blocking defects from non-blocking suggestions, and include respectful comment examples that request evidence rather than assert intent. Deliver a compact reviewer checklist and a deeper calibration guide for complex changes. Require reviewers to identify untested assumptions and state when specialist security, privacy, database, or domain review is needed. Self-check that the rubric applies to Rails and non-Rails Ruby, avoids personal judgments, and never treats passing tests as proof that a change is defect-free.

Optional inputs: [team size] [application type] [review tool] [risk profile] [engineering standards]

44Property-Based Tests for Ruby Serialization

Use when: Serialization code must remain reliable across many valid inputs and edge cases that examples may miss.

Open copy-ready prompt
Act as a Ruby testing specialist designing property-based tests for a serializer that converts typed configuration objects to JSON and back. Define invariants for round trips, canonical output, optional fields, Unicode strings, nested collections, numeric boundaries, and invalid input. Recommend a suitable Ruby property-testing library, or explain how to build a restrained generator if dependencies are limited. Include illustrative pseudocode for generators, shrinking expectations, and failure reproduction, clearly labeling version-dependent APIs. Present Properties, Generators, Failure Workflow, and Review Questions. Use synthetic data only. Self-check that lossy transformations are not falsely required to round-trip and invalid-input tests distinguish rejection from silent coercion.

Optional inputs: [Ruby version] [serialization format] [object schema] [allowed dependencies] [edge cases]

45Characterization Tests for a Ruby Refactor

Use when: You must refactor opaque legacy Ruby code while preserving behavior that authorized consumers depend on.

Open copy-ready prompt
Act as a senior maintainer preparing a safe refactor of a legacy Ruby report generator with sparse tests and undocumented consumers. Describe how to create characterization tests from observed, authorized behavior before changing internals. Cover time, randomness, filesystem access, locale, and external services; identify outputs to normalize versus preserve exactly; and show one concise RSpec example using dependency injection or a safe test seam. Structure the answer as a phased plan with risks, evidence to capture, and rollback signals. Do not record secrets or real personal data, and do not assume every quirk is a contract. Self-check that supported behavior is protected, deliberate changes are documented, and tests remain deterministic after refactoring.

Optional inputs: [Ruby version] [entry points] [sample output] [known consumers] [test limitations]

46Auditing Flaky Rails System Tests

Use when: Rails browser tests are slow, flaky, or difficult to diagnose across local and CI environments.

Open copy-ready prompt
Act as a Rails quality engineer auditing a flaky system-test suite. Build a diagnostic framework covering database isolation, JavaScript timing, asynchronous jobs, external calls, browser versions, test-data collisions, timezone assumptions, and cleanup failures. Provide a table mapping symptoms to evidence, likely causes, and low-risk experiments, then propose a reliability scorecard for review. Include one example replacing a fixed sleep with an explicit condition or framework-supported wait, while requiring selectors and application behavior to be verified in context. Do not disable security controls or mask failures with retries. Self-check that recommendations preserve test intent, limit nondeterminism, and distinguish infrastructure failures from product defects.

Optional inputs: [Rails version] [browser driver] [CI platform] [flaky examples] [database strategy]

47Ruby Static-Analysis Configuration Review

Use when: A Ruby repository needs linting and static analysis that improves quality without creating unreviewable noise.

Open copy-ready prompt
Act as a Ruby tooling lead reviewing RuboCop, bundler-audit, and optional static-analysis configuration. Recommend a staged policy for new code, changed lines, legacy files, generated code, and security-sensitive paths. Explain how to choose enabled checks, document justified exclusions, pin tool versions, and prevent automated fixes from changing behavior unnoticed. Provide a decision table, rollout sequence, and maintainer checklist, labeling configuration fragments illustrative when syntax varies by version. Do not claim linting proves security or correctness, and do not upload source or expose secrets. Self-check that CI is reproducible, false positives have an appeal path, and developer feedback remains useful rather than merely punitive.

Optional inputs: [Ruby version] [repository size] [existing config] [CI constraints] [regulated paths]

48Performance Regression Tests for Ruby Services

Use when: A Ruby service needs protection against latency or allocation regressions without turning every test run into a benchmark lab.

Open copy-ready prompt
Act as a Ruby performance engineer designing a regression-testing plan for a JSON service processing batch requests. Define representative synthetic workloads, warm-up behavior, timing and allocation measurements, environmental controls, thresholds, and methods for separating signal from noisy CI results. Show an illustrative benchmark or profiling harness, but avoid universal numbers or presenting local measurements as production guarantees. Explain which checks run on pull requests and which run on scheduled hardware. Format the response as Test Design, Example Harness, Interpretation, and Escalation Rules. Self-check that measurements are user-relevant, environment metadata is recorded, load is non-destructive, and a repeatable comparison is required before blocking a change.

Optional inputs: [Ruby implementation] [endpoint] [payload sizes] [CI hardware] [latency objective]

49Secure Review of Ruby Dependency Changes

Use when: A pull request adds or upgrades Ruby gems and reviewers need to assess security and supply-chain risk systematically.

Open copy-ready prompt
Act as an application-security reviewer examining a Ruby dependency change for a team-owned service. Create a procedure covering changelog and release provenance, transitive dependencies, licensing, permissions, native extensions, known advisories, lockfile integrity, runtime exposure, and rollback readiness. Include an evidence-request template for the author and a risk table distinguishing verified facts, open questions, and assumptions. Recommend the organization’s approved security process when findings are material; do not invent advisory identifiers or claim a scan is complete without results. Never request secrets or suggest downloading untrusted code into production. Self-check that the review evaluates the actual diff and lockfile, not package popularity alone.

Optional inputs: [gem name] [version change] [lockfile excerpt] [runtime role] [approved scanners]

50Approval-Ready Ruby Code Review Report

Use when: A high-impact Ruby change needs a concise review record that leaders can approve, defer, or return for revision.

Open copy-ready prompt
Act as an independent Ruby principal engineer reviewing a proposed change to an authorization component. Produce an approval-ready report with five sections: scope and evidence reviewed, behavior and test assessment, risks and mitigations, unanswered questions, and decision recommendation. Require explicit evidence for relevant tests, interface changes, migration safety, logging behavior, and failure handling, but treat missing evidence as unknown rather than proof of a defect. Include targeted follow-up tests and a final self-audit stating whether the recommendation is limited by incomplete information. Do not expose credentials, suggest bypassing authorization, or give false assurance. Keep the tone neutral, actionable, and suitable for archival in a code-review system.

Optional inputs: [change summary] [diff or PR link] [test results] [risk owner] [release constraints]

6. Performance, Reliability, and Production Diagnosis

51Diagnose a Ruby latency regression

Use when: A Ruby service became slower after a release and you need a disciplined, evidence-based investigation.

Open copy-ready prompt
Act as a senior Ruby performance engineer investigating a latency regression in a production web service. Given the supplied deploy timeline, endpoint traces, database timings, Ruby version, and recent diff, build a hypothesis tree that separates application CPU, garbage collection, database, network, and dependency causes. Specify safe measurements to collect in staging or production, including what each measurement would confirm or rule out; do not request secrets or recommend destructive changes. Rank the next five investigative steps by information value and operational risk. Present a concise incident brief, evidence matrix, and remediation options with rollback criteria. Self-check that every conclusion is labeled as observed, inferred, or unverified and that no unsupported root cause is stated.

Optional inputs: [Ruby version] [Framework] [Trace samples] [Deploy diff] [Latency objective]

52Analyze Ruby memory growth

Use when: A long-running Ruby process steadily consumes memory and may eventually be restarted by the platform.

Open copy-ready prompt
Work as a Ruby runtime specialist analyzing suspected memory growth in a long-running worker process. Review the provided RSS timeline, heap statistics, job mix, object allocation samples, and restart history. Distinguish a true leak from expected heap retention, fragmentation, oversized batches, cache growth, or native-extension behavior. Design a low-risk diagnostic plan using reproducible load tests, allocation tracing, bounded sampling, and before-and-after comparisons; avoid exposing credentials and avoid instructions that could destabilize production. Return a decision tree, a table of signals and interpretations, and prioritized fixes with verification tests. Include a temporary containment plan that preserves reliability. Before finalizing, check that each proposed measurement has a clear stopping condition and that the analysis does not confuse RSS with live Ruby objects.

Optional inputs: [Process type] [RSS samples] [Heap reports] [Worker concurrency] [Batch size]

53Improve Ruby garbage-collection behavior

Use when: Garbage collection pauses or allocation pressure are affecting throughput and response-time consistency.

Open copy-ready prompt
Act as an experienced Ruby runtime engineer reviewing garbage-collection behavior in a production API. Use the supplied GC.stat snapshots, allocation-rate measurements, request timings, Ruby build details, and traffic profile to identify likely allocation hotspots without assuming that tuning environment variables is the first answer. Recommend code-level and configuration-level experiments in a safe order, with measurable hypotheses, sample durations, and rollback triggers. Explain trade-offs among throughput, pause time, memory footprint, and diagnostic overhead. Deliver an experiment matrix followed by an implementation checklist and a compact before/after report template. Protect operational safety: never ask for secrets, never suggest disabling safeguards, and clearly separate generally applicable guidance from version-specific advice. Self-check every recommendation against the stated latency and memory objectives.

Optional inputs: [Ruby release] [GC metrics] [Endpoint profile] [Memory limit] [Latency SLO]

54Investigate intermittent Ruby timeouts

Use when: Requests or background jobs occasionally exceed their deadlines even though average performance looks healthy.

Open copy-ready prompt
Serve as a production reliability engineer diagnosing intermittent timeouts in a Ruby application. Examine the provided timeout logs, request IDs, queue wait times, dependency durations, thread or fiber utilization, retry behavior, and timeout configuration. Correlate events across layers and distinguish saturation, lock contention, slow dependencies, connection-pool exhaustion, and faulty deadline propagation. Produce a timeline reconstruction, ranked hypotheses with confidence levels, and a non-destructive validation plan that can run with redacted telemetry. Recommend improvements to deadlines, cancellation, retries, and observability only when they preserve bounded load and avoid retry storms. Include explicit escalation criteria for the on-call team. Self-check that each hypothesis is tied to a timestamped signal, that retries are not treated as free, and that no claim exceeds the supplied evidence.

Optional inputs: [Timeout logs] [Trace IDs] [Pool settings] [Retry policy] [Dependency SLAs]

55Harden a Ruby background job for retries

Use when: A Sidekiq, Resque, or custom Ruby worker must tolerate crashes, duplicate delivery, and transient dependencies.

Open copy-ready prompt
Act as a Ruby distributed-systems engineer reviewing a background job that processes customer events and may be delivered more than once. Based on the supplied job code, data model, failure examples, and queue configuration, identify where retries could create duplicate side effects, lost work, poison messages, or unbounded delay. Propose an idempotency design, transactional boundaries, retry classification, dead-letter handling, and observability signals that fit the existing architecture. Provide a failure-mode table, pseudocode for the critical guardrails, and a staged test plan covering crashes before and after external effects. Do not include credentials, destructive commands, or assumptions about third-party guarantees. Self-check that every side effect has an explicit duplicate-handling strategy and that permanent failures cannot loop indefinitely.

Optional inputs: [Job code] [Event schema] [Database] [Queue system] [External APIs]

56Triage a Ruby database bottleneck

Use when: A Ruby application shows rising database time, connection waits, or throughput loss under realistic traffic.

Open copy-ready prompt
Work as a Ruby and database performance consultant diagnosing a bottleneck in an ORM-backed service. Analyze the supplied slow-query samples, query plans, request traces, pool configuration, transaction timings, and concurrency levels. Separate inefficient SQL, missing or unused indexes, N+1 access, pool starvation, lock waits, and application serialization. Recommend safe confirmation steps and minimally scoped changes, with expected signals, benchmark design, and rollback criteria; do not prescribe production schema changes without a review path or backup verification. Return findings in an evidence table, then provide prioritized fixes and a measurement plan for one week of observation. Avoid inventing database statistics or claiming a query is slow without a baseline. Self-check that recommendations preserve correctness, transaction semantics, and the stated workload assumptions.

Optional inputs: [ORM] [Database engine] [Query plans] [Pool size] [Traffic shape]

57Diagnose a Ruby deadlock or lock contention

Use when: Threads, fibers, or database transactions stall while CPU utilization remains unexpectedly low.

Open copy-ready prompt
Act as a Ruby concurrency specialist investigating suspected deadlock or lock contention. Review the supplied thread dumps, synchronization code, transaction traces, lock-wait data, and incident timeline. Explain the smallest plausible wait-for graph, distinguish Ruby-level mutexes from database locks, and identify evidence needed to confirm ordering, re-entrancy, or leaked ownership. Suggest instrumentation and a reproducible test that are safe for non-production environments, followed by narrowly scoped remediation patterns such as consistent lock ordering or shorter critical sections. Present a diagram-friendly sequence, a root-cause hypothesis table, and acceptance tests for the fix. Do not recommend killing processes or bypassing locks as a solution. Self-check that every alleged dependency in the cycle is supported by a captured event and that liveness improvements do not weaken data integrity.

Optional inputs: [Thread dumps] [Mutex code] [Transaction logs] [Ruby runtime] [Reproduction steps]

58Build a Ruby observability diagnosis plan

Use when: An operations team lacks enough telemetry to explain production failures in a Ruby service.

Open copy-ready prompt
Serve as a Ruby observability architect creating a practical diagnosis plan for a service with incomplete telemetry. Using the supplied architecture, incident examples, SLOs, and current logs, define the minimum useful signals for requests, jobs, database calls, external dependencies, garbage collection, and resource saturation. Map each signal to a symptom, likely question, retention need, and alert or dashboard use. Include structured-log fields, trace boundaries, correlation rules, redaction requirements, and a staged rollout that controls cost and overhead. Return a prioritized instrumentation backlog, example event schemas, and an incident-query cookbook using generic placeholders rather than secrets. Self-check that personally sensitive data and credentials are excluded, high-cardinality labels are justified, and every proposed metric has an owner and an operational decision attached.

Optional inputs: [Architecture] [Existing logs] [SLOs] [Telemetry stack] [Privacy rules]

59Plan a safe Ruby capacity test

Use when: You need to estimate headroom before a launch without risking production availability or mishandling real customer data.

Open copy-ready prompt
Act as a Ruby performance test lead preparing a capacity exercise for a web application before a traffic increase. From the supplied workload model, service limits, staging topology, representative fixtures, and SLOs, design a test that measures throughput, latency percentiles, error rate, queue delay, CPU, memory, GC, database pressure, and dependency behavior. Define ramp stages, steady-state windows, stop conditions, test-data safeguards, and how results will be extrapolated conservatively. Include a run sheet, acceptance table, and analysis template that distinguishes bottleneck evidence from correlation. Do not use production secrets, real personal data, or uncontrolled traffic generation, and do not give destructive deployment commands. Self-check that the test can be halted safely and that capacity conclusions state their confidence and environment limitations.

Optional inputs: [Expected RPS] [Staging limits] [Fixture profile] [SLOs] [Dependency quotas]

60Create a Ruby incident postmortem and reliability backlog

Use when: A Ruby production incident is resolved and the team needs learning-oriented documentation plus accountable follow-up.

Open copy-ready prompt
Work as a blameless incident commander and senior Ruby engineer drafting a postmortem for a production outage. Use the supplied timeline, alerts, deploy history, logs, customer impact estimate, mitigations, and contributing conditions. Separate direct trigger, enabling factors, detection gaps, and recovery constraints without assigning personal blame or asserting unverified facts. Produce an executive summary, precise timeline, impact statement, five-whys analysis with uncertainty labels, what went well, what failed, and a reliability backlog with owners, priority, due dates, and verification signals. Include follow-up experiments for performance, failure handling, and observability where supported by evidence. Redact secrets and sensitive customer details. Self-check that every action item is testable, no causal claim lacks evidence, and the final narrative distinguishes incident facts from proposed improvements.

Optional inputs: [Incident timeline] [Alert history] [Deploy records] [Impact data] [Action owners]

7. Security, Authentication, and Safe Integrations

61Threat-Model a Ruby Web Application

Use when: You need a practical security review before releasing a Ruby on Rails or Sinatra application.

Open copy-ready prompt
Act as a senior Ruby application-security engineer reviewing a small web application that handles user accounts, uploaded files, and administrator actions. Build a threat model covering trust boundaries, valuable assets, likely abuse cases, authentication risks, authorization gaps, injection paths, unsafe file handling, and relevant third-party dependencies. Assume the team has limited time, so rank findings by exploitability and business impact rather than listing every theoretical concern. For each priority risk, recommend a defensive control that can be implemented and tested without exposing credentials or enabling unauthorized access. Present the result as an asset-and-threat table followed by a prioritized verification checklist. Self-check that every recommendation is preventive, lawful, and tied to a stated threat.

Optional inputs: [Ruby framework and version] [Application architecture] [Data handled] [Known security concerns]

62Design Secure Rails Authentication

Use when: You are choosing an authentication design for a Rails application with ordinary users and privileged staff.

Open copy-ready prompt
Act as a Ruby on Rails security architect. Design a secure authentication approach for a Rails application supporting password login, account recovery, session management, optional multifactor authentication, and staff accounts. Explain the responsibilities of the framework, authentication library, database schema, mail delivery, and deployment environment without assuming a particular vendor. Specify password-storage expectations, session expiration, login throttling, recovery-token handling, CSRF protection, audit events, and safe error messages. Separate baseline requirements from enhancements, and identify decisions that require review by the organization’s security or privacy team. Return a concise architecture diagram in text, a control table, and an implementation test plan. Self-check that the design never stores plaintext passwords, reveals account existence unnecessarily, or places secrets in source control.

Optional inputs: [Rails version] [Authentication library] [User roles] [MFA policy] [Hosting model]

63Review Authorization with Policy Objects

Use when: You need to audit role and resource permissions in a Ruby application without confusing authentication with authorization.

Open copy-ready prompt
Act as an experienced Ruby engineer specializing in authorization. Review a proposed policy-object design for a multi-tenant application where users can view, edit, export, and administer records belonging to different organizations. Explain how to express least privilege, tenant isolation, ownership rules, administrator exceptions, and service-to-service access in readable Ruby policies. Identify common failure modes such as checking only a user role, trusting client-supplied organization IDs, missing authorization in background jobs, and using broad controller callbacks as the sole safeguard. Produce a permission matrix, representative policy pseudocode, and a test inventory covering allowed, denied, cross-tenant, and unauthenticated requests. Self-check that every sensitive operation has a server-side authorization decision and that denial behavior does not leak protected data.

Optional inputs: [Roles] [Protected resources] [Tenant model] [Existing policy code] [Required actions]

64Harden OAuth and OpenID Connect Integration

Use when: A Ruby service must sign users in through an external identity provider while minimizing account-linking and token risks.

Open copy-ready prompt
Act as a Ruby integration security specialist designing an OAuth 2.0 and OpenID Connect login flow for a web application. Describe the authorization-code flow with PKCE, exact redirect-URI validation, state and nonce handling, issuer and audience checks, token storage boundaries, clock-skew handling, logout expectations, and safe account-linking rules. Treat provider documentation as an input to verify, not as proof that every setting is safe. Include a sequence diagram in plain text, a configuration checklist, and negative test cases for callback tampering, replay, provider mismatch, expired tokens, and email-claim changes. Do not include real client secrets or instructions for bypassing controls. Self-check that the design does not rely on an unverified email claim to merge accounts automatically.

Optional inputs: [Identity provider] [Ruby framework] [Callback URLs] [Existing user identifiers] [Deployment environments]

65Build a Secure API Key and Secret-Handling Plan

Use when: A Ruby application needs credentials for external APIs across local development, testing, and production.

Open copy-ready prompt
Act as a DevSecOps-minded Ruby maintainer. Create a secret-management plan for a Ruby application that calls payment, messaging, and analytics APIs. Distinguish application configuration from secrets, recommend environment-specific injection and rotation practices, and explain how to prevent credentials from appearing in Git history, logs, exceptions, screenshots, test fixtures, or client-side responses. Show a safe Ruby configuration pattern using clearly fictional names and placeholders, but do not print usable credentials. Address local development, CI, production access, emergency revocation, and ownership of rotation duties. Return a short policy, a repository-scanning checklist, and a redacted example of an incident-response record. Self-check that no step asks developers to paste secrets into chat, commit them, or disable scanning as a workaround.

Optional inputs: [External services] [CI provider] [Deployment platform] [Current configuration method] [Rotation interval]

66Secure Webhook Verification in Ruby

Use when: Your Ruby service receives callbacks from a payment, commerce, or event platform and must reject forged requests.

Open copy-ready prompt
Act as a Ruby backend engineer reviewing webhook security for an endpoint that receives signed event payloads. Explain a robust verification sequence: preserve the raw request body, validate the signature with a constant-time comparison, enforce a timestamp tolerance, reject malformed or duplicated events, authenticate the event type, and make processing idempotent. Discuss replay protection, secret rotation, response timing, logging redaction, retry behavior, and safe failure responses. Provide framework-neutral Ruby pseudocode, a compact event-state model, and a test matrix including valid, altered, stale, duplicated, oversized, and incorrectly typed requests. Do not suggest accepting unsigned traffic in production or logging full payloads by default. Self-check that verification occurs before parsing data used for business actions and that retries cannot double-apply an operation.

Optional inputs: [Webhook provider] [Signature scheme] [Event types] [Idempotency store] [Maximum payload size]

67Audit Dependency and Supply-Chain Risk

Use when: You need to assess the security posture of a Ruby project’s gems and build pipeline before a release.

Open copy-ready prompt
Act as a Ruby supply-chain security reviewer. Evaluate a project’s Gemfile, lockfile, deployment process, and CI permissions using only the dependency metadata and pipeline description provided. Explain how to prioritize direct versus transitive dependencies, abandoned packages, vulnerable versions, permissive or incompatible licenses, install scripts, unreviewed source changes, and excessive CI privileges. Recommend a repeatable review cadence, lockfile controls, provenance checks, update testing, and an escalation path for urgent advisories without naming unsupported vulnerabilities as facts. Return a risk register, a release-gate checklist, and a sample evidence log that records sources and dates. Self-check that each conclusion is traceable to supplied evidence, that updates are tested before adoption, and that no remediation involves downloading code from an untrusted source.

Optional inputs: [Ruby version] [Gemfile.lock] [CI configuration] [Release cadence] [Approved registries]

68Protect Personal Data in Ruby Logs

Use when: A Ruby team needs observability that supports debugging without exposing passwords, tokens, or personal information.

Open copy-ready prompt
Act as a privacy-conscious Ruby observability engineer. Design a logging and error-reporting policy for a Rails service that processes account details, authentication events, uploaded documents, and payment references. Classify fields by sensitivity, define redaction and minimization rules, recommend structured event names and correlation identifiers, and explain retention, access control, sampling, and incident review. Include safe Ruby logging examples that use fictional values and avoid recording request bodies, authorization headers, passwords, recovery tokens, or payment secrets. Return a field-classification table, example sanitized events, and a verification plan for logs in development, CI, and production. Self-check that troubleshooting remains possible without reproducing protected data and that any retention or privacy decision is flagged for qualified organizational review.

Optional inputs: [Data categories] [Logging library] [Error tracker] [Retention policy] [Compliance obligations]

69Plan Safe Third-Party API Integration

Use when: You are integrating a Ruby service with an external API and need resilience, bounded permissions, and clear failure handling.

Open copy-ready prompt
Act as a Ruby platform engineer responsible for a safe third-party API integration. Produce an implementation plan for a service that sends and retrieves business records from an external provider. Cover authentication scope, credential storage, TLS and certificate expectations, request validation, timeouts, bounded retries with jitter, rate limits, pagination, idempotency, circuit breaking, error classification, webhook coordination, and data minimization. Separate provider-specific facts that must be confirmed from general engineering recommendations. Return an integration contract, a failure-mode table, and an observable acceptance-test suite. Do not include destructive commands, real credentials, or assumptions that an outage can be solved by disabling verification. Self-check that retries cannot duplicate side effects, sensitive responses are redacted, and every external dependency has an owner and rollback-safe behavior.

Optional inputs: [Provider documentation] [API operations] [Data fields] [SLOs] [Failure budget]

70Create a Security Verification Release Gate

Use when: A Ruby team wants a measurable pre-release gate for authentication, authorization, and external integrations.

Open copy-ready prompt
Act as a Ruby application-security lead preparing a release gate for a production deployment. Convert the supplied change summary into a focused verification plan covering authentication flows, authorization boundaries, session and token handling, input validation, dependency changes, secret scanning, webhook verification, audit logging, and third-party API failure behavior. Assign each check an owner, evidence requirement, severity, and pass or escalation condition. Include manual review items for controls that automated tests cannot establish, while keeping all examples non-destructive and limited to authorized environments. Return a gate table, a small CI-friendly test outline, and a final sign-off record with explicit unresolved-risk handling. Self-check that the gate distinguishes a failed test from an accepted risk, never requests production secrets, and requires qualified security or compliance review when the change affects regulated data.

Optional inputs: [Change summary] [Affected components] [Test environments] [Security baseline] [Release owner]

8. Gems, Tooling, and Developer Experience

71Design a Reliable Gem Evaluation

Use when: You need to choose a Ruby gem for a production feature without relying on popularity alone.

Open copy-ready prompt
Act as a Ruby platform engineer evaluating candidates for a production application. Compare the most suitable gems for [capability, such as PDF generation or feature flags], using evidence from current release activity, Ruby and Rails compatibility, license terms, documentation quality, maintenance signals, security history, performance considerations, and migration risk. Do not invent benchmarks or claim that a project is secure without verification. Present a weighted comparison table, identify a preferred option and a credible fallback, then propose a small proof-of-concept with acceptance criteria. Include safe commands to add and test the dependency, but do not expose credentials. Self-check every recommendation against the stated Ruby version and license requirements.

Optional inputs: [Ruby version] [Rails version] [deployment environment] [license policy] [must-have capability]

72Build a Gem Release Checklist

Use when: You are preparing a Ruby gem release and want a repeatable quality gate before publishing.

Open copy-ready prompt
Act as an experienced Ruby gem maintainer preparing version [release version] of [gem name]. Create a release checklist covering changelog accuracy, semantic versioning rationale, API compatibility, dependency bounds, supported Ruby versions, tests, linting, documentation, packaging, gem metadata, provenance, and post-release monitoring. Make each item actionable and assign an owner role, evidence to collect, and a pass/fail condition. Include safe commands for a local dry run and publication workflow, while clearly separating steps that require a human maintainer’s credentials. Add a rollback or yanking decision guide that avoids impulsive changes. Finish with a release-candidate review template and self-check for missing tests, undocumented breaking changes, and accidental secret inclusion.

Optional inputs: [gem name] [release version] [supported Ruby versions] [CI provider] [repository URL]

73Improve Bundler Dependency Hygiene

Use when: A Ruby project has dependency drift, slow installs, or recurring lockfile conflicts.

Open copy-ready prompt
Act as a Ruby build specialist reviewing a repository’s dependency management. Design a practical remediation plan for [repository context] that improves Gemfile organization, version constraints, lockfile consistency, platform-specific dependencies, private sources, update cadence, and reproducible CI installs. Distinguish safe maintenance updates from changes that need application testing or a staged rollout. Provide an ordered diagnosis workflow, sample commands that inspect rather than alter the project first, and a pull-request template explaining why each dependency changed. Never suggest committing tokens or bypassing dependency verification. Include a compact risk matrix for direct and transitive dependencies. Before finalizing, self-check that every proposed command is non-destructive and that the plan preserves the project’s declared Ruby compatibility.

Optional inputs: [Ruby version] [Bundler version] [Gemfile] [lockfile symptoms] [CI platform]

74Establish Ruby Version Management

Use when: A team needs consistent Ruby versions across laptops, CI, containers, and production.

Open copy-ready prompt
Act as a developer-experience lead standardizing Ruby version management for a team supporting [application type]. Recommend an implementation using the team’s approved tool, such as mise, asdf, or rbenv, and explain how the choice affects onboarding, local shells, Bundler, CI images, and deployment artifacts. Define one authoritative version file, an upgrade policy, compatibility checks, and a documented exception process for legacy services. Provide a rollout sequence, example configuration snippets, and a verification script that reports the active Ruby, Bundler, and native-platform details without printing secrets. Include troubleshooting for mismatched versions and native extensions. Self-check the proposal for macOS, Linux, and CI consistency, and flag assumptions that must be confirmed from the repository.

Optional inputs: [operating systems] [CI provider] [container base image] [current Ruby versions] [approved version manager]

75Create a Fast, Trustworthy Test Command

Use when: Developers need a single, discoverable command that runs the right Ruby checks locally and in CI.

Open copy-ready prompt
Act as a Ruby test-infrastructure engineer designing a developer-friendly verification command for [project]. Combine the project’s test suite, linting, formatting, static analysis, and security checks without hiding failures or creating misleading green builds. Recommend a command interface and implementation approach appropriate to the repository, such as Rake, binstub, or a task runner. Show how to support fast local feedback, a complete CI mode, parallelism where safe, deterministic ordering, and clear exit codes. Explain how to handle optional tools and generated files. Do not disable checks merely to improve speed. Return a proposed README section, CI invocation examples, and a failure-triage table. Self-check that each check is installed and that fast mode cannot silently skip required tests.

Optional inputs: [test framework] [lint tools] [CI configuration] [target runtime] [current developer command]

76Diagnose Native Gem Installation Failures

Use when: A Ruby dependency fails to compile or install on a developer machine or CI runner.

Open copy-ready prompt
Act as a Ruby systems engineer diagnosing a native-extension installation failure for [gem and error summary]. Build a careful decision tree that separates Ruby-version incompatibility, Bundler resolution, missing system libraries, compiler toolchains, architecture mismatch, platform packaging, and network or source problems. Start with read-only commands that capture relevant versions and logs, then propose the least invasive fix for each branch. Include separate guidance for local development, Linux CI, and container builds, and explain when the right answer is to upgrade, pin, replace, or remove a dependency. Never recommend downloading untrusted binaries or exposing build secrets. Structure the response as symptoms, evidence, interpretation, remedy, and verification. Self-check every command for reversibility and state which assumptions require confirmation.

Optional inputs: [gem name] [Ruby version] [OS and architecture] [full error] [CI image]

77Plan a Safe Gem Upgrade

Use when: You must upgrade a foundational Ruby or Rails gem while controlling compatibility and regression risk.

Open copy-ready prompt
Act as a senior Ruby maintainer planning an upgrade of [gem name] from [current version] to [target version or range]. Review the project’s likely public APIs, configuration points, transitive dependencies, deprecations, performance-sensitive paths, and test coverage gaps. Produce a staged plan with a reconnaissance phase, isolated dependency change, focused regression tests, observability checks, rollout gates, and a documented backout path. Distinguish facts that must come from the gem’s changelog or repository from hypotheses to validate locally; do not fabricate release details. Include a dependency-diff checklist and a pull-request description suitable for reviewers. Self-check that the plan respects the application’s supported Ruby version, avoids destructive production actions, and names a verification signal for every material risk.

Optional inputs: [gem name] [current version] [target version] [Ruby/Rails versions] [critical workflows]

78Improve Ruby Documentation and Discoverability

Use when: A Ruby library works but new contributors struggle to understand its public API and local workflow.

Open copy-ready prompt
Act as a Ruby documentation engineer auditing [library or application] for contributor and user experience. Design an information architecture that clearly separates installation, quick start, configuration, public API reference, examples, extension points, troubleshooting, development setup, and release guidance. Recommend improvements to inline documentation, generated API docs, README navigation, executable examples, and contribution instructions without promising unsupported behavior. Provide a prioritized editorial backlog with audience, evidence of confusion, proposed wording or artifact, and acceptance test. Include one polished quick-start example using only information that can be verified from the repository. Avoid fabricated benchmarks, testimonials, or compatibility claims. Self-check every example for consistency with the stated Ruby version and ensure the documentation does not reveal secrets or internal credentials.

Optional inputs: [repository structure] [target audience] [current README] [public API] [supported Ruby versions]

79Configure Local Tooling with Editor Integration

Use when: A Ruby team wants consistent formatting, lint feedback, and test discovery across editors.

Open copy-ready prompt
Act as a Ruby developer-tools consultant creating an editor-agnostic workflow for [team or repository]. Specify how developers should install and invoke the project’s formatter, linter, language server, debugger, and test runner, while keeping the repository’s configuration authoritative. Explain which settings belong in version control, how editor integrations should fail gracefully, and how CI remains the final shared gate. Provide a setup guide, a minimal configuration example, a troubleshooting matrix, and a compatibility checklist for [editors]. Avoid prescribing proprietary extensions without a neutral alternative and never include secrets in sample settings. Include a small acceptance test a contributor can run after setup. Self-check that formatting-on-save cannot rewrite generated or vendored files unexpectedly.

Optional inputs: [editors] [Ruby version] [framework] [tool configuration files] [team onboarding constraints]

80Create a Ruby Tooling Upgrade Roadmap

Use when: A mature Ruby codebase needs better developer experience but cannot absorb a risky wholesale tooling migration.

Open copy-ready prompt
Act as a staff engineer shaping a six-month Ruby tooling roadmap for [codebase and team size]. Assess the current developer journey from clone to first passing test, then prioritize improvements across version management, dependency updates, test feedback, linting, documentation, debugging, CI duration, and release automation. Use a benefit-versus-risk framework and distinguish quick wins, experiments, and changes requiring architectural approval. For each initiative, define an owner role, effort band, measurable success signal, adoption plan, and rollback boundary. Recommend pilot repositories before broad rollout and identify evidence to collect rather than inventing baseline metrics. Return an executive summary, sequenced roadmap, decision-log template, and dependency map. Self-check that the roadmap preserves secure practices, does not require unauthorized access, and remains realistic for the stated team capacity.

Optional inputs: [team size] [repository count] [current pain points] [CI duration] [capacity per month]

9. Legacy Modernization and Migration Planning

81Ruby Upgrade Readiness Assessment

Use when: You need a disciplined assessment before upgrading an aging Ruby application and its runtime dependencies.

Open copy-ready prompt
Act as a senior Ruby platform engineer reviewing a monolithic Rails 4 application running on an unsupported Ruby version. Create an upgrade-readiness assessment that identifies runtime, framework, gem, database-adapter, asset-pipeline, and deployment risks without inventing facts. Organize the result into: current-state assumptions, evidence to collect, dependency inventory method, compatibility hotspots, staged upgrade sequence, rollback criteria, test coverage gaps, and a 30-day discovery plan. Recommend non-destructive commands or inspection techniques only; never request credentials or expose secrets. Distinguish confirmed findings from hypotheses, note where repository evidence is required, and estimate effort in relative bands rather than false precision. Self-check that every recommendation has a rationale, a validation step, and a safe rollback consideration.

Optional inputs: [Ruby version] [Rails version] [Gemfile.lock] [database engine] [deployment platform] [test coverage summary]

82Rails Monolith Strangler Plan

Use when: You want to incrementally replace a legacy Rails monolith while keeping customer-facing services available.

Open copy-ready prompt
Act as a software architect specializing in Ruby and Rails modernization. Design an incremental strangler plan for a large monolith whose billing, accounts, and reporting areas are tightly coupled. Propose a sequence of seams, façade or API boundaries, ownership rules, data-read strategies, observability requirements, and decommissioning checkpoints. Favor reversible slices over a risky rewrite, and explicitly identify consistency, latency, authorization, and operational failure modes. Present the answer as a phased table followed by an architecture decision record for the first extraction. Include contract-test examples in pseudocode, not production credentials or destructive migration commands. State which assumptions need confirmation from code and production telemetry. Self-check that each phase has an exit criterion, rollback path, and measurable customer-impact guardrail.

Optional inputs: [monolith modules] [request volumes] [team ownership] [data dependencies] [availability target] [existing API gateway]

83Ruby 2-to-3 Compatibility Workplan

Use when: A Ruby service must move across major language versions with controlled compatibility risk.

Open copy-ready prompt
Act as a Ruby language migration lead preparing a workplan for moving a production service from Ruby 2.7 to Ruby 3.x. Explain how to inventory syntax changes, keyword-argument behavior, removed APIs, concurrency assumptions, native extensions, and CI matrix requirements. Build a prioritized backlog with detection method, likely impact, responsible role, and verification test for each risk class. Include a safe branch strategy, dependency pinning approach, canary criteria, and rollback decision points. Do not claim that a specific gem is compatible unless supplied evidence supports it; instruct the team to consult authoritative release notes and repository tests. Keep commands illustrative and non-destructive. Self-check that the plan separates language changes from framework and infrastructure changes so failures remain diagnosable.

Optional inputs: [current Ruby version] [target Ruby version] [CI provider] [gem inventory] [native extensions] [production traffic pattern]

84Legacy ORM and Database Migration Map

Use when: An old Ruby application needs database-layer modernization without losing data integrity.

Open copy-ready prompt
Act as a Ruby data-migration specialist auditing an application that uses an outdated ORM, implicit queries, and a heavily customized relational schema. Produce a migration map covering schema discovery, model behavior, query equivalence, indexes, background jobs, transaction boundaries, data-quality anomalies, and cutover sequencing. Recommend how to create representative fixtures, dual-read comparisons, checksums, reconciliation reports, and a tested rollback or restore procedure. Do not provide destructive SQL, skip validation, or imply that backups are sufficient without restore testing. Structure the response as: discovery checklist, risk register, migration waves, validation protocol, and go/no-go review questions. Label all unknowns explicitly. Self-check that the proposed process preserves referential integrity, documents irreversible steps, and minimizes lock time during production changes.

Optional inputs: [ORM and version] [database engine/version] [schema size] [largest tables] [maintenance window] [backup-restore evidence]

85Background Job System Migration

Use when: You are replacing a legacy Ruby background-job system while preserving delivery guarantees and operational visibility.

Open copy-ready prompt
Act as a staff Ruby engineer planning migration from a legacy job runner to a supported queueing system. Address job discovery, payload serialization, idempotency, retry semantics, scheduled work, poison messages, rate limits, monitoring, and worker deployment. Create a decision matrix comparing migration patterns such as drain-and-switch, dual publishing, and queue-by-queue cutover, including when each is unsafe. Give a representative idempotent job design in Ruby-like pseudocode and a test plan for retries and partial failure. Avoid real credentials, destructive queue commands, and unsupported guarantees. Ask the team to verify behavior against the chosen adapter’s documentation and source code. Self-check that every job class receives an ownership decision and that duplicate execution cannot silently corrupt business state.

Optional inputs: [current job library] [target queue] [job volume] [retry policy] [scheduled-job inventory] [failure history]

86API Contract Migration Blueprint

Use when: A legacy Ruby API must evolve without breaking existing clients or hiding incompatible behavior.

Open copy-ready prompt
Act as an API governance architect working with a Ruby service that exposes undocumented JSON endpoints to internal and external consumers. Create a contract-migration blueprint that covers endpoint inventory, client discovery, schema characterization, versioning, compatibility rules, deprecation notices, contract tests, observability, and sunset approval. Recommend how to introduce a documented target contract alongside the old behavior, including translation layers and staged traffic measurement. Do not fabricate client counts, standards compliance, or endpoint semantics; mark evidence gaps and specify how to confirm them from logs, repositories, and consumer interviews. Present a dependency-aware timeline and a sample change announcement. Self-check that the blueprint distinguishes additive changes from breaking changes and includes a safe response to unknown clients.

Optional inputs: [API routes] [consumer teams] [sample payloads] [observability stack] [deprecation policy] [target schema format]

87Frontend Asset Pipeline Modernization

Use when: A Rails application’s legacy asset pipeline is blocking maintainability, security updates, or reliable builds.

Open copy-ready prompt
Act as a senior Rails build engineer modernizing an application that relies on an old asset pipeline, handwritten JavaScript, and environment-specific compilation behavior. Develop a migration plan for moving to a supported asset strategy while preserving caching, source maps, CSS behavior, JavaScript initialization, and rollback capability. Include an inventory method, compatibility questions, build-reproducibility checks, browser test coverage, release sequencing, and a comparison of two plausible target approaches. Use generic examples rather than claiming a tool is universally best, and require verification against the application’s versions and deployment platform. Do not expose private package registries or credentials. Format the response as an options table plus a staged implementation checklist. Self-check that development, test, and production asset behavior are each validated independently.

Optional inputs: [Rails version] [asset tool] [JavaScript entry points] [CSS preprocessor] [browser support] [build environment]

88Test-Suite Modernization for Safe Migration

Use when: Legacy tests are too slow, brittle, or incomplete to support a major Ruby modernization effort.

Open copy-ready prompt
Act as a test-architecture consultant helping a Ruby team modernize a fragmented suite containing old unit tests, controller tests, flaky integration tests, and little production-like coverage. Design a risk-based test modernization plan tied to a planned runtime or framework migration. Explain how to baseline failures, classify tests, detect nondeterminism, add characterization tests around critical behavior, and use mutation or contract testing where valuable. Provide a coverage map, sequencing table, ownership model, and sample CI quality gates without inventing percentages or promising that coverage alone proves safety. Recommend quarantining only with an expiration and accountable owner. Self-check that each migration risk maps to an observable test, each flaky test has a diagnosis path, and no gate encourages suppressing meaningful failures.

Optional inputs: [test frameworks] [suite duration] [flaky-test report] [critical workflows] [CI limits] [current coverage data]

89Deployment and Rollback Runbook for Modernization

Use when: A Ruby modernization release needs an operationally safe rollout plan rather than code changes alone.

Open copy-ready prompt
Act as a release engineer writing a deployment runbook for a Ruby application undergoing a runtime and dependency upgrade. Cover artifact creation, immutable build inputs, database compatibility, feature flags, canary exposure, health signals, logs, metrics, incident ownership, rollback versus roll-forward decisions, and post-release verification. Keep all steps non-destructive and generic: do not include real secrets, unauthorized-access techniques, or commands that drop data or bypass approvals. Specify prerequisites, decision thresholds to be agreed with the service owner, and an incident communication template. Distinguish application rollback from schema rollback and explain why they may differ. Deliver a concise runbook with a preflight checklist, timeline, abort criteria, and audit notes. Self-check that every operational action has an owner, observable success signal, and documented recovery path.

Optional inputs: [deployment system] [service-level objectives] [canary percentage] [feature flags] [schema changes] [on-call roles]

90Modernization Business Case and Decision Memo

Use when: Technical leaders need an evidence-based decision memo comparing modernization paths for a legacy Ruby product.

Open copy-ready prompt
Act as a principal engineer preparing a decision memo for executives who must choose among in-place upgrades, incremental refactoring, partial replatforming, and a full rewrite of a legacy Ruby product. Compare options using evidence-based criteria: delivery risk, security-support exposure, operational complexity, staffing, customer disruption, reversibility, and total effort over a defined horizon. Do not assert a valuation, savings figure, or guaranteed outcome without source data; use ranges, assumptions, and sensitivity questions instead. Recommend a decision only conditionally, stating what evidence would change it. Structure the memo with executive conclusion, current-state facts, options table, risk register, discovery investments, decision gates, and open questions for legal, security, and finance review where relevant. Self-check every conclusion against a stated fact or explicit assumption.

Optional inputs: [application age] [support deadlines] [team capacity] [incident data] [delivery constraints] [planning horizon]

10. Delivery, Documentation, and Engineering Leadership

91Plan a Ruby Release Runbook

Use when: A team needs a repeatable, low-risk process for releasing a Ruby application across environments.

Open copy-ready prompt
Act as a senior Ruby release engineer helping a product team prepare a production release for a Rails application. Design a practical runbook covering readiness checks, dependency and migration review, staging verification, approval gates, deployment sequencing, rollback criteria, observability, and post-release communication. Assume the team uses Bundler, CI, feature flags, and a documented change-management process; do not include secrets, destructive commands, or instructions that bypass authorization. Present the result as a checklist with owners, evidence to collect, stop conditions, and a short incident path. Include a final self-check that identifies missing rollback evidence, untested migrations, and any step lacking a named accountable person.

Optional inputs: [application architecture] [deployment platform] [release window] [migration details] [approval policy]

92Document a Ruby Service for New Maintainers

Use when: A Ruby service works in production but its design and operating knowledge are concentrated in a few engineers.

Open copy-ready prompt
Act as a staff Ruby engineer creating maintainer documentation for a mature background-processing service. Write a concise documentation package that explains the service’s purpose, domain boundaries, request or job lifecycle, important classes, external dependencies, configuration conventions, local setup, test strategy, deployment overview, monitoring signals, and common failure modes. Make clear which statements require confirmation from the repository or current runbooks rather than presenting assumptions as facts. Organize the deliverable into a README outline followed by an architecture narrative and a first-week onboarding checklist. Include a self-check that verifies every named dependency has an owner, every operational claim has an evidence source, and no credential or sensitive production data appears in the documentation.

Optional inputs: [repository structure] [service diagram] [runbooks] [dependency list] [onboarding audience]

93Review a Ruby Pull Request as a Technical Lead

Use when: A Ruby pull request needs a rigorous review focused on correctness, maintainability, and delivery risk.

Open copy-ready prompt
Act as a Ruby technical lead reviewing a pull request that adds a subscription-renewal workflow to a Rails application. Produce review comments grouped by blocking correctness issues, significant risks, maintainability concerns, and optional improvements. Inspect the proposed behavior conceptually for idempotency, authorization, transaction boundaries, retries, time zones, validation, test coverage, observability, and backward compatibility. Do not invent line-specific defects without supplied code, and do not recommend exposing secrets or weakening access controls. For each concern, state the risk, the evidence needed, and a safe next step. Finish with a merge-readiness decision rubric and a self-check confirming that every conclusion is tied to an observed behavior or explicitly labeled assumption.

Optional inputs: [diff] [domain rules] [database schema] [test results] [service-level objectives]

94Establish Ruby Code-Quality Standards

Use when: A Ruby organization needs shared standards that improve consistency without turning review into subjective style policing.

Open copy-ready prompt
Act as an engineering manager with deep Ruby experience. Draft a lightweight code-quality standard for a team maintaining Rails applications and reusable Ruby gems. Cover formatting, naming, object boundaries, error handling, dependency management, testing layers, documentation, logging, security-sensitive code, performance review, and exceptions to the standard. Separate automatically enforceable rules from principles requiring human judgment, and recommend a proportionate adoption sequence using existing CI checks where possible. Write the deliverable as a policy with rationale, examples of acceptable exceptions, review questions, and an ownership model for revisions. Include a self-check that tests whether each rule is measurable, technology-appropriate, accessible to new contributors, and unlikely to reward cleverness over clarity.

Optional inputs: [team size] [Ruby version] [frameworks] [existing linters] [release cadence]

95Lead a Ruby Incident Retrospective

Use when: A production incident involving Ruby code requires learning and accountability without blame.

Open copy-ready prompt
Act as a blameless incident facilitator for a Rails application that experienced elevated checkout failures after a dependency upgrade. Create a retrospective agenda and evidence-based report template covering impact, timeline, detection, contributing conditions, technical and organizational factors, decisions, mitigations, and follow-up actions. Distinguish confirmed facts from hypotheses, protect customer and employee confidentiality, and avoid assigning fault to individuals. Make actions specific, prioritized, owned by roles rather than unnamed groups, and verifiable by observable outcomes. Present the result in sections suitable for an internal incident document, including prompts for logs, deployment records, tests, and customer communications. Add a self-check that confirms the timeline is timezone-labeled, claims have sources, and no action merely says “be more careful.”

Optional inputs: [incident timeline] [impact metrics] [deployment record] [logs] [existing postmortem policy]

96Design a Ruby Team Mentoring Program

Use when: A Ruby team wants a structured way to grow engineers while improving delivery capability and knowledge sharing.

Open copy-ready prompt
Act as a Ruby engineering director designing a six-month mentoring program for a distributed team with mixed experience levels. Define objectives, participant matching principles, meeting rhythms, learning paths, practical project opportunities, feedback methods, inclusion safeguards, and success measures. Include separate tracks for application development, testing, performance, and operational ownership, while allowing participants to adapt goals with their managers. Avoid treating one coding style or career path as universally correct. Deliver a program charter, sample monthly plan, mentor guide, mentee preparation sheet, and metrics dashboard specification. Include a self-check that verifies participation is voluntary, evaluation criteria are transparent, workload is realistic, and metrics measure growth and confidence rather than hours spent in meetings.

Optional inputs: [team roles] [experience levels] [time budget] [business priorities] [existing learning resources]

97Coordinate a Ruby Dependency Upgrade

Use when: A Ruby project needs leadership and documentation for a significant Ruby, Rails, or gem upgrade.

Open copy-ready prompt
Act as the technical owner for upgrading a production Ruby application from its current supported stack to a newer validated version. Create an upgrade plan that inventories dependencies, identifies compatibility risks, sequences small reversible changes, defines test and benchmark gates, addresses deprecations, and establishes communication with product and operations stakeholders. Require repository evidence before declaring a component compatible, and distinguish automated checks from manual verification. Do not provide destructive migration instructions or assume permission to alter production. Format the output as a decision log, phased work plan, risk register, and go/no-go checklist. Finish with a self-check confirming that rollback boundaries, ownership, test evidence, support timelines, and security review are all explicit.

Optional inputs: [current Ruby version] [target versions] [Gemfile.lock] [CI matrix] [support policy]

98Write a Ruby Architecture Decision Record

Use when: A Ruby team must record and communicate a consequential design choice for future maintainers.

Open copy-ready prompt
Act as a principal Ruby architect writing an architecture decision record for choosing between extending a modular monolith and extracting a separate service for invoice processing. Explain the context, forces, considered alternatives, decision, trade-offs, consequences, migration boundaries, operational implications, and review triggers. Keep the analysis grounded in supplied constraints such as team capacity, latency needs, data ownership, reliability expectations, and compliance obligations; label unknowns clearly. Do not present a fashionable architecture as automatically superior. Use a completed ADR format with a comparison matrix and a list of assumptions requiring validation. Include a self-check that confirms the decision is reversible where claimed, ownership is assigned, rejected options have fair treatment, and success criteria can be measured.

Optional inputs: [current architecture] [traffic profile] [team capacity] [data boundaries] [reliability goals]

99Improve Ruby Delivery Metrics

Use when: Engineering leaders need useful delivery measurements without encouraging unsafe speed or vanity reporting.

Open copy-ready prompt
Act as an engineering effectiveness lead for a Ruby product team. Propose a balanced measurement system for delivery and reliability, using indicators such as lead time, deployment frequency, change failure rate, recovery time, escaped defects, test feedback time, and developer experience. Define each metric precisely, state what it can and cannot prove, identify responsible data sources, and recommend review intervals. Explain safeguards against gaming, harmful individual ranking, and interpreting small samples as certainty. Present the deliverable as a metric dictionary, dashboard layout, governance guide, and example leadership discussion. Include a self-check that verifies each metric has a clear denominator, a known limitation, an accountable owner, and a decision it informs rather than merely appearing on a chart.

Optional inputs: [CI data] [deployment records] [incident history] [team goals] [privacy constraints]

100Prepare a Ruby Engineering Handoff

Use when: Ownership of a Ruby application or subsystem is moving between teams and continuity must be protected.

Open copy-ready prompt
Act as an engineering lead preparing a formal handoff of a Ruby payments subsystem to a new owning team. Create a transition package covering scope, responsibilities, system dependencies, domain terminology, code map, operational procedures, open risks, known limitations, support escalation, access requirements, and a staged shadow-to-ownership schedule. Treat access as least-privilege and authorized; never include credentials, tokens, or sensitive customer records. Require the receiving team to demonstrate understanding through safe exercises such as tracing a non-production request and locating documented dashboards. Format the result as a handoff brief, RACI table, rehearsal agenda, and acceptance checklist. Add a self-check confirming every critical responsibility has one owner, every escalation path works, and unresolved risks are explicitly accepted or tracked.

Optional inputs: [subsystem boundary] [current owner] [receiving team] [runbooks] [support hours] [non-production environment]

Responsible use

Validate generated code and operational guidance, protect credentials and user data, and retain human ownership of security-sensitive and production decisions.

Prompts and Agents

Human Resources AI Prompts

This 100-prompt library helps HR teams plan, communicate, analyze, and improve people operations while keeping fairness, confidentiality, and human judgment at the center.

How to use these prompts

Replace bracketed placeholders with approved context only, remove unnecessary personal information, and use outputs as working drafts for qualified human review.

1. Workforce Planning and Ethical Job Design

1Capacity Forecasting Without Overwork

Use when: You need a practical headcount and workload forecast that protects employees from chronic overextension.

Open copy-ready prompt
Act as a workforce-planning consultant advising a 300-person customer-support organization whose ticket volume fluctuates seasonally. Build a 12-month capacity plan using the supplied demand, service-level, absence, and working-hours data. Separate assumptions from observed facts, model base, high-demand, and lower-demand scenarios, and identify where schedule changes, cross-training, technology, or additional hiring could close gaps. Do not recommend unpaid overtime, unsafe workloads, or decisions based on protected characteristics. Present an assumptions table, scenario comparison, staffing implications, and ethical implementation notes. Flag any conclusion requiring qualified HR, employment-law, or health-and-safety review. Finish with five data-quality checks and one employee-feedback question for each major planning decision.

Optional inputs: [Demand history] [Service-level target] [Absence rate] [Working-hours policy] [Planning horizon]

2Ethical Job Architecture Review

Use when: You are redesigning roles and need to clarify responsibilities without creating hidden workload or discriminatory requirements.

Open copy-ready prompt
Act as an HR organization-design specialist reviewing a proposed job architecture for a growing nonprofit. Examine role summaries, reporting lines, decision rights, and stated qualifications. Identify duplicated duties, ambiguous accountability, unrealistic combinations of skills, unpaid “stretch” expectations, and requirements that may unnecessarily exclude qualified candidates. Rewrite roles in plain language with essential functions, reasonable performance measures, development pathways, and a rationale for each change. Avoid inferring capability from age, disability, race, gender, family status, health, or other protected characteristics. Return a gap table, revised role profiles, and an employee-consultation sequence. Mark issues needing qualified HR or legal review, and self-check that every requirement is job-related, measurable, and evidence-supported.

Optional inputs: [Current role profiles] [Org chart] [Pay bands] [Consultation notes] [Applicable jurisdiction]

3Skills-Based Workforce Scenario Planning

Use when: You want to plan future capability needs around skills rather than credentials or headcount alone.

Open copy-ready prompt
Act as a strategic HR analyst helping a regional logistics company prepare for automation over three years. Translate the business strategy into a skills inventory, distinguish current capabilities from emerging needs, and create reskill-first, mixed-hiring, and technology-led redesign scenarios. For each, estimate affected work activities, learning requirements, redeployment opportunities, transition risks, and indicators to monitor. Do not assume automation eliminates people or recommend dismissals; center dignified consultation, accessibility, fair selection, and support for affected employees. Use an evidence log separating provided data from assumptions. Deliver a skills matrix, scenario scorecard, and 90-day discovery plan. Require qualified HR, legal, and employee-relations review before action, then check for bias in skills definitions and measurement.

Optional inputs: [Business strategy] [Skills inventory] [Technology roadmap] [Learning budget] [Aggregated workforce data]

4Fair Shift and Schedule Design

Use when: You need equitable schedules that meet operational demand while respecting employee constraints and wellbeing.

Open copy-ready prompt
Act as an ethical scheduling adviser for a healthcare-adjacent service desk operating seven days a week. Design a scheduling framework from the coverage requirements, availability patterns, rest rules, and employee preferences provided. Explain how shifts are allocated, how predictability is maintained, how emergencies are handled, and how employees can request accommodations or challenge an outcome. Do not expose medical or family information, and do not use protected characteristics as optimization variables. Compare two feasible approaches and discuss trade-offs in continuity, fairness, fatigue, and cost without unsupported estimates. Provide a policy outline, anonymized roster logic, fairness audits, and escalation route. Require qualified HR, legal, and occupational-health review, then self-test edge cases involving leave, disability accommodation, and last-minute absences.

Optional inputs: [Coverage requirements] [Availability rules] [Rest requirements] [Preference survey] [Accommodation process]

5Job Evaluation and Pay-Equity Preparation

Use when: You are reviewing whether jobs are consistently valued before a compensation or restructuring exercise.

Open copy-ready prompt
Act as a compensation analyst preparing a job-evaluation review for a technology company with inconsistent titles. Compare roles using documented, job-related factors such as complexity, accountability, required expertise, working conditions, and impact. Normalize titles cautiously, identify comparable work, and highlight apparent inconsistencies without declaring unlawful discrimination or promising pay adjustments. Protect confidentiality through anonymized identifiers and aggregated patterns. Return factor definitions, an evaluation worksheet, preliminary findings, manager questions, and a remediation decision tree. State which evidence is missing and which conclusions need employee input. Do not infer value from negotiation history, personality, or demographic characteristics. Require qualified compensation, HR, and legal review before employment action, and finish with a self-audit for factor consistency, documentation quality, and adverse-impact risk.

Optional inputs: [Anonymized job descriptions] [Evaluation factors] [Pay bands] [Title list] [Relevant policy]

6Inclusive Return-to-Work Role Design

Use when: You need to redesign duties and support a safe, respectful return-to-work process without seeking unnecessary personal information.

Open copy-ready prompt
Act as an HR accommodations specialist supporting return-to-work arrangements after extended leave. Based only on functional job requirements, create temporary and longer-term options such as adjusted hours, phased responsibilities, assistive technology, hybrid work, workload sequencing, and structured check-ins. Do not diagnose a condition, request confidential medical details, or presume every employee needs the same support. Distinguish essential functions from flexible methods of completion and explain consent, privacy, and documentation. Present a role-function map, options table, manager conversation guide, review timetable, and escalation points. Require qualified HR, legal, and occupational-health review for individual cases, then self-check that the plan preserves dignity, accessibility, performance clarity, confidentiality, and non-retaliation.

Optional inputs: [Essential functions] [Workplace policy] [Available adjustments] [Review intervals] [Employee preferences]

7Team Restructure Consultation Plan

Use when: A reorganization is being considered and you need a transparent consultation process rather than a predetermined personnel outcome.

Open copy-ready prompt
Act as an employee-relations consultant designing a consultation plan for a proposed team restructure at a public-interest organization. Convert business objectives into decision criteria, alternatives, affected-work analysis, and genuine listening opportunities. Make clear what is decided, what remains open, who receives information, and how feedback is recorded and answered. Do not recommend selecting people by protected characteristic, personal affinity, health, age, union activity, or other irrelevant factors, and do not imply consultation guarantees a particular result. Deliver a stakeholder map, consultation timeline, question bank, feedback register, and communication principles. Protect confidential information and require qualified HR and legal review for jurisdiction-specific obligations. Self-check that alternatives were considered, feedback can influence the proposal, and accessibility needs are addressed.

Optional inputs: [Business rationale] [Current structure] [Alternatives] [Employee groups] [Consultation obligations]

8Ethical Use of Workforce Analytics

Use when: You are assessing whether workforce data can responsibly inform planning without turning surveillance into employment decisions.

Open copy-ready prompt
Act as a people-analytics governance lead reviewing a proposal to use workforce data for capacity planning. Evaluate data fields, sources, retention periods, access controls, aggregation thresholds, and intended decisions. Separate legitimate planning signals from proxies for protected characteristics or intrusive monitoring, and recommend a minimum-necessary dataset. Explain employee notice, error correction, and why analytics should not automatically rank, discipline, or terminate individuals. Return a data inventory, risk-and-mitigation register, approved-use statement, prohibited-use statement, and validation protocol using aggregated results. Do not invent legal requirements; identify questions for qualified privacy, HR, works-council, and legal reviewers. Before concluding, self-check purpose limitation, confidentiality, accessibility, bias testing, human oversight, and whether each metric supports a documented planning decision.

Optional inputs: [Data fields] [Data sources] [Retention policy] [Intended decisions] [Jurisdictions]

9Workload and Wellbeing Risk Assessment

Use when: Teams report rising pressure and you need to diagnose job-design risks before proposing staffing changes.

Open copy-ready prompt
Act as an occupational-work-design consultant assessing workload risks in a distributed project team. Analyze anonymized workload logs, pulse-survey themes, deadlines, meeting patterns, staffing levels, and absence signals. Distinguish workload volume, unpredictability, low control, role ambiguity, inadequate recovery time, and resource constraints. Recommend changes to prioritization, coordination, staffing, tools, and manager practices, but do not diagnose individuals or treat survey scores as proof of a medical condition. Present an evidence-to-risk matrix, immediate safeguards, medium-term redesign options, and reassessment measures. Preserve confidentiality through non-identifying patterns, and note where qualified occupational-health, HR, or legal advice is required. Self-check that recommendations address root causes, do not shift hidden work onto vulnerable groups, and include employee validation before implementation.

Optional inputs: [Anonymized workload data] [Survey themes] [Deadline calendar] [Absence trends] [Team operating model]

10Internal Mobility and Redeployment Framework

Use when: You need a fair process for filling future roles and supporting employees whose current work is changing.

Open copy-ready prompt
Act as an internal-mobility program designer for a manufacturing company introducing new production technology. Build a redeployment framework that maps declining tasks to adjacent roles, identifies trainable skill gaps, and gives current employees fair access to opportunities. Define transparent eligibility, assessment, learning support, accommodation, pay-treatment questions, and appeal routes without using pedigree, informal sponsorship, age, disability, race, gender, or other protected characteristics as selection criteria. Include safeguards against managers withholding talent and against automated screening becoming the sole decision-maker. Deliver a transition map, eligibility rubric, employee-facing process, manager checklist, and aggregated outcome dashboard. Avoid promising placement or continuity; require qualified HR, legal, labor-relations, and training specialists to review. Finish with a bias, privacy, accessibility, and documentation self-check.

Optional inputs: [Technology changes] [Current tasks] [Role catalog] [Training resources] [Appeal procedure]

2. Recruiting, Interviewing, and Candidate Experience

11Structured Interview Blueprint

Use when: You need a consistent, job-relevant interview plan that multiple interviewers can apply fairly.

Open copy-ready prompt
Act as a senior talent-acquisition partner designing a structured interview for a mid-level customer-support manager role. Using the attached job description and competency framework, create a 45-minute interview blueprint with a brief opening script, five behavior-based questions, two realistic follow-up probes per question, a four-level anchored scoring rubric, and a closing explanation of next steps. Tie every question to an essential responsibility or competency, and avoid questions about protected characteristics, family status, health, age, religion, or other non-job-related personal information. Include guidance for recording evidence rather than impressions and note where qualified HR or legal review is appropriate. Before finalizing, check that each question is answerable through work-related evidence, has one primary competency, and can be scored consistently by different interviewers.

Optional inputs: [Job description] [Competency framework] [Interview length] [Interview panel roles]

12Inclusive Job Advertisement Review

Use when: You want to identify barriers or biased wording in a draft vacancy announcement before publication.

Open copy-ready prompt
Act as an inclusive-recruitment editor reviewing a draft job advertisement for a software implementation consultant. Return a three-column table labeled “Original wording,” “Risk or barrier,” and “Suggested revision,” followed by a clean revised advertisement. Preserve legitimate qualifications and measurable responsibilities, but flag inflated requirements, unnecessary degree filters, gender-coded language, vague culture claims, and accessibility problems. Do not infer protected characteristics or promise a hiring outcome. Make the revised copy specific about essential versus trainable skills, work location, compensation information if supplied, accommodations, and the application process. Separate evidence-based observations from editorial suggestions, and identify any compliance-sensitive statements that require qualified HR or legal review. Self-check that the revision remains accurate, welcoming, and no longer than 500 words.

Optional inputs: [Draft advertisement] [Role level] [Location or remote policy] [Compensation range] [Accommodation process]

13Candidate-Screening Scorecard

Use when: You need a defensible first-round screening method that focuses on demonstrated job requirements.

Open copy-ready prompt
Act as an HR operations analyst creating a resume-screening scorecard for a regulated-industry project coordinator opening. Convert the supplied job description into six weighted, job-related criteria with observable evidence examples, a simple 0–3 rating scale, and a “do not score” list covering names, photos, addresses, graduation years, gaps in employment, and other potentially biasing information unless legally necessary and job-relevant. Explain how to handle equivalent experience and incomplete resumes without guessing. Provide a one-page reviewer instruction sheet and a calibration exercise using three fictional, anonymized profiles. State that the tool supports—not replaces—qualified human judgment and HR or legal review. Check that weights total 100%, criteria do not duplicate one another, and every criterion maps to an essential duty.

Optional inputs: [Job description] [Jurisdiction] [Required qualifications] [Equivalent-experience policy]

14Behavioral Interview Question Bank

Use when: You are building role-specific questions that reveal capabilities without inviting inappropriate personal disclosure.

Open copy-ready prompt
Act as a behavioral-interview specialist developing a question bank for a nonprofit program director. Produce eight questions grouped under strategic planning, stakeholder communication, financial stewardship, people leadership, and ethical decision-making. For each, include the competency tested, a short rationale, two neutral probes, positive evidence indicators, and red flags that concern the answer—not the candidate’s personality or background. Add one alternative question for candidates who have not held a formal management title. Exclude hypotheticals that require unpaid labor, questions about protected characteristics, and requests for confidential information from a current or former employer. Mark any jurisdiction-specific practice for HR or legal review. Self-check that the bank contains no duplicate competency, uses plain language, and allows candidates equal time and context.

Optional inputs: [Role profile] [Mission or program goals] [Interview panel] [Time available]

15Interviewer Calibration Workshop

Use when: Interviewers need practice applying a shared rubric before a high-volume hiring round.

Open copy-ready prompt
Act as a talent-development facilitator preparing a 60-minute interviewer-calibration workshop for a retail operations hiring panel. Create an agenda with learning objectives, facilitator talking points, two anonymized sample answers, a scoring exercise, debrief questions, and a short commitment checklist. Demonstrate how to distinguish evidence from affinity bias, halo effects, confidence judgments, and assumptions about career paths. Use the organization’s four-point competency rubric, but do not invent candidate facts beyond the sample answers. Include a process for documenting disagreement and escalating concerns to HR, with qualified legal review where local requirements make that necessary. Keep the workshop practical and psychologically safe. Verify that every activity supports consistent, job-related evaluation and that no exercise asks participants to rank candidates by demographic or personal traits.

Optional inputs: [Scoring rubric] [Role] [Panel size] [Workshop duration] [Sample interview notes]

16Candidate Communication Sequence

Use when: You need clear, respectful messages across the stages of a hiring process.

Open copy-ready prompt
Act as a candidate-experience manager writing a communication sequence for a three-stage hiring process for a healthcare administrator role. Draft six messages: application acknowledgment, screening invitation, interview confirmation, delay update, rejection after interview, and offer-stage next steps. Use a warm, concise tone; explain what candidates should prepare, who to contact for accommodations, expected response times, and what information will or will not be shared. Do not imply guaranteed employment, disclose confidential deliberations, or make promises unsupported by the supplied process. Provide subject lines, editable message text, and a timing recommendation for each message. Note where HR or legal review is required before sending. Check that the sequence is accessible, gender-neutral, consistent about timelines, and respectful to candidates who are not selected.

Optional inputs: [Organization voice] [Process stages] [Response-time targets] [Accommodation contact] [Approved benefits or offer language]

17Reasonable-Adjustment Interview Plan

Use when: A candidate requests an interview adjustment and the team needs a practical, confidential response.

Open copy-ready prompt
Act as an HR accommodations coordinator responding to a candidate who requests an alternative interview format because of a disability. Create a confidential action plan covering acknowledgment, information minimization, interviewer preparation, accessible scheduling, technology checks, consistent evaluation, and follow-up. Offer options without demanding unnecessary medical details or asking the candidate to justify a diagnosis. Include a short candidate-facing email and an internal checklist that protects privacy and uses only job-related criteria. Do not decide eligibility under a specific law; identify points requiring qualified HR or legal review based on the applicable jurisdiction. Include a contingency plan if the proposed format fails. Self-check that the plan preserves essential assessment standards, avoids stigmatizing language, and assigns each action to a responsible role.

Optional inputs: [Candidate’s requested adjustment] [Interview format] [Jurisdiction] [Accommodation contact] [Essential assessment activities]

18Reference-Check Protocol

Use when: You need a consistent, permission-based reference process that avoids unreliable or intrusive inquiries.

Open copy-ready prompt
Act as a senior HR compliance specialist creating a reference-check protocol for a senior finance analyst hire. Provide a consent checkpoint, a standard invitation script, ten questions limited to role-relevant performance and collaboration, a factual documentation template, and rules for handling conflicting information. Explain how to distinguish verified facts from opinions, avoid confidential information about other employees, and offer the candidate a fair opportunity to respond to material concerns under the organization’s policy. Do not recommend contacting references without authorization or using back-channel sources. Flag jurisdiction- and policy-dependent practices for qualified HR or legal review. Self-check that every question relates to the job, the protocol records source and date, and no conclusion is drawn from unverified allegations.

Optional inputs: [Role requirements] [Consent language] [Reference policy] [Jurisdiction] [Documentation system]

19Candidate-Experience Survey Analysis

Use when: You want to turn anonymized recruiting feedback into prioritized process improvements.

Open copy-ready prompt
Act as a people-analytics consultant analyzing an anonymized candidate-experience survey from a quarterly hiring cycle. Produce an executive summary of no more than 150 words, a table of response rates and satisfaction by process stage, three evidence-based themes, and five prioritized improvements with owner, effort, expected benefit, and measurement method. Suppress or aggregate small groups so individuals cannot be identified, and clearly label missing, self-selected, or low-confidence data. Do not infer protected characteristics, blame interviewers, or claim causation from comments alone. Quote feedback only when it is sufficiently anonymized and permission allows. Recommend qualified HR or legal review for privacy-sensitive findings. Check calculations, distinguish observation from interpretation, and ensure every proposed metric can be collected without excessive candidate data.

Optional inputs: [Anonymized survey export] [Process-stage definitions] [Minimum reporting group size] [Privacy policy]

20Offer-Decline Root-Cause Review

Use when: You need to understand why qualified candidates decline offers without turning anecdotes into unsupported conclusions.

Open copy-ready prompt
Act as a recruiting-strategy analyst reviewing six months of anonymized offer-decline records for a professional-services team. Build a root-cause analysis that separates documented reasons, candidate-reported reasons, recruiter observations, and unknowns. Return a coding taxonomy, a concise findings table with counts and denominators, representative anonymized examples, limitations, and three testable process experiments. Do not assume that compensation, manager quality, location, or identity caused a decision unless the data supports that interpretation; do not expose candidate or employer-confidential information. Include a verification plan using approved records and candidate consent, plus points requiring qualified HR, privacy, or legal review. Self-check that categories are mutually understandable, percentages use the correct base, and recommendations are framed as hypotheses rather than guarantees.

Optional inputs: [Anonymized decline log] [Offer data] [Recruiting stages] [Privacy thresholds] [Approved follow-up method]

3. Onboarding, Learning, and Career Development

21Design a Role-Based 30-Day Onboarding Plan

Use when: A new employee needs a consistent first-month experience tailored to the role, team, and working environment.

Open copy-ready prompt
Act as an experienced HR onboarding designer supporting a growing company that is welcoming a new customer-success manager. Build a practical 30-day onboarding plan that balances compliance, product knowledge, relationship building, systems access, and early contribution. Organize it by week, with objectives, activities, responsible owners, estimated time, and evidence of completion. Include checkpoints for accessibility, confidentiality, and psychological safety, and distinguish mandatory training from helpful context. Avoid collecting unnecessary personal information or making assumptions about culture, ability, family status, or background. Flag items requiring qualified HR, privacy, or legal review. Before finalizing, check that every activity has a clear owner, a realistic sequence, and a measurable completion signal.

Optional inputs: [Role and level] [Work location] [Employment type] [Team structure] [Required systems] [Known accessibility needs]

22Create an Inclusive New-Hire Orientation Agenda

Use when: An organization wants an orientation session that is welcoming, accessible, informative, and respectful of varied employee backgrounds.

Open copy-ready prompt
Act as an HR learning facilitator preparing a two-hour orientation for employees joining a hybrid organization across several countries. Create a timed agenda with facilitator notes, plain-language explanations, interaction options, breaks, and follow-up resources. Cover organizational purpose, expected ways of working, reporting channels, data protection, benefits navigation, and where to seek support without overwhelming participants. Provide alternatives to public self-disclosure and ensure activities do not pressure people to reveal protected or sensitive information. Note where local policy, employment law, or qualified HR review may change the content. End with a short quality checklist confirming accessibility, cultural neutrality, confidentiality, and a clear route for unanswered questions.

Optional inputs: [Countries or regions] [Orientation length] [Audience size] [Delivery platform] [Language requirements] [Available policies]

23Map a Compliance Learning Curriculum

Use when: HR needs to sequence required learning while keeping training relevant, trackable, and proportionate to employee risk.

Open copy-ready prompt
Act as an HR compliance-learning specialist for a mid-sized healthcare software company. Design a twelve-month learning curriculum for employees, people managers, contractors, and senior leaders, covering privacy, information security, respectful conduct, accessibility, conflicts of interest, and role-specific obligations. Present a matrix showing audience, learning objective, delivery method, frequency, estimated duration, owner, completion evidence, and escalation route. Separate legally or contractually required content from recommended development. Do not claim that training alone guarantees compliance, and do not reproduce confidential case details. Identify topics that require review by qualified HR, legal, privacy, or security professionals. Self-check the matrix for duplication, missing audiences, unrealistic time demands, and ambiguous accountability.

Optional inputs: [Industry] [Employee groups] [Jurisdictions] [Existing courses] [Annual training hours] [Audit requirements]

24Build a Manager Coaching Conversation Guide

Use when: Managers need a structured, humane way to discuss an employee’s development without turning the conversation into an unsupported performance judgment.

Open copy-ready prompt
Act as an organizational-development consultant coaching a first-time manager before a quarterly career conversation. Write a conversation guide with preparation steps, opening language, exploratory questions, listening cues, development themes, and follow-up commitments. Show how to discuss strengths, interests, workload, learning preferences, barriers, and possible next experiences while avoiding promises about promotion or pay. Include examples of neutral, behavior-based language and explain how to respond if the employee raises discrimination, harassment, health, accommodation, or retaliation concerns; direct those matters to qualified HR or legal channels rather than investigating casually. Provide a one-page conversation record that minimizes sensitive data. Check that each question is voluntary, non-discriminatory, and connected to an actionable support option.

Optional inputs: [Manager experience] [Conversation duration] [Career framework] [Available learning resources] [Escalation contacts]

25Recommend a Skills Development Pathway

Use when: An employee wants to grow toward a target capability and needs an evidence-based development path rather than generic course suggestions.

Open copy-ready prompt
Act as a career-development advisor helping an operations analyst build capability in process improvement over six months. Create a development pathway that begins with a current-state skills assessment, then specifies practice opportunities, mentoring, reading or courses, stretch assignments, feedback points, and observable evidence of progress. Offer three pacing options—light, standard, and intensive—without implying that one path is universally best. Keep recommendations inclusive of different learning styles, schedules, disabilities, and access constraints. Do not infer potential from demographic characteristics or recommend decisions about promotion, compensation, or termination. State when manager and qualified HR review are appropriate. Self-check that every activity maps to a defined skill, has a feasible time commitment, and can be evaluated fairly.

Optional inputs: [Target capability] [Current skill evidence] [Time available] [Budget] [Preferred learning modes] [Career framework]

26Create a Peer Mentoring Program Blueprint

Use when: HR is launching peer mentoring and needs safeguards, matching principles, operating routines, and success measures.

Open copy-ready prompt
Act as an employee-learning program manager designing a six-month peer mentoring program for a 200-person company. Produce a blueprint covering purpose, eligibility, voluntary participation, matching criteria, onboarding for mentors and mentees, meeting cadence, discussion boundaries, confidentiality expectations, accessibility, rematching, and closure. Make clear that mentors are not therapists, investigators, managers, or legal advisers, and explain how participants can escalate concerns safely to qualified HR or other designated professionals. Recommend aggregate evaluation measures that do not expose individual disclosures or disadvantage protected groups. Include a sample launch timeline and a concise risk register. Before delivering, verify that participation is genuinely optional, selection does not create favoritism, and data collection is limited to a stated purpose.

Optional inputs: [Organization size] [Program duration] [Participant eligibility] [Matching preferences] [Support resources] [Privacy requirements]

27Develop an Internal Mobility Application Process

Use when: An organization wants employees to pursue internal roles through a transparent, equitable, and well-documented process.

Open copy-ready prompt
Act as an HR operations architect redesigning internal mobility for a company with inconsistent team practices. Draft a process from role publication through application, assessment, selection, transition, and feedback. Provide stage owners, service-level targets, candidate communications, documentation standards, conflict-of-interest controls, and an appeals or concern route. Require consistent, job-related criteria and prohibit decisions based on protected characteristics, family responsibilities, medical information, or informal reputation. Explain how current managers may be informed without blocking a legitimate application, subject to policy and local law. Mark points requiring qualified HR or legal review. Include an audit checklist that tests equal access, record integrity, reasonable accommodation, confidentiality, and whether unsuccessful candidates receive respectful, useful communication.

Optional inputs: [Current mobility policy] [Jurisdictions] [Assessment methods] [Approval roles] [HRIS capabilities] [Target implementation date]

28Design a Learning Needs Assessment Survey

Use when: HR needs credible employee input to prioritize learning investments without collecting intrusive or unreliable data.

Open copy-ready prompt
Act as an HR research specialist creating a learning-needs assessment for a distributed workforce. Draft a concise survey with no more than 20 questions, combining scaled items, multiple choice, and optional open responses. Cover role-relevant capability gaps, preferred formats, barriers to participation, manager support, time availability, and emerging business needs. Use neutral wording, explain the purpose and retention period, make sensitive demographic questions optional or omit them, and avoid asking for confidential case information. Provide an introduction, response scale definitions, skip logic, and a plan for reporting only aggregated findings. Identify where qualified HR, privacy, accessibility, or works-council review may be needed. Self-check every question for bias, double-barreling, unnecessary data collection, and an actionable interpretation.

Optional inputs: [Employee population] [Survey platform] [Learning objectives] [Languages] [Privacy constraints] [Reporting audience]

29Prepare a Career Framework Communication Kit

Use when: HR is introducing career levels and needs clear materials that reduce confusion without promising automatic advancement.

Open copy-ready prompt
Act as an HR communications lead launching a career framework for professional and technical employees. Create a communication kit containing a plain-language announcement, manager talking points, employee FAQ, glossary, and a short town-hall outline. Explain levels through scope, impact, behaviors, and role-specific evidence rather than status or personality, and state that progression depends on demonstrated work, available roles, business context, and fair review—not tenure alone. Address lateral moves, specialist paths, development plans, calibration, and how employees can raise concerns. Avoid implying guaranteed promotion, pay outcomes, or a universal timeline. Identify statements requiring qualified HR or legal review. Check that the kit uses consistent definitions, avoids coded language, and gives employees a confidential support route.

Optional inputs: [Career levels] [Job families] [Review cycle] [Promotion governance] [Communication channels] [Known employee questions]

30Evaluate an Onboarding and Development Program

Use when: HR wants to assess whether its people programs improve experience and capability while protecting employee confidentiality.

Open copy-ready prompt
Act as an HR analytics and program-evaluation specialist reviewing a one-year onboarding and career-development program. Build an evaluation plan that combines process measures, participant feedback, learning evidence, retention context, manager observations, and equity checks. Present a logic model linking activities to intended outcomes, followed by metric definitions, data sources, collection timing, responsible owners, and interpretation cautions. Distinguish correlation from causation and avoid using small-group results to label individuals or protected populations. Recommend privacy-preserving aggregation, minimum reporting thresholds, and qualified HR, legal, privacy, or statistical review where appropriate. Include a decision memo template for continuing, adapting, or pausing components. Self-check that every metric has a defensible purpose, known limitation, and non-punitive use.

Optional inputs: [Program components] [Baseline measures] [Available data] [Reporting thresholds] [Evaluation period] [Decision makers]

4. Performance, Feedback, and Recognition

31Calibrate Performance Ratings Fairly

Use when: Managers apply inconsistent standards to comparable roles and need an evidence-based calibration discussion.

Open copy-ready prompt
Act as a senior HR business partner facilitating a performance-review calibration meeting for a 120-person organization. Create a practical guide that helps managers compare ratings using role expectations, documented outcomes, behavioral evidence, and agreed competency definitions rather than personality, visibility, or protected characteristics. Include a pre-meeting evidence checklist, discussion sequence, neutral questions for challenging inflated or deflated ratings, and a decision-log template. Keep employee information confidential and use anonymized examples where possible. Do not recommend discriminatory criteria or automated decisions. Flag points requiring qualified HR or legal review, especially potential disparate-impact concerns. Before finalizing, test the guide against a high performer, solid performer, and employee needing support, and identify where evidence remains insufficient.

Optional inputs: [Rating scale] [Competency framework] [Review timing] [Anonymized cases] [Applicable policies]

32Plan a Constructive Performance Conversation

Use when: A manager must address a recurring performance gap without making the conversation punitive, vague, or personally judgmental.

Open copy-ready prompt
Act as an employee-relations advisor coaching a first-time manager before a conversation about missed deadlines and inconsistent handoffs. Draft a realistic conversation plan with an opening, specific observations, an invitation for the employee’s perspective, clarifying questions, agreed expectations, support options, and a follow-up date. Use behavior-and-impact language, distinguish facts from assumptions, and avoid diagnosing motives or abilities. Include two possible employee responses—one receptive and one upset—with respectful manager replies. Preserve confidentiality and prohibit references to protected characteristics or medical information outside the appropriate HR process. State when qualified HR or legal review is needed before formal discipline. Self-check that every criticism is tied to an observable example and measurable next step.

Optional inputs: [Role expectations] [Anonymized examples] [Support offered] [Follow-up date] [Company policy]

33Create a 30-60-90-Day Improvement Plan

Use when: An employee needs a structured opportunity to improve performance with clear support, milestones, and fair evaluation criteria.

Open copy-ready prompt
Act as an HR performance-management specialist designing a 30-60-90-day improvement plan for an employee whose project documentation and stakeholder updates fall below the published role standard. Produce a concise plan with the concern, baseline evidence, three measurable objectives, milestones at days 30, 60, and 90, manager support, employee resources, check-in questions, documentation expectations, and possible outcomes in neutral language. Make goals realistic, job-related, and attainable with reasonable support; do not imply guaranteed employment or predetermined termination. Keep personal information confidential and avoid criteria that could disadvantage protected groups or employees with approved accommodations. Recommend qualified HR or legal review before issuance. Self-check that each objective has an observable measure, responsible owner, and review date.

Optional inputs: [Job expectations] [Documented baseline] [Training] [Accommodation process] [Review cadence]

34Design an Inclusive Peer-Feedback Survey

Use when: A team wants useful multi-rater feedback while reducing bias, retaliation risk, and popularity-based scoring.

Open copy-ready prompt
Act as an organizational-development consultant creating a peer-feedback survey for a cross-functional product team. Provide eight behavior-based questions, a balanced mix of scaled and open-ended responses, clear respondent instructions, and a scoring-and-reporting approach that protects confidentiality. Focus on collaboration, reliability, communication, inclusion, and contribution to shared outcomes; do not ask peers to rate personality, health, family circumstances, protected characteristics, or perceived “culture fit.” Explain minimum-response thresholds, comment redaction, and how managers should discuss themes without revealing individual sources. Note that qualified HR or legal review may be required for collection, retention, and monitoring rules. Self-check every question for observable behavior, neutral wording, and a clear connection to team work.

Optional inputs: [Team size] [Competencies] [Survey platform] [Response threshold] [Retention policy]

35Build an Equitable Recognition Program

Use when: Recognition is inconsistent or concentrated among highly visible employees rather than reflecting meaningful contributions across the workforce.

Open copy-ready prompt
Act as a total-rewards consultant designing an inclusive monthly recognition program for a hybrid organization. Write a program brief covering purpose, eligibility, nomination criteria, review roles, award categories, privacy choices, low-cost options, and an audit routine. Reward documented contributions such as customer impact, dependable operations, mentoring, problem-solving, and inclusive teamwork—not overtime, self-promotion, charisma, location, or access to senior leaders. Explain how to handle nominations containing confidential client or employee information and avoid discriminatory or retaliatory outcomes. Recommend HR review of policy, tax, accessibility, and legal implications before launch. Self-check the design with examples from frontline, remote, part-time, and less-visible operational roles to verify equitable access.

Optional inputs: [Workforce profile] [Budget] [Award frequency] [Organizational values] [Privacy requirements]

36Convert Engagement Comments into Actions

Use when: Survey comments reveal management or workload concerns, but leaders need to respond without exposing individual respondents.

Open copy-ready prompt
Act as an HR analytics partner interpreting anonymized employee-engagement comments from a 300-person department. Create an action plan that groups comments into themes, distinguishes urgent risks from routine improvements, and proposes no more than five actions with owners, time horizons, success indicators, and communication steps. Do not infer identities, treat isolated comments as representative without qualification, or reproduce sensitive quotations that could reveal a respondent. Separate evidence from interpretation and note where sample size or wording limits confidence. Include a manager briefing and a short employee-facing update that acknowledges concerns without promising uncontrollable outcomes. Flag retaliation, safety, privacy, and legal issues for qualified HR or legal review. Self-check that every action traces to an observed theme and has a measurable follow-up point.

Optional inputs: [Anonymized comments] [Response rate] [Department context] [Constraints] [Action owners]

37Write an Evidence-Based Recognition Nomination

Use when: A manager or colleague wants to recognize an employee clearly and credibly rather than relying on generic praise.

Open copy-ready prompt
Act as a professional communications editor helping a colleague write a recognition nomination for an employee who quietly prevented a major service disruption. Produce a 180-word nomination identifying the situation, observable actions, supported impact, and organizational value demonstrated. Use warm but precise language, avoid exaggeration, and do not disclose confidential customer, security, medical, or personnel details. If impact figures are unverified, use qualified wording or mark them for confirmation rather than inventing results. Avoid comparisons with coworkers and do not imply that recognition depends on protected traits, unpaid labor, or constant availability. Include a one-line evidence checklist for the nominator. Self-check every factual claim against the supplied notes and mark statements requiring manager or HR verification.

Optional inputs: [Employee role] [Situation] [Verified actions] [Documented impact] [Values demonstrated]

38Coach Managers to Receive Difficult Feedback

Use when: Managers become defensive during upward or 360-degree feedback and need a repeatable way to listen, respond, and improve.

Open copy-ready prompt
Act as an executive coach and HR facilitator creating a 45-minute workshop for managers receiving difficult feedback about interrupting colleagues and delaying decisions. Provide learning objectives, a timed agenda, facilitator notes, a listening framework, two practice scenarios, and a personal commitment worksheet. Teach managers to acknowledge impact without debating intent, ask clarifying questions, distinguish a pattern from a single perception, and agree on an observable experiment. Include language for feedback that is vague, unfairly delivered, or potentially retaliatory, with escalation to HR where appropriate. Protect confidentiality and prohibit attempts to identify anonymous respondents or punish them. Do not diagnose personality or mental health. Self-check that exercises assess listening and follow-through, not agreement with the feedback.

Optional inputs: [Workshop length] [Manager population] [Feedback themes] [Escalation route] [Follow-up method]

39Audit Performance Criteria for Bias

Use when: An organization is revising performance standards and wants to identify ambiguous, exclusionary, or accommodation-sensitive language before rollout.

Open copy-ready prompt
Act as an HR compliance and accessibility specialist auditing a draft performance framework for a customer-support team. Return a table with each criterion, potential ambiguity or bias risk, affected decision point, clearer job-related rewrite, evidence examples, and reviewer note. Look for standards that reward accent, social similarity, constant availability, unrecorded emotional labor, office presence, or work patterns unrelated to essential duties. Preserve legitimate requirements while distinguishing essential functions from preferred methods, and direct accommodation questions to the confidential process. Do not make legal conclusions; identify topics for qualified HR or legal review based on jurisdiction and policy. Keep the document free of employee-identifying information. Self-check every rewrite for measurability, accessibility, job relevance, and consistent application.

Optional inputs: [Draft framework] [Essential duties] [Work locations] [Accommodation policy] [Jurisdictions]

40Define a Feedback and Recognition Dashboard

Use when: HR leaders need a decision-ready summary of feedback and recognition patterns without overstating what imperfect data can prove.

Open copy-ready prompt
Act as an HR reporting analyst preparing a quarterly dashboard brief for senior leadership. Define a compact set of metrics covering review completion, documented-feedback quality, recognition distribution, employee follow-up, and participation by team or level. For each metric, provide its definition, numerator and denominator, privacy threshold, interpretation limits, and recommended action when it moves materially. Require disaggregation only where group sizes protect confidentiality and prohibit using protected-characteristic data for individual employment decisions. Explain how to separate correlation from causation and investigate disparities with qualified HR, compliance, or legal partners. Use a one-page executive summary followed by a metric dictionary and three qualified insights; do not fabricate missing figures. Self-check that calculations are reproducible, suppressed cells are respected, and every conclusion states its evidence boundary.

Optional inputs: [HRIS fields] [Quarter dates] [Privacy thresholds] [Audience] [Reporting hierarchy] [Data gaps]

5. Compensation, Benefits, and Workforce Analytics

41Audit Pay Equity by Job Level

Use when: You need a structured, privacy-conscious review of compensation differences across comparable roles.

Open copy-ready prompt
Act as a senior compensation analyst conducting an internal pay-equity review. Using the de-identified employee dataset and job architecture I provide, compare base pay, variable pay, tenure, location, level, performance ratings, and relevant protected-group data only where legally permitted and statistically appropriate. Identify meaningful pay gaps among genuinely comparable roles, separate explainable factors from unexplained differences, and flag small-cell privacy risks. Do not recommend pay, promotion, or termination decisions based on protected characteristics; frame findings as questions for qualified HR, employment-law, and statistical review. Return an executive summary, methodology, data limitations, gap tables, possible remediation scenarios, and a validation checklist. Before finalizing, test whether each conclusion is supported by sufficient sample size and label every assumption explicitly.

Optional inputs: [De-identified compensation file] [Job-level definitions] [Permitted demographic fields] [Geographies] [Review period]

42Build a Transparent Salary-Band Framework

Use when: You are designing salary ranges that managers can explain consistently and employees can understand.

Open copy-ready prompt
Act as a compensation design consultant helping a mid-sized employer create salary bands for professional and operational roles. Review the supplied job descriptions, market reference points, internal salaries, locations, and progression expectations. Propose a band structure with minimum, midpoint, maximum, range-spread rationale, placement guidance, and rules for promotion, lateral movement, hiring, and red-circling. Distinguish verified market evidence from judgment calls, avoid presenting market data as universally authoritative, and note where local law or qualified compensation counsel must review the approach. Do not infer employee worth from demographic traits or personal circumstances. Deliver a board-ready framework, a manager-facing explanation, and a list of data gaps. Self-check that every band has a documented rationale and that exceptions have approval controls.

Optional inputs: [Role catalog] [Market survey sources] [Geographic pay zones] [Current salaries] [Currency] [Pay philosophy]

43Compare Benefits Plans for Total Value

Use when: You need to evaluate employee benefits options without reducing the decision to headline premium cost.

Open copy-ready prompt
Act as a benefits strategy advisor comparing the health, retirement, leave, wellness, and voluntary-benefit plans in the attached materials. Build a like-for-like comparison that shows employer cost, employee cost, eligibility, waiting periods, coverage limits, network considerations, tax treatment where documented, and likely employee experience. Use only plan documents and clearly identified assumptions; do not invent coverage terms or predict individual medical outcomes. Explain trade-offs for different workforce segments without using protected characteristics to rank employees or exclude access. Present a weighted decision matrix, a sensitivity analysis for enrollment and utilization scenarios, questions for brokers, and a plain-language employee communication outline. Require qualified benefits, legal, tax, and actuarial review before adoption. Self-check that each material claim maps to a source document or is labeled uncertain.

Optional inputs: [Plan summaries] [Premium schedules] [Enrollment census] [Employer budget] [Workforce locations] [Evaluation priorities]

44Forecast Workforce Cost Under Multiple Scenarios

Use when: Finance and HR need a defensible workforce-cost forecast for planning rather than a single unsupported estimate.

Open copy-ready prompt
Act as an HR finance partner preparing a twelve-month workforce-cost forecast. Using the approved headcount plan, current compensation, benefits rates, bonus rules, hiring dates, attrition assumptions, vacancies, and location data, model base pay, variable pay, employer taxes, benefits, recruiting costs, and severance separately. Create baseline, conservative, and growth scenarios, clearly identifying which inputs drive each result. Do not treat assumptions as facts, and do not recommend layoffs or compensation actions without executive, legal, and employee-relations review. Return an assumptions register, monthly cost table, variance bridge, sensitivity analysis, and concise decision notes for leadership. Protect personal data by aggregating outputs and suppressing small cells. Self-check that totals reconcile to the source headcount plan and that timing conventions are consistent across all scenarios.

Optional inputs: [Headcount plan] [Compensation roster] [Benefits rates] [Attrition assumptions] [Hiring calendar] [Forecast horizon]

45Design a Bonus Plan With Measurable Guardrails

Use when: You are translating organizational goals into an incentive plan that is understandable, auditable, and not overly risky.

Open copy-ready prompt
Act as an incentive-design specialist advising a growing company on an annual bonus plan. Convert the provided business objectives into a small set of measurable company, team, and individual metrics with documented definitions, data owners, weightings, thresholds, targets, caps, and payment timing. Test the design for gaming risk, excessive volatility, conflicting incentives, and outcomes that could encourage unsafe, unlawful, or discriminatory behavior. Do not promise earnings or imply that a draft plan is legally compliant; require qualified HR, legal, finance, and tax review. Return a plan specification, worked examples for three hypothetical performance outcomes, governance rules, an employee FAQ, and an implementation checklist. Self-check that every metric is controllable by its participants, has a reliable source, and produces no ambiguous payout calculation.

Optional inputs: [Business objectives] [Role populations] [Metric definitions] [Budget ceiling] [Payout frequency] [Existing plan]

46Analyze Retention and Turnover Patterns

Use when: You need to understand workforce exits while avoiding simplistic or discriminatory explanations.

Open copy-ready prompt
Act as a workforce-analytics researcher investigating voluntary and involuntary turnover over the supplied reporting period. Use aggregated, de-identified records to examine exits by tenure band, job family, level, manager span, location, compensation position, schedule, and other lawful variables. Distinguish descriptive association from causal evidence, account for changing headcount denominators, and suppress or combine small groups to protect confidentiality. Do not label managers or demographic groups as causes of turnover based on correlation alone. Return a data-quality assessment, metric definitions, trend tables, cautious findings, hypotheses for qualitative follow-up, and a prioritized interview or listening plan. State when employee-relations, privacy, statistical, or legal specialists should review the analysis. Self-check that rates use appropriate exposure periods and that no person can be re-identified from the output.

Optional inputs: [De-identified exit file] [Headcount snapshots] [Survey themes] [Org structure] [Time period] [Minimum cell size]

47Create a Benefits-Utilization Dashboard Brief

Use when: Leaders need a concise specification for monitoring benefits engagement, cost, and access responsibly.

Open copy-ready prompt
Act as an HR analytics product manager defining a benefits-utilization dashboard for executives and benefits administrators. Based on the supplied plan and enrollment data, specify a limited set of metrics such as enrollment, participation, employer cost, employee cost, claims or usage summaries where legally and contractually permitted, leave utilization, and service response times. Separate operational monitoring from medical or personally identifiable information, define aggregation thresholds, and identify role-based access controls. Do not infer employee health conditions or use utilization data to evaluate individual performance. Deliver a dashboard brief with metric dictionary, sample wireframe in text, refresh cadence, ownership matrix, alert thresholds, and governance requirements. Require qualified privacy, benefits, legal, and vendor review. Self-check that every metric has a source, calculation, audience, and retention rule.

Optional inputs: [Benefits data dictionary] [Enrollment exports] [Vendor reports] [Audience roles] [Privacy thresholds] [Reporting cadence]

48Develop a Compensation Communication Toolkit

Use when: Managers need consistent language for explaining pay decisions, ranges, and total rewards.

Open copy-ready prompt
Act as an employee-communications strategist partnering with compensation and employee-relations specialists. Create a manager toolkit explaining the organization’s pay philosophy, salary ranges, job levels, review cycle, incentive mechanics, benefits value, and how employees can ask questions. Use the supplied policy language and approved facts only; mark unresolved policy questions instead of filling gaps. Include a manager talk track, employee email, FAQ, escalation decision tree, and guidance for discussing individual circumstances without revealing another employee’s confidential information. Use plain, respectful language and avoid guarantees, comparisons that expose peers, or statements that could be interpreted as legal advice. Require HR and employment-law review before publication. Self-check that each answer is consistent with the source policies and that the toolkit distinguishes what managers may explain from what only HR may decide.

Optional inputs: [Pay philosophy] [Approved policies] [Salary-band guide] [Benefits summary] [Review calendar] [Escalation contacts]

49Evaluate a Flexible-Work Policy With Workforce Data

Use when: You are assessing whether a hybrid or flexible-work policy is meeting business and employee needs fairly.

Open copy-ready prompt
Act as an organizational-effectiveness analyst evaluating the supplied flexible-work policy and workforce data. Compare attendance expectations, productivity measures, retention, engagement, promotion access, collaboration indicators, accommodation requests, and employee feedback across relevant work arrangements, while respecting privacy and applicable disability, labor, and employment laws. Do not equate visibility with performance or use protected characteristics to deny flexibility. Identify confounding factors, missing data, and measures that are not valid proxies for contribution. Return an evaluation plan, metric definitions, segmented but privacy-safe findings, interview questions, policy options with trade-offs, and a recommendation framework for qualified HR and legal decision-makers rather than a unilateral policy verdict. Self-check that comparisons are like-for-like, that accommodations remain confidential, and that every proposed metric has an explicit fairness risk review.

Optional inputs: [Flexible-work policy] [Attendance data] [Performance measures] [Engagement survey] [Employee feedback] [Review period]

50Build a Workforce-Planning Scenario Workbook Specification

Use when: HR needs a repeatable planning model connecting strategic demand, skills, capacity, and total workforce cost.

Open copy-ready prompt
Act as a workforce-planning lead designing a repeatable scenario workbook for a business unit. Translate the supplied strategy, demand forecast, skills inventory, vacancies, contractor usage, compensation assumptions, productivity measures, and hiring lead times into an auditable model. Include tabs or sections for inputs, baseline capacity, skills gaps, hiring, redeployment, learning, contractor alternatives, costs, risks, and scenario comparison. Use ranges and sensitivity tests rather than false precision, and distinguish evidence from management assumptions. Do not make individualized employment decisions or recommend reductions without qualified HR, legal, finance, and employee-relations review. Return a workbook specification, formulas in plain language, governance rules, and a leadership readout template. Self-check that scenarios reconcile headcount, capacity, and cost; that personal data is minimized; and that each decision variable has an accountable owner.

Optional inputs: [Strategic plan] [Demand forecast] [Skills inventory] [Vacancy report] [Contractor spend] [Hiring lead times] [Cost assumptions]

6. Employee Relations, Investigations, and Communication

51Structure a Fair Workplace Investigation

Use when: You need a neutral investigation plan for a workplace complaint involving conflicting accounts.

Open copy-ready prompt
Act as a senior employee-relations investigator. A manager reports that an employee made repeated disrespectful comments in team meetings, while the employee denies misconduct and says feedback is applied unevenly. Create a fair investigation plan that defines the allegation without prejudging it, identifies interviewees and relevant records, sequences interviews, and supplies open-ended questions. Include confidentiality limits, anti-retaliation language, accessibility considerations, and a consistent evidence-based approach to credibility that avoids stereotypes or protected-characteristic assumptions. Separate established facts, disputed statements, and unresolved gaps. Recommend qualified HR or legal review before disciplinary action. Self-check that the plan is impartial, proportionate, privacy-conscious, and free of invented facts or conclusions.

Optional inputs: [jurisdiction] [company policy] [known dates] [available records] [investigator]

52Draft an Employee Relations Interview Guide

Use when: You are preparing to interview a reporting employee, responding employee, or witness.

Open copy-ready prompt
Serve as an HR business partner designing an interview guide for a sensitive employee-relations matter involving a possible bullying pattern. Produce three tailored question sets—for the reporting employee, responding employee, and witnesses—using plain, non-leading wording. Include an opening script explaining purpose, confidentiality limits, non-retaliation expectations, note-taking, and the opportunity to correct the record. Add prompts for dates, exact words, context, impact, prior reporting, corroborating evidence, and alternative explanations. Explain when to pause or refer a participant if safety or wellbeing concerns arise. Flag matters requiring qualified HR or legal review. Self-check that every question seeks facts rather than labels and does not presume credibility based on identity, role, emotion, or communication style.

Optional inputs: [policy language] [incident summary] [interview format] [support resources] [jurisdiction]

53Communicate an Investigation Outcome

Use when: An investigation has concluded and you need respectful, privacy-preserving outcome messages.

Open copy-ready prompt
Act as an employee-relations communications specialist. Draft two separate letters following a workplace investigation: one to the reporting employee and one to the responding employee. Some policy concerns were supported, but personnel privacy limits disclosure. Use a calm tone; acknowledge participation without promising a result; state only verified, necessary information; and avoid confidential witness details or unsupported findings. Explain next steps, expectations, available support, and the prohibition on retaliation. Include an option to raise process concerns through the appropriate HR channel. Mark language requiring qualified HR or legal review before sending. Self-check that the letters are consistent, non-defamatory, non-discriminatory, and do not imply that confidentiality is absolute or that either recipient is entitled to private personnel details.

Optional inputs: [verified findings] [relevant policy] [corrective-action category] [appeal process] [jurisdiction]

54Mediate a Team Conflict

Use when: Two employees have an ongoing collaboration conflict that may be suitable for facilitated resolution.

Open copy-ready prompt
Take the role of a trained workplace mediator supporting an HR-led conversation between employees who disagree about workload handoffs and communication style. Build a mediation agenda with preparation steps, ground rules, a neutral opening statement, question prompts, reflection techniques, and a process for identifying shared interests. Include safeguards for power imbalance, psychological safety, accommodations, and voluntary participation. Distinguish mediation from a formal misconduct investigation, and explain when the matter should instead go to qualified HR or legal professionals—for example, threats, retaliation, harassment, discrimination, or safety concerns. End with a written agreement covering observable behaviors, ownership, review dates, and follow-up. Self-check that the process does not force reconciliation, dismiss harm, or treat unequal parties as identically situated.

Optional inputs: [conflict summary] [reporting lines] [team norms] [meeting length] [follow-up date]

55Respond to a Retaliation Concern

Use when: An employee reports negative treatment after raising a concern or participating in an investigation.

Open copy-ready prompt
Act as an experienced HR case manager responding to an employee who reports possible retaliation after speaking up about workplace conduct. Create a same-day response plan and draft acknowledgement message. Preserve the original concern, distinguish protected activity from ordinary performance management without making a legal determination, identify immediate safety and scheduling issues, preserve relevant records, and specify neutral interim measures that do not punish or isolate the reporting employee. Provide fact-focused questions about timing, decision-makers, comparators, and concrete actions. Avoid promises of confidentiality or outcome, state when qualified HR or legal review is required, and remind involved managers that retaliation is prohibited. Self-check that the response neither dismisses nor presumes retaliation and that proposed measures avoid discrimination or career harm.

Optional inputs: [original complaint date] [reported actions] [manager names] [relevant policies] [interim options]

56Create a Manager Conversation Script

Use when: A manager must address repeated conduct concerns promptly and respectfully.

Open copy-ready prompt
Serve as an HR coach writing a script for a private conversation with an employee whose interruptions and dismissive responses affect team meetings. Describe observable behaviors and business impact, invite the employee’s perspective, ask whether support or accommodation may be relevant, set specific expectations, and explain proportionate follow-up. Include responses to denial, strong emotion, disclosure of a health or family issue, and allegations of unequal treatment. Instruct the manager not to diagnose, threaten, promise secrecy, compare confidential cases, or decide based on protected characteristics. Add a documentation checklist and identify points requiring qualified HR or legal review. Self-check that the language is respectful, culturally aware, evidence-based, accessible, and focused on conduct rather than personality or presumed intent.

Optional inputs: [observed examples] [meeting dates] [job expectations] [support resources] [review timeline]

57Triage a Workplace Complaint

Use when: HR needs a consistent first review to determine urgency, routing, and interim protections.

Open copy-ready prompt
Act as an HR intake specialist creating a triage worksheet for a new complaint alleging hostile messages, possible threats, and supervisor misconduct, with incomplete details. Design fields and decision rules covering who, what, when, where, witnesses, records, prior reports, and immediate risks without requesting irrelevant personal information. Classify possible needs for emergency safety action, formal investigation, informal resolution, policy consultation, accommodation support, or referral to qualified HR or legal counsel. Include confidentiality and data-minimization instructions, conflict-of-interest checks, anti-retaliation guidance, and ownership for next steps. Do not assign credibility or legal conclusions at intake. Self-check that the worksheet supports consistent treatment, preserves urgent evidence, and cannot screen out complaints because they are inconvenient, anonymous, or imperfectly documented.

Optional inputs: [intake channel] [risk contacts] [policies] [case-management fields] [local requirements]

58Prepare a Difficult Performance Conversation

Use when: A performance discussion must remain constructive, documented, and fair despite emotional tension.

Open copy-ready prompt
Take the role of an HR adviser helping a manager prepare for a difficult performance conversation. The employee missed agreed deadlines, believes expectations changed without notice, and disclosed a possible need for accommodation. Create a plan that distinguishes performance facts from assumptions, confirms expectations and the approved support process, invites context, and sets measurable next steps with realistic review dates. Provide language for acknowledging frustration, responding to disagreement, and pausing if emotions or safety concerns rise. Require qualified HR or legal consultation before decisions involving accommodation, protected leave, discipline, or termination. Include a documentation template and a fairness check comparing process—not private medical details—with similarly situated cases. Self-check that the plan avoids retaliation, discrimination, diagnosis, and vague labels such as “bad attitude.”

Optional inputs: [performance records] [role expectations] [prior feedback] [accommodation channel] [review period]

59Build a Respectful Workplace Communication Protocol

Use when: An organization needs shared communication standards for preventing interpersonal issues from escalating.

Open copy-ready prompt
Act as an HR policy designer developing a concise communication protocol for a hybrid team. Address tone in chat and email, meeting participation, feedback, escalation, documentation, response times, and after-hours boundaries. Make standards behavior-based, culturally considerate, accessible, and compatible with protected reporting, accommodation requests, and legitimate communication differences. Include acceptable and unacceptable phrasing, a simple escalation path, manager responsibilities, and a reminder that informal resolution is inappropriate for threats, harassment, discrimination, retaliation, or safety concerns. Explain that monitoring and record retention require qualified HR or legal review and applicable privacy rules. Request a one-page policy plus a manager checklist. Self-check that the protocol does not suppress dissent, require emotional conformity, expose private information, or create unequal burdens for remote employees.

Optional inputs: [team size] [work locations] [existing code of conduct] [communication tools] [review owner]

60Analyze Employee-Relations Case Trends

Use when: HR leaders want to identify recurring workplace issues without exposing identities or overstating data.

Open copy-ready prompt
Serve as an employee-relations analytics lead reviewing a de-identified dataset containing complaint themes, time to close, business unit, resolution type, and optional demographic fields. Produce an executive briefing with data limitations, trend observations, cautious hypotheses, and recommendations for additional fact-finding. Suppress small cells and remove names, narrative details, and combinations that could re-identify individuals. Do not infer misconduct, credibility, causation, or protected-class bias from correlations alone; distinguish reporting differences from incidence differences. Include a methodology note, definitions, a quality-check table, and questions for qualified HR, privacy, or legal review before sharing. Do not recommend automated disciplinary decisions or rank employees. Self-check that every conclusion is traceable to supplied data and that missingness, denominators, and alternative explanations are disclosed.

Optional inputs: [date range] [field definitions] [minimum cell size] [audience] [privacy rules]

7. Policy, Compliance, Privacy, and Records

61Map HR Data-Privacy Responsibilities

Use when: You need to clarify who owns each stage of employee-data handling across HR, IT, payroll, and vendors.

Open copy-ready prompt
Act as an HR privacy program manager helping a 400-person employer map accountability for employee information. Using the stated data flows, identify each collection, access, sharing, storage, retention, and deletion activity; assign a responsible team; and distinguish controller, processor, administrator, and reviewer responsibilities where relevant. Cover recruitment files, personnel records, payroll, benefits, leave, monitoring, and occupational-health information without requesting unnecessary sensitive details. Produce a RACI matrix followed by five priority gaps and a 90-day remediation sequence. Preserve confidentiality, minimize data collection, and flag points requiring qualified privacy counsel. Self-check: confirm every data flow has an owner, access boundary, retention rule, and escalation route.

Optional inputs: [Jurisdictions], [HR systems], [Vendor list], [Data-flow notes]

62Review a Personnel-File Access Procedure

Use when: You need to test whether managers and HR staff can access employee records appropriately.

Open copy-ready prompt
Act as an HR records-governance auditor. Review the supplied personnel-file access procedure for least-privilege controls, approval steps, audit logging, confidentiality, emergency access, and employee-request handling. Separate ordinary personnel information from medical, investigation, payroll, immigration, and legally privileged material. Present findings in a table with requirement, current wording, risk, severity, and precise replacement language. Add a short operating procedure for granting, reviewing, revoking, and documenting access, while avoiding recommendations that conflict with applicable law. State where qualified HR, privacy, or legal review is required. Self-check: verify that no manager receives unrestricted access merely because they supervise the employee and that sensitive records have distinct access rules.

Optional inputs: [Current procedure], [Systems involved], [User roles], [Applicable jurisdictions]

63Build an HR Legal-Hold Playbook

Use when: A complaint, investigation, audit, or threatened claim may require suspension of ordinary record destruction.

Open copy-ready prompt
Act as employment-counsel support drafting an HR legal-hold playbook for a mid-sized company. Explain when a hold may be triggered, who may authorize it, how HR identifies custodians and data sources, how notices are issued, and how compliance is tracked. Address email, messaging platforms, HRIS records, paper files, shared drives, and personal devices used for work, but do not advise accessing private content unlawfully. Include a hold-notice template, custodian checklist, escalation matrix, release procedure, and audit log fields. Use cautious language and require qualified legal counsel to approve triggers, scope, and release. Self-check: confirm the playbook preserves relevant records without ordering indiscriminate collection or destruction.

Optional inputs: [Matter type], [Systems], [Custodian groups], [Legal-contact role]

64Design a Fair Background-Check Policy

Use when: You are standardizing pre-employment screening while reducing privacy, bias, and compliance risks.

Open copy-ready prompt
Act as an HR compliance consultant. Draft a background-check policy covering authorization, disclosure, vendor oversight, permissible searches, individualized review, adverse-action notices, dispute rights, record security, and deletion. Distinguish criminal, employment, education, credit, driving, and identity checks, and note that jurisdictional restrictions vary. Prohibit blanket exclusions and decisions based on protected characteristics or irrelevant information. Provide a policy, an operational checklist, and a decision record that documents job-related reasoning without exposing unnecessary personal data. Require qualified HR and legal review before implementation. Self-check: confirm the process includes consent, pre-adverse and final adverse-action steps where required, consistent criteria, and a secure retention limit.

Optional inputs: [Roles screened], [Jurisdictions], [Screening vendor], [Retention limit]

65Create a Privacy-Conscious Employee-Survey Protocol

Use when: You need to collect employee feedback without undermining anonymity or creating avoidable sensitive-data risks.

Open copy-ready prompt
Act as an employee-listening and privacy specialist. Create a protocol for running engagement, inclusion, pulse, or exit surveys. Define the minimum data needed, anonymity thresholds, permitted demographic questions, vendor safeguards, access permissions, reporting rules for small groups, retention, and deletion. Explain how to communicate purpose, voluntary participation, confidentiality limits, and escalation for safety-related disclosures. Provide a launch checklist, participant notice, data dictionary, and reporting template that separates aggregate insights from identifiable case handling. Avoid promising absolute anonymity when technical or organizational limits exist, and require HR or privacy review for sensitive questions. Self-check: confirm no report can identify a small subgroup and every collected field has a stated business purpose.

Optional inputs: [Survey purpose], [Platform], [Employee count], [Demographic fields], [Reporting threshold]

66Audit Leave and Accommodation Records

Use when: You need to verify that leave and disability-related files are separated, complete, and handled confidentially.

Open copy-ready prompt
Act as an HR compliance auditor reviewing leave and accommodation administration. Examine the supplied process for FMLA, ADA, pregnancy-related accommodations, workers’ compensation, and applicable local leave programs. Identify missing notices, inconsistent deadlines, improper manager access, incomplete interactive-process documentation, and retention or destruction weaknesses. Produce a risk-ranked audit table, a corrected workflow, and sample manager guidance that excludes medical details. Do not diagnose employees or decide disputed eligibility; identify matters requiring qualified HR or legal review. Keep medical information separate from ordinary personnel files and limit access to authorized staff. Self-check: confirm each case has a documented status, deadline, communication record, accommodation analysis, and secure medical-file location.

Optional inputs: [Leave programs], [Case workflow], [Record samples], [Jurisdictions]

67Draft a Records-Disposal Communication Plan

Use when: You are implementing a lawful HR-records cleanup and need employees to understand what will and will not be deleted.

Open copy-ready prompt
Act as an HR records manager preparing a communication plan for a scheduled records-disposal project. Using the approved retention schedule, write messages for executives, HR staff, managers, and employees explaining the purpose, scope, dates, prohibited self-deletion, legal-hold exceptions, and questions channel. Clearly distinguish routine disposal from preservation obligations and avoid revealing confidential employee information. Provide an announcement, manager talking points, FAQ, and acknowledgment tracker. Require counsel or qualified records professionals to validate the schedule before any destruction occurs. Self-check: confirm every communication says that records subject to a legal hold must be preserved and that disposal will be documented with date, category, method, and approver.

Optional inputs: [Retention schedule], [Disposal date], [Audience list], [Legal-hold process]

68Develop an HR Compliance-Incident Response Procedure

Use when: HR needs a repeatable method for responding to privacy, discrimination, payroll, or records-management incidents.

Open copy-ready prompt
Act as an HR risk and incident-response lead. Design a procedure for triaging suspected HR compliance incidents, including unauthorized disclosure, lost files, discriminatory conduct, payroll error, retaliation allegation, and improper record deletion. Define severity levels, immediate containment, evidence preservation, notification decisions, investigator assignment, documentation, employee support, corrective action, and post-incident review. Include an incident form, decision tree, and responsibility matrix. Avoid naming alleged individuals in broad communications, preserve due process, and require qualified privacy, employment, or legal review before external reporting or disciplinary conclusions. Self-check: confirm the procedure prevents retaliation, preserves evidence, records decision owners, and separates fact-finding from final legal conclusions.

Optional inputs: [Incident types], [Escalation contacts], [Notification rules], [Existing forms]

69Evaluate an HR Vendor’s Data-Processing Terms

Use when: You are selecting or renewing an HR technology or benefits vendor that will handle employee information.

Open copy-ready prompt
Act as an HR procurement and privacy reviewer. Evaluate the supplied vendor agreement and security summary for data ownership, processing instructions, subcontractors, international transfers, access controls, breach notice, audit rights, retention, deletion, employee requests, and return of data at termination. Identify unacceptable language, negotiation points, and evidence still needed; do not claim compliance solely from a certification or marketing statement. Deliver a red-flag table, proposed clause concepts in plain English, and a go/no-go checklist. State that privacy counsel and security professionals must review the final terms. Self-check: confirm the vendor cannot reuse employee data for unrelated purposes and that deletion, incident notice, and subcontractor controls are explicit.

Optional inputs: [Agreement], [Security materials], [Data categories], [Processing locations]

70Create an HR Policy-Review Calendar

Use when: You need a controlled annual process for keeping HR policies current, approved, communicated, and documented.

Open copy-ready prompt
Act as an HR governance coordinator. Build a 12-month policy-review calendar for a multi-jurisdiction employer covering handbook provisions, conduct, leave, accommodations, privacy, records, payroll, remote work, safety, and investigations. For each policy, specify an accountable owner, legal or operational trigger, review evidence, approver, employee-communication method, effective-date control, version-history fields, and next review date. Include an exception process for urgent legal changes and a dashboard layout showing status, overdue items, and dependencies. Do not invent legal deadlines; mark jurisdiction-specific requirements for verification by qualified counsel. Self-check: confirm every policy has an owner, approval gate, communication record, archived prior version, and documented basis for its review frequency.

Optional inputs: [Policy inventory], [Jurisdictions], [Review owners], [Approval committee], [Communication channels]

8. Inclusion, Accessibility, and Belonging

71Audit the Employee Experience Journey

Use when: You need to locate inclusion and accessibility barriers across a candidate’s or employee’s experience without exposing personal data.

Open copy-ready prompt
Act as an HR accessibility and employee-experience consultant. Review the anonymized journey map below across recruiting, onboarding, performance, promotion, and exit. Identify friction points that may affect disabled employees, caregivers, neurodivergent employees, remote workers, language learners, or other underrepresented groups without inferring anyone’s protected characteristics. Separate observed evidence from hypotheses and rank issues by employee impact, legal sensitivity, and implementation effort. Return a table with stage, barrier, potentially affected users, evidence needed, and an inclusive improvement, followed by five validation questions. Self-check that recommendations are broadly useful, confidentiality-safe, and clearly marked for qualified HR or legal review where appropriate.

Optional inputs: [Anonymized journey map] [Locations] [Existing accommodations process] [Review deadline]

72Build an Accessible Interview Process

Use when: You are standardizing interviews so qualified candidates can participate fairly and consistently.

Open copy-ready prompt
Act as a talent-acquisition leader specializing in accessible selection. Design an interview process for the role and hiring context below, covering application screening, scheduling, interview formats, work samples, scoring, and candidate communication. Make participation options clear without requiring candidates to disclose unnecessary medical information. Provide an interviewer checklist, accommodation-response script, structured scorecard, and decision-audit checklist focused on job-related evidence rather than cultural similarity or unstructured “fit.” Explain which steps require qualified HR or legal review in the relevant jurisdictions. Self-check that every criterion is essential, alternatives are available where feasible, and no candidate is penalized for requesting an accommodation.

Optional inputs: [Role description] [Interview panel] [Jurisdictions] [Current process] [Timeline]

73Create an Inclusive Accommodation Workflow

Use when: Managers need a practical, confidential process for responding to workplace accommodation requests.

Open copy-ready prompt
Act as an HR operations specialist and accessibility program manager. Create a manager-facing workflow for receiving, escalating, documenting, implementing, and reviewing an accommodation request. Distinguish what a manager may do from what only qualified HR, occupational-health, or legal professionals should decide. Include a first-response script, privacy boundaries, decision tree, records-retention guidance, temporary measures, follow-up timing, and urgent-safety escalation. Do not diagnose conditions or ask employees to prove a disability to their manager. Format the result as a one-page procedure followed by a RACI table. Self-check that confidential information is minimized, retaliation is prohibited, and the process supports an individualized, good-faith review.

Optional inputs: [Organization size] [Jurisdictions] [Existing policy] [HR contacts] [Systems]

74Assess Meeting Accessibility

Use when: Teams want recurring meetings to work for varied communication, sensory, mobility, and time-zone needs.

Open copy-ready prompt
Act as an inclusive workplace facilitator. Evaluate the recurring meeting description below and redesign it for accessibility and belonging. Address agenda notice, materials, captions, screen-reader compatibility, speaking order, chat participation, breaks, camera expectations, sensory load, time zones, hybrid-room equity, and follow-up documentation. Preserve the business purpose while offering practical alternatives rather than assuming one format suits everyone. Return an accessibility-ready meeting template, facilitator behaviors, participant norms, and a short feedback survey. Explain how an individual accommodation request should move privately through HR. Self-check that recommendations do not equate visibility, rapid speaking, or constant camera use with commitment or performance.

Optional inputs: [Meeting purpose] [Duration] [In-person or hybrid setup] [Time zones] [Current pain points]

75Develop Belonging Metrics Without Surveillance

Use when: Leadership wants to measure inclusion progress while protecting privacy and avoiding misleading demographic conclusions.

Open copy-ready prompt
Act as a people-analytics governance advisor. Design a balanced measurement framework for inclusion, accessibility, and belonging using the organizational context below. Combine voluntary survey items, participation indicators, accommodation-service metrics, retention patterns, and qualitative listening without creating surveillance or exposing small-group identities. For each metric, specify purpose, source, cadence, minimum reporting threshold, disaggregation rule, limitations, and owner. Provide a sample executive dashboard layout and a protocol for investigating disparities without assuming cause. State where employee consultation, privacy review, works-council input, or legal advice may be required. Self-check that metrics cannot rank individuals, infer protected traits, or justify discriminatory decisions, and that every measure connects to an actionable organizational question.

Optional inputs: [Workforce size] [Regions] [Existing survey items] [Privacy rules] [Leadership questions]

76Rewrite a Policy for Inclusive Clarity

Use when: An HR policy is technically correct but difficult to understand, navigate, or apply consistently.

Open copy-ready prompt
Act as an HR policy editor with expertise in plain language and inclusive design. Rewrite the policy below for employees and managers while preserving its intended protections and decision rights. Use headings, short paragraphs, defined terms, examples, accessible language, and a clear route for questions or accommodation requests. Identify ambiguous phrases, hidden assumptions, inconsistent-treatment risks, and provisions needing qualified HR or legal review; do not silently change legal obligations. Return the revised policy first, then an editorial change log with rationale and unresolved review questions. Include an accessibility checklist covering document structure, links, contrast guidance, and assistive-technology compatibility. Self-check that the rewrite does not promise confidentiality beyond what the organization can provide.

Optional inputs: [Policy text] [Audience] [Jurisdictions] [Brand voice] [Approval process]

77Facilitate an Inclusive Listening Session

Use when: You need employee input about belonging or accessibility without turning the session into a public disclosure exercise.

Open copy-ready prompt
Act as a trauma-informed employee-listening facilitator. Plan a 60-minute session on inclusion and belonging for the audience described below. Create a voluntary invitation, opening agreements, accessible participation options, neutral questions, anonymous-input method, response to disclosures of harm, and closing explanation of what happens next. Avoid asking participants to represent an identity group or recount painful experiences. Include a note-taking protocol that removes identifying details and a synthesis method distinguishing themes, isolated reports, and verified facts. Format the deliverable as a run-of-show plus facilitator script. Self-check that participation is not treated as proof of team sentiment, retaliation risks are addressed, and urgent concerns are routed to qualified HR professionals.

Optional inputs: [Audience size] [Delivery format] [Known concerns] [Facilitator experience] [Support resources]

78Review Promotion Criteria for Bias Risks

Use when: You are testing advancement criteria for accessibility, consistency, and unintended exclusion before a promotion cycle.

Open copy-ready prompt
Act as an HR governance reviewer assessing the promotion framework below. Examine competencies, evidence requirements, sponsorship expectations, calibration practices, timing, and manager narratives for barriers that may disadvantage disabled employees, caregivers, part-time workers, remote staff, multilingual employees, or other groups. Do not infer individual identity or conclude that a disparity proves discrimination. Return a risk register with criterion, potential exclusion mechanism, evidence to collect, neutral redesign, owner, and review priority, followed by an equitable calibration protocol and employee-facing explanation. Identify questions requiring qualified HR, employee-relations, or legal review. Self-check that recommendations preserve legitimate requirements, permit equivalent evidence, separate performance from style preferences, and prohibit retaliation for raising concerns.

Optional inputs: [Promotion framework] [Career levels] [Performance data] [Calibration process] [Jurisdictions]

79Design an Inclusive Learning Program

Use when: You are launching training intended to reach employees with different access needs, roles, schedules, and learning preferences.

Open copy-ready prompt
Act as a learning-and-development architect focused on universal design. Build an inclusive learning program from the objectives and audience below. Specify accessible pre-work, delivery formats, captions and transcripts, readable materials, pacing, practical exercises, language support, technology alternatives, manager reinforcement, and evaluation. Offer equivalent participation routes without lowering essential outcomes. Include a facilitator guide, learner communication, accessibility QA checklist, and feedback form distinguishing access problems from content-quality issues. Explain when an individual request should move to the confidential accommodation process and when HR or legal review is necessary. Self-check that completion rates are not treated as proof of inclusion, no learner must disclose a diagnosis publicly, and examples avoid stereotypes or tokenism.

Optional inputs: [Learning objectives] [Audience roles] [Delivery platform] [Languages] [Budget] [Launch date]

80Respond to an Inclusion Concern

Use when: A manager receives a report that a team practice is exclusionary and needs a careful first response.

Open copy-ready prompt
Act as an employee-relations advisor coaching a manager after the concern described below. Draft a respectful first response to the employee, immediate steps to preserve safety and dignity, questions for clarifying facts without leading the witness, and a confidential escalation plan. Distinguish allegations, observations, and conclusions; do not investigate beyond the manager’s authority or promise a particular outcome. Address retaliation prevention, interim adjustments, documentation limits, and communication with involved parties. Provide a decision-log template and a short list of matters requiring qualified HR, legal, safeguarding, or accessibility review. Self-check that the response does not blame the reporter, demand disclosure of protected information, presume intent, or recommend discipline without a fair, evidence-based process.

Optional inputs: [Anonymized concern] [Manager role] [Team setting] [Immediate risks] [Reporting channels]

9. Change Management, Culture, and Retention

81Change-readiness listening plan

Use when: A significant organizational change is approaching and leaders need an ethical way to understand employee concerns before implementation.

Open copy-ready prompt
Act as a change-management HR partner supporting a 500-person organization preparing to consolidate two departments. Design a four-week listening plan that gathers concerns from employees, managers, and potentially affected teams without promising outcomes that have not been approved. Include communication channels, accessible question sets, confidentiality limits, voluntary participation safeguards, a method for separating themes from identifiable comments, and escalation criteria for safety, harassment, or retaliation concerns. Present the plan as a weekly table followed by a short risk register and leadership briefing outline. Do not recommend decisions based on protected characteristics or unverifiable anecdotes. Self-check that every collection method explains how information will be used and that qualified HR or legal review is flagged where employment rights may be implicated.

Optional inputs: [change scope] [workforce size] [locations] [employee representative arrangements] [approved communication channels]

82Manager toolkit for transparent transitions

Use when: Managers need consistent language and practical guidance for discussing a reorganization with their teams.

Open copy-ready prompt
Act as an HR communications specialist creating a manager toolkit for a reorganization that may alter reporting lines, workflows, and team priorities. Write a concise briefing note, a fifteen-minute team-meeting script, a bank of anticipated questions with honest response guidance, and a private follow-up checklist. Require managers to distinguish confirmed facts, pending decisions, and unknowns; avoid implying that individual roles are safe when that has not been determined; and direct employment-specific questions to qualified HR professionals. Include inclusive guidance for remote workers, employees with accessibility needs, and staff in different time zones. Use plain language and a calm, respectful tone. Self-check the toolkit for consistency, confidentiality, non-retaliation, and any statement that would require legal review before distribution.

Optional inputs: [confirmed changes] [unknowns] [audiences] [meeting date] [HR escalation contact]

83Culture-health diagnostic after a merger

Use when: A newly merged organization needs to assess cultural friction without reducing culture to a simplistic score.

Open copy-ready prompt
Act as an organizational development consultant helping two merged companies evaluate culture integration after six months. Build an evidence-informed diagnostic that combines an anonymous pulse survey, facilitated listening sessions, operational indicators, and interviews with leaders and individual contributors. Define what each method can and cannot establish, how to protect small-group confidentiality, and how to avoid treating demographic differences as evidence of cultural deficiency. Request a report structure with an executive synopsis, converging and diverging signals, representative anonymized themes, limitations, and three prioritized experiments with owners and review dates. Do not invent survey results or imply causation from correlations. Self-check that recommendations address systems and behaviors rather than labeling groups, and state where HR, privacy, or legal review is required.

Optional inputs: [merger date] [workforce groups] [existing survey items] [available metrics] [facilitator constraints]

84Retention-risk conversation guide

Use when: HR business partners want managers to conduct supportive retention conversations before regrettable turnover occurs.

Open copy-ready prompt
Act as an HR business partner designing a retention-conversation guide for managers of experienced employees in hard-to-staff roles. Provide a preparation checklist, ten open-ended questions, listening and follow-up behaviors, prohibited promises, and a decision tree for escalating workload, pay, career, wellbeing, or conduct concerns. Explain how managers should record only necessary, job-relevant information and how employees can decline to answer. The guide must not rank employees by protected traits, infer private medical information, or encourage counteroffers that bypass established compensation processes. Format the response as a one-page manager guide plus a separate HR follow-up form outline. Self-check that each question is voluntary, that confidentiality limits are accurately described, and that qualified HR or legal review is recommended for compensation, leave, safety, or discrimination issues.

Optional inputs: [role families] [known retention challenges] [career paths] [compensation process] [local jurisdictions]

85Stay-interview theme analysis

Use when: An organization has collected stay-interview notes and needs a disciplined synthesis that preserves employee privacy.

Open copy-ready prompt
Act as a people-analytics lead reviewing de-identified stay-interview notes from 40 employees across three functions. Create a coding framework that distinguishes drivers, friction points, positive conditions, requested changes, and evidence gaps. Then specify a transparent method for identifying recurring themes without reporting cells so small that individuals could be recognized. Design an output with a theme matrix, confidence and limitation fields, illustrative paraphrases rather than verbatim quotes, and a manager action queue tied to accountable owners. Treat comments as perceptions, not automatically verified facts, and separate urgent conduct or safety concerns for qualified HR handling. Do not fabricate frequencies or calculate significance without data. Self-check for re-identification risk, confirmation bias, protected-trait inference, and the need for privacy or legal review before sharing findings.

Optional inputs: [de-identified notes] [function names] [minimum reporting cell] [existing taxonomy] [sharing audience]

86Recognition program fairness review

Use when: Leaders are revising recognition practices and want to test whether visibility and rewards are distributed fairly.

Open copy-ready prompt
Act as a total-rewards and inclusion specialist reviewing an employee recognition program used across office, field, shift, and remote teams. Develop a fairness-review protocol covering eligibility, nomination access, manager discretion, timing, award criteria, language, accessibility, and outcome monitoring. Recommend an analysis plan that compares participation and outcomes only when lawful, meaningful, and appropriately aggregated; do not assume demographic gaps prove bias or that equal counts prove fairness. Provide an audit worksheet, interview prompts, corrective design options, and governance checkpoints. Include controls against favoritism, retaliation, privacy breaches, and pressure to disclose protected information. Self-check that the protocol distinguishes evidence from hypotheses, avoids discriminatory decision rules, and directs any adverse-impact or jurisdiction-specific question to qualified HR or legal counsel.

Optional inputs: [program rules] [award types] [workforce segments] [available aggregated data] [review cadence]

87Psychological safety improvement experiment

Use when: Teams report reluctance to raise risks, disagree with leaders, or admit mistakes, and a practical intervention is needed.

Open copy-ready prompt
Act as an organizational psychologist advising a product team whose anonymous feedback suggests employees hesitate to challenge decisions. Design a six-week, low-risk improvement experiment using structured dissent in meetings, leader response commitments, blameless learning reviews, and an anonymous check-in. Define the hypothesis, baseline measures, weekly activities, facilitator guidance, stop conditions, and post-experiment evaluation. Make clear that psychological safety does not remove accountability for misconduct or performance expectations. Protect participants from retaliation and avoid collecting unnecessary personal information. Request a concise experiment charter followed by sample meeting language and a measurement rubric. Do not claim the intervention will solve the problem or diagnose individuals. Self-check that success measures capture speaking-up conditions without penalizing employees who choose not to speak publicly, and flag HR or legal escalation for reported misconduct.

Optional inputs: [team size] [meeting types] [baseline feedback] [facilitator] [available survey tool]

88Career mobility and retention framework

Use when: Employees are leaving because internal growth appears unclear or unevenly accessible.

Open copy-ready prompt
Act as a talent-development strategist helping a 1,200-person organization improve internal mobility and retention. Create a framework connecting role profiles, skills development, career conversations, transparent posting practices, mentoring, and manager accountability. Include a ninety-day implementation sequence, sample employee communications, measures for access and movement, and safeguards against managers hoarding talent or informally favoring insiders. Do not recommend promotion or selection criteria based on protected characteristics, personality stereotypes, or unverifiable “culture fit.” Explain how to handle incomplete skills data and how employees can challenge inaccurate records. Present the result as a policy blueprint with an implementation table and review questions. Self-check that opportunity metrics are interpreted cautiously, confidential data is aggregated, and qualified HR or legal review is requested for selection, pay, privacy, and jurisdiction-specific requirements.

Optional inputs: [career architecture] [skills taxonomy] [posting rules] [mobility baseline] [manager incentives]

89Workforce change impact assessment

Use when: HR must map how a proposed operating-model change may affect people, work, and retention.

Open copy-ready prompt
Act as an HR program manager assessing the people impact of moving a customer-support function from a regional model to a centralized model. Produce an impact assessment that maps affected roles, work-pattern changes, capability needs, employee experience risks, consultation points, and transition supports. Include separate treatment of confirmed information, assumptions, dependencies, and unresolved questions. Recommend an equitable engagement schedule and a monitoring dashboard covering workload, absence, turnover, service continuity, and employee feedback, while avoiding causal claims that the data cannot support. Do not disclose personal case details or prescribe employment actions without authorized review. Format the output as an impact map, risk-and-mitigation table, and decision log template. Self-check for accessibility, confidentiality, non-discrimination, labor obligations, and the need for qualified HR or legal counsel before implementation.

Optional inputs: [current operating model] [proposed model] [affected locations] [role inventory] [transition timeline]

90Ethical retention strategy review

Use when: Executives request a retention plan and HR needs to ensure it addresses root causes rather than relying on pressure or selective incentives.

Open copy-ready prompt
Act as a senior HR adviser reviewing an executive proposal to reduce turnover through retention bonuses, manager scorecards, and mandatory engagement activities. Evaluate the proposal against employee trust, fairness, accessibility, confidentiality, workload, sustainability, and unintended-consequence criteria. Then provide a revised strategy that combines diagnosis, manager capability, job-design improvements, development opportunities, and appropriately governed rewards. Distinguish actions that require employee consultation from those leaders may implement directly, and identify data needed before choosing among options. Do not recommend coercive practices, retaliation, surveillance, or individualized decisions based on protected characteristics. Present a two-page review with a red-amber-green assessment, alternatives, implementation conditions, and a thirty-day validation plan. Self-check every recommendation for evidence, proportionality, privacy, and required qualified HR or legal review.

Optional inputs: [turnover data] [proposal details] [employee feedback] [reward budget] [applicable policies and jurisdictions]

10. HR Operations, Technology, and Leadership Reporting

91HRIS Implementation Readiness Review

Use when: An HR team needs an impartial readiness assessment before replacing or substantially upgrading its human-resources information system.

Open copy-ready prompt
Act as an HR technology implementation consultant advising a 600-employee organization preparing to replace its HRIS. Review the supplied process maps, stakeholder interviews, data inventory, vendor requirements, and implementation timeline. Identify readiness strengths, unresolved dependencies, data-governance risks, adoption barriers, and decisions that require executive sponsorship. Separate confirmed evidence from assumptions, and do not recommend a vendor without documented evaluation criteria. Present the result as an executive brief with a readiness rating, risk register, decision log, workstream actions, and a 30-day preparation sequence. Protect employee confidentiality by referring to records only in aggregated or anonymized form. Flag any employment, privacy, or record-retention issue for qualified HR or legal review. Self-check that every major recommendation is traceable to an input or clearly labeled assumption.

Optional inputs: [Current HRIS landscape] [Process maps] [Data inventory] [Stakeholder list] [Target go-live date]

92Workforce Metrics Executive Dashboard Narrative

Use when: Leaders need a concise, decision-oriented narrative to accompany a monthly or quarterly people dashboard.

Open copy-ready prompt
Act as a people-analytics director writing the narrative for an executive workforce dashboard. Using the supplied headcount, hiring, attrition, absence, internal-mobility, engagement, and workforce-cost figures, explain the most material changes during the reporting period and their plausible business implications. Distinguish descriptive findings from causal interpretations; do not infer motives or label groups negatively. Structure the response as a five-paragraph leadership readout followed by a table of metric movements, questions for investigation, and three decisions leaders may need to make. Use plain language, state denominators and comparison periods, and suppress small-cell details that could identify individuals. Recommend qualified HR, privacy, or legal review where reporting choices could create employee-risk concerns. Self-check every numerical statement against the supplied data and mark missing or inconsistent figures instead of filling gaps.

Optional inputs: [Reporting period] [Dashboard export] [Comparison period] [Population definitions] [Audience]

93HR Service Delivery Operating Model

Use when: An organization is redesigning how employees and managers access HR support across shared services, centers of expertise, and business partners.

Open copy-ready prompt
Act as an HR operating-model architect helping a multinational organization redesign HR service delivery. Assess the supplied service catalog, case volumes, response-time data, regional requirements, current roles, and employee feedback. Design a practical target model showing which requests belong in self-service, an HR service center, a center of expertise, or an HR business partner relationship. Include decision rights, escalation paths, service-level measures, governance forums, and transition risks. Account for accessibility, language, local-law variation, and the need to preserve confidential case handling. Do not treat automation as appropriate for sensitive employee relations or accommodation matters without qualified review. Deliver a target-state summary, routing matrix, implementation waves, and leadership decisions required. Self-check that each service has an owner, escalation route, measurable outcome, and documented exception path.

Optional inputs: [Service catalog] [Case data] [Regional coverage] [Current organization chart] [Employee feedback]

94Employee Lifecycle Controls Audit

Use when: HR operations wants to test whether onboarding, transfers, leave, and offboarding controls work consistently and safely.

Open copy-ready prompt
Act as an HR controls auditor reviewing the employee lifecycle for a mid-sized organization. Examine the supplied policies, workflow configurations, sample case logs, access permissions, approval records, and exit procedures. Map each lifecycle stage from hire through separation, then identify control objectives, evidence expected, observed gaps, severity, likely cause, and practical remediation. Pay particular attention to payroll-impacting changes, access removal, confidential documents, manager approvals, and handoffs between HR, IT, finance, and payroll. Do not expose personal data; use anonymized case references and note where the sample is insufficient. Present findings in an audit matrix, followed by prioritized corrective actions and management questions. State clearly when HR, privacy, employment, or legal specialists must validate an interpretation. Self-check that no finding exceeds the evidence and that each action has an accountable owner.

Optional inputs: [Policies] [Workflow screenshots] [Sample size] [Access matrix] [Audit period]

95Responsible HR Automation Use-Case Prioritization

Use when: HR leaders need to decide which administrative processes may be automated without compromising fairness, privacy, or human judgment.

Open copy-ready prompt
Act as a responsible-automation advisor supporting an HR leadership team. Evaluate the supplied list of HR use cases, process descriptions, data sources, error history, vendor claims, and affected employee populations. Rank opportunities by administrative value, implementation effort, privacy exposure, explainability, accessibility, and risk of discriminatory impact. Recommend suitable categories such as automate, assist with human approval, pilot with safeguards, or do not pursue. Exclude decisions that should not be delegated to an automated system, including unsupported inferences about employee character or protected traits. Produce a scoring rubric, ranked portfolio, safeguard checklist, pilot design, monitoring metrics, and questions for procurement. Require qualified HR, privacy, compliance, and legal review before deployment. Self-check that every recommendation names a human decision owner, an appeal route, data limitations, and a rollback condition.

Optional inputs: [Use-case inventory] [Vendor documentation] [Historical errors] [Data fields] [Risk tolerance]

96Manager Capability and Leadership Review Pack

Use when: HR must prepare a balanced leadership review that turns manager-capability evidence into development priorities.

Open copy-ready prompt
Act as an organizational-development partner preparing a leadership review pack for a company whose manager capability is uneven. Analyze the supplied engagement comments, manager-assessment results, retention patterns, 360-degree themes, training participation, and business context. Synthesize recurring capability needs without ranking named individuals or making promotion, termination, or compensation decisions. Organize the output into an evidence summary, capability heat map, segment-level observations, proposed development interventions, measures of progress, and questions for the leadership team. Protect confidentiality by aggregating feedback and removing identifying quotations. Note sampling limits, possible response bias, and alternative explanations. Explain that any employment action requires qualified HR review and that legal review may be needed for sensitive cases. Self-check that each proposed intervention connects to evidence, avoids discriminatory assumptions, and includes a measurable behavior or outcome.

Optional inputs: [Assessment results] [Survey themes] [Leadership priorities] [Manager population] [Development budget]

97People Operations Incident Response Playbook

Use when: HR needs a controlled response process for a sensitive operational incident involving employee data, payroll, access, or workplace communications.

Open copy-ready prompt
Act as an HR operations incident-response lead drafting a playbook for a sensitive people-related incident. Based on the supplied scenario, systems involved, known timeline, affected populations, and existing policies, define immediate containment, fact-finding, internal coordination, communications, documentation, and recovery steps. Use a severity model and assign responsibilities across HR, IT security, payroll, communications, privacy, and leadership. Avoid naming individuals or assuming fault; preserve evidence and limit access to need-to-know personnel. Include employee-support considerations, notification decision points, and criteria for qualified HR, privacy, employment, or legal review. Deliver the playbook as a time-phased checklist, RACI matrix, message-hold guidance, and post-incident review template. Self-check that each action has an owner, timing, evidence requirement, escalation threshold, and confidentiality instruction.

Optional inputs: [Incident scenario] [Systems involved] [Known facts] [Policies] [Response team]

98HR Technology Vendor Due-Diligence Questionnaire

Use when: Procurement and HR need a rigorous questionnaire before selecting a technology provider that will process employee information.

Open copy-ready prompt
Act as an HR procurement and privacy specialist creating a vendor due-diligence questionnaire for an HR technology purchase. Cover the provider’s product scope, data collection, retention, deletion, hosting, subprocessors, access controls, audit evidence, incident response, model training, accessibility, support, implementation, portability, and change-management practices. Include questions that distinguish documented controls from marketing statements and require attachments or test evidence where appropriate. Add a weighted evaluation rubric, red-flag criteria, clarification log, and approval gates for HR, information security, privacy, procurement, and legal stakeholders. Do not assume that a certification alone proves suitability, and do not request unnecessary employee data during evaluation. Present the result in a procurement-ready table. Self-check that every material risk has a question, evidence request, owner, and escalation path.

Optional inputs: [Product category] [Data types] [Countries] [Security requirements] [Procurement timeline]

99Board-Level People Risk Report

Use when: An HR executive must brief a board or risk committee on material workforce risks without overwhelming it with operational detail.

Open copy-ready prompt
Act as a chief people officer preparing a board-level people-risk report. Use the supplied workforce indicators, talent dependencies, succession information, employee-relations themes, compliance status, safety data, and major transformation plans. Prioritize risks by potential business effect, uncertainty, velocity, and management readiness; do not present unverified allegations as facts. Keep the report focused on oversight rather than operational instructions. Structure it as an executive summary, risk heat map, trend commentary, leading indicators, mitigation status, emerging issues, and explicit board decisions or questions. Use aggregate data and protect confidentiality, especially for investigations, accommodations, health information, and small populations. State where qualified HR, employment, privacy, or legal review is required. Self-check that each risk has evidence, an accountable executive, a next review date, and a residual-risk assessment.

Optional inputs: [Board audience] [Risk taxonomy] [Workforce metrics] [Strategic initiatives] [Reporting period]

100HR Leadership Transition and 90-Day Briefing

Use when: A newly appointed HR leader needs a disciplined first-90-days plan grounded in organizational evidence rather than assumptions.

Open copy-ready prompt
Act as an experienced interim CHRO advising a newly appointed HR leader during the first 90 days. Review the supplied strategy, organization chart, workforce data, employee-listening themes, open investigations, technology roadmap, budget, and stakeholder expectations. Build a sequenced transition briefing that separates urgent risk containment, essential relationship-building, diagnostic work, and longer-term design choices. Include a listening-tour agenda, stakeholder map, evidence-request list, decision calendar, early-warning indicators, and a 30/60/90-day action table. Preserve confidentiality, avoid conclusions about named employees, and recommend qualified HR or legal review before changing policies, handling investigations, or taking employment action. Do not invent context that is absent from the materials. Self-check that each priority has a rationale, evidence source, owner, dependency, and success measure, with assumptions clearly labeled.

Optional inputs: [Strategic plan] [Org chart] [People data] [Open matters] [Budget] [Executive expectations]

Responsible use

Do not use AI outputs as the sole basis for employment decisions. Protect confidential information, avoid discriminatory practices, and involve qualified HR, legal, and local-policy reviewers when appropriate.

Prompts and Agents

Content Creation AI Prompts

Discover 100 detailed prompts for researching, planning, writing, editing, distributing, and improving useful content across formats and audiences.

How to use these prompts

Replace bracketed placeholders with your approved source material and brand context. Treat all outputs as drafts, verify claims, and obtain the required editorial and rights approvals.

1. Strategy, Research, and Editorial Planning

1Audience-Need Editorial Strategy

Use when: You need a practical editorial strategy grounded in a clearly defined audience problem rather than a list of fashionable topics.

Open copy-ready prompt
Act as a senior editorial strategist for a B2B publication serving operations leaders at growing companies. Using the audience profile, business objective, existing performance notes, and approved source material below, identify the three most valuable information needs this publication should address over the next quarter. For each need, explain the reader’s likely question, the evidence required, the appropriate content formats, and the business outcome it could support. Then recommend a 12-week sequence with working titles, intent, audience stage, and a brief rationale. Separate verified observations from hypotheses, flag missing evidence, and avoid promising traffic, leads, or revenue. Present the result as an insight table followed by a concise editorial calendar. Self-check that every recommendation maps to an audience need and an available evidence source.

Optional inputs: [Audience profile] [Business objective] [Existing performance notes] [Approved sources] [Publishing capacity]

2Research Brief for an Explainer

Use when: A writer needs a rigorous, assignment-ready brief before developing an explanatory article on a complex subject.

Open copy-ready prompt
Work as an assigning editor commissioning a balanced explainer for an informed general audience. Build a research brief on the topic described below. Define the central question, why it matters now if supported by the supplied evidence, essential terminology, competing or complementary perspectives, and the claims the finished article must substantiate. Recommend authoritative source types and specific interviewee profiles without inventing names, quotations, statistics, or citations. Include a proposed structure of six sections, a list of questions for primary research, and a “do not overclaim” note covering uncertainty or disputed points. Distinguish facts already provided from items that still require verification. Deliver the brief with headings, a source-tracking table, and a final verification checklist. Self-check that the outline answers the central question progressively rather than repeating background.

Optional inputs: [Topic] [Audience] [Known facts] [Publication voice] [Deadline] [Available sources]

3Evidence and Source-Mapping Plan

Use when: You are preparing evidence-led content and need to prevent unsupported claims from entering the draft.

Open copy-ready prompt
Act as a research editor reviewing a planned feature about the subject below. Convert the proposed thesis and outline into an evidence map. List each material claim the article may make, classify it as descriptive, causal, comparative, predictive, or interpretive, and specify what evidence would adequately support it. Recommend primary, secondary, and expert sources in priority order, but do not fabricate citations or imply that a source has been consulted. Add a column for likely limitations, such as small samples, outdated data, vested interests, or unclear methodology. Identify claims that should be softened or removed if evidence cannot be obtained. Return a Markdown table followed by a short reporting sequence and a pre-publication fact-check protocol. Self-check that causal language is not assigned to evidence that can establish only correlation or opinion.

Optional inputs: [Proposed thesis] [Outline] [Known sources] [Geographic scope] [Publication standards]

4Repurposing Architecture

Use when: One verified source asset must become a coherent multi-format package without repetitive or misleading rewrites.

Open copy-ready prompt
Serve as a content systems editor. Design a repurposing architecture for the approved source asset described below, preserving its verified meaning while adapting it for a newsletter, an executive LinkedIn post, a short video script, a five-slide briefing, and a website summary. First extract the source’s central argument, three supported findings, important caveats, and any statements that must not be altered. Then provide a channel-by-channel matrix showing audience, purpose, recommended angle, length, call to action, and what evidence or attribution should remain visible. Do not invent examples, testimonials, performance results, or quotations. Make the adaptations complementary rather than duplicative, and mark any format where the source is insufficient. Self-check every proposed message against the source asset and label interpretation separately from direct source content.

Optional inputs: [Source asset] [Audience segments] [Channels] [Brand voice] [Compliance requirements] [Desired publication dates]

5Interview and Primary-Research Plan

Use when: A reported article needs stronger first-hand insight and disciplined interviews rather than surface-level commentary.

Open copy-ready prompt
Act as an experienced features editor planning primary research for a reported article on the topic below. Create an interview plan for three distinct participant profiles, such as a practitioner, an affected stakeholder, and an independent subject-matter expert. For each profile, explain the perspective sought, write eight open-ended questions in a logical order, and include two follow-ups designed to test assumptions or clarify evidence. Add guidance on informed consent, attribution preferences, recording permission, conflicts of interest, and protecting confidential information. Do not presume a participant’s identity, experience, or agreement with the article’s premise. End with a note explaining how contradictory answers will be handled and a quote-verification checklist. Self-check that the questions invite concrete examples and cannot be answered only with promotional talking points.

Optional inputs: [Article topic] [Reporting angle] [Participant access] [Attribution policy] [Sensitive subjects] [Deadline]

6Editorial Calendar Prioritization

Use when: An overloaded content pipeline requires transparent decisions about what to publish, defer, combine, or decline.

Open copy-ready prompt
Work as a managing editor allocating a finite quarterly production budget. Evaluate the candidate story ideas below against audience value, evidence readiness, strategic relevance, timeliness, production effort, and editorial risk. Score each dimension using a clearly defined five-point rubric, explain the score in one sentence, and calculate a priority recommendation without pretending the result is objective truth. Place ideas into four decisions: commission now, develop with research, hold for a trigger, or decline. For the top six, provide a working headline, format, owner role, dependencies, and an appropriate success signal that is not guaranteed. Include a short sensitivity analysis describing which decisions could change if capacity or evidence availability shifts. Self-check that no idea is rewarded merely for being trendy and that unsupported claims are flagged before scheduling.

Optional inputs: [Story ideas] [Quarterly objective] [Team capacity] [Available evidence] [Timeliness constraints] [Risk policy]

7Content Gap and Coverage Audit

Use when: You need to assess an existing content library for meaningful coverage gaps instead of generating arbitrary new topics.

Open copy-ready prompt
Act as an editorial auditor examining the content inventory below for a publication serving the stated audience. Group the existing pieces by audience question, buyer or reader stage, format, and level of expertise. Identify genuine gaps, weak overlaps, outdated material, and areas where the library makes claims without visible evidence. For every proposed gap, explain the unmet reader need, why existing pieces do not satisfy it, the minimum research required, and the most suitable format. Recommend no more than eight new or revised pieces, prioritizing usefulness over volume. Do not infer performance that the inventory does not document, and do not label a topic a gap solely because it lacks a keyword. Present findings as a coverage matrix followed by prioritized editorial actions. Self-check that each recommendation references at least one specific inventory item or documented audience need.

Optional inputs: [Content inventory] [Audience description] [Reader journey] [Performance data] [Update policy] [Subject boundaries]

8Editorial Voice and Style Framework

Use when: A growing team needs a usable voice framework that improves consistency without flattening every writer’s expression.

Open copy-ready prompt
Serve as the editor-in-chief of a publication establishing a practical voice and style framework. Based on the mission, audience, sample passages, and editorial values below, define four voice attributes with paired “sounds like” and “does not sound like” examples. Set guidance for evidence language, uncertainty, inclusivity, terminology, headlines, introductions, calls to action, and first-person usage. Include a short revision exercise that transforms one supplied passage while preserving its factual meaning, and explain each meaningful edit. Avoid vague advice such as “be engaging,” and do not manufacture facts or cite an external style authority unless one is supplied. Format the framework as a compact table followed by examples and an editor’s review checklist. Self-check that the guidance distinguishes tone from accuracy and remains usable across both short and long formats.

Optional inputs: [Mission] [Audience] [Sample passages] [Editorial values] [Restricted terms] [Approved terminology]

9Editorial Experiment Design

Use when: You want to test a content hypothesis with a fair, interpretable plan rather than chase vanity metrics.

Open copy-ready prompt
Act as a measurement-minded content director designing one editorial experiment for the situation below. State the hypothesis in a falsifiable form, identify the audience and comparable content set, define the intervention, choose one primary outcome and up to three diagnostic measures, and specify the observation window. Explain what will remain constant, what could confound the result, and what minimum evidence would justify a follow-up rather than a definitive conclusion. Recommend an ethical test design that does not manipulate vulnerable audiences, conceal material information, or claim causation beyond the method. Provide an experiment card with fields for owner, timeline, data source, decision rule, and limitations, followed by three possible interpretations of the result. Self-check that the primary metric reflects reader value or a documented business objective, not attention alone.

Optional inputs: [Content hypothesis] [Audience] [Existing baseline] [Available analytics] [Test constraints] [Decision deadline]

10Editorial Governance and Review Workflow

Use when: Multiple contributors, sensitive subjects, or regulated claims require a clear path from idea approval to publication.

Open copy-ready prompt
Work as an editorial operations lead designing a lightweight governance workflow for the publication described below. Map the stages from pitch intake through research, drafting, expert review, fact-checking, legal or policy review where appropriate, final approval, publication, and post-publication correction. Assign a responsible role and a concrete exit criterion to each stage, while keeping the process proportionate to the content’s risk level. Include escalation rules for confidential information, contested claims, permissions, conflicts of interest, and requests to remove or amend material. Do not treat legal review as a substitute for editorial verification, and do not assert that a piece is compliant without qualified review. Deliver a swimlane-style table, a decision log template, and a correction checklist. Self-check that every high-risk issue has an owner, an escalation path, and documented evidence.

Optional inputs: [Publication type] [Team roles] [Risk categories] [Review resources] [Approval deadlines] [Correction policy]

2. Audience Insight, Positioning, and Voice

11Audience Interview Synthesizer

Use when: You have raw audience interviews and need an evidence-led summary that can guide content decisions.

Open copy-ready prompt
Act as a senior audience researcher and editorial strategist. I will provide interview notes from prospective readers of [publication, product, or campaign]. Synthesize them into a practical audience-insight brief without inventing quotations or treating one person’s opinion as a universal truth. Identify recurring needs, anxieties, desired outcomes, objections, language patterns, and moments of confusion. Separate direct evidence from your interpretation, flag contradictions, and note what remains unknown. Organize the output into: executive summary, evidence table with source references, priority audience segments, content implications, and five follow-up questions for research. Before finalizing, check that every claimed pattern is supported by at least two notes or is explicitly labeled anecdotal.

Optional inputs: [Interview notes] [Audience context] [Known business goal] [Source-labeling convention]

12Positioning Statement Workshop

Use when: A brand or creator has several competing messages and needs a focused, audience-relevant position.

Open copy-ready prompt
Work as a positioning consultant for [brand or creator] serving [specific audience]. Using the supplied background, develop three credible positioning territories rather than one premature answer. For each territory, state the audience problem, distinctive promise, supporting proof available in the materials, likely alternative choices, emotional angle, and content opportunities. Then recommend one territory with a concise rationale tied to audience relevance and defensibility. Draft a final positioning statement in plain language using this structure: For [audience], [brand] is the [category] that [distinctive benefit] because [verifiable reason to believe]. Do not create market claims, customer results, or competitive facts that are not supplied; label evidence gaps clearly.

Optional inputs: [Brand background] [Audience description] [Competitor notes] [Verified proof points] [Brand restrictions]

13Voice Guide from Existing Samples

Use when: You need a usable editorial voice guide grounded in published material rather than abstract adjectives.

Open copy-ready prompt
Act as an editorial director auditing the voice of [brand, author, or publication]. Analyze the sample texts I provide for sentence rhythm, vocabulary, formality, emotional temperature, point of view, humor, specificity, inclusivity, and calls to action. Distinguish repeatable voice characteristics from topic-specific wording. Produce a concise guide with: voice essence in one paragraph, five do-and-don’t rules, before-and-after examples based only on newly written sentences, a preferred terminology list, and a quality checklist for editors. Preserve the author’s identity without stereotyping or exaggerating it. Do not claim the samples represent the entire audience. Self-check that every recommendation can be traced to a visible pattern in the samples or is explicitly marked as a proposed refinement.

Optional inputs: [Writing samples] [Audience] [Channels] [Terms to avoid] [Desired change, if any]

14Persona and Content-Need Map

Use when: A content program serves multiple audience groups whose needs and decision contexts differ.

Open copy-ready prompt
Serve as a content strategist building a working audience map for [organization or project]. Based on the supplied research, create no more than four behavior-based personas; avoid demographic assumptions unless they are directly relevant and documented. For each persona, describe context, goals, barriers, questions, trusted sources, preferred content formats, and the action that would indicate progress. Map each persona to content needs across awareness, evaluation, onboarding, and retention, noting where one asset can serve several groups. Include a section titled “Do not assume,” listing unsupported inferences and missing evidence. End with three research tests that could validate or disprove the map. Check that each persona is defined by observable needs and that no sensitive trait is used to justify exclusion or unequal treatment.

Optional inputs: [Research summary] [Customer segments] [Funnel stages] [Available channels] [Business objective]

15Message Hierarchy for a Campaign

Use when: A campaign has too many possible talking points and needs a disciplined order of emphasis.

Open copy-ready prompt
Act as a campaign messaging architect for [campaign or launch] aimed at [audience] with the goal of [desired action]. Convert the verified source material into a message hierarchy: one core message, three supporting messages, proof points for each, likely audience questions, and approved calls to action. Explain which message belongs in headlines, opening paragraphs, visuals, FAQs, and follow-up content. Rank ideas by audience importance, not internal preference, and identify any statement that needs substantiation, permission, or legal review before publication. Avoid fabricated urgency, unsupported superiority, or implied guarantees. Deliver the result as a compact table followed by a 150-word narrative rationale. Before submitting, test whether a reader could summarize the campaign accurately after seeing only the core message and one support point.

Optional inputs: [Verified facts] [Audience research] [Campaign objective] [Approved claims] [Review requirements]

16Inclusive Language and Accessibility Editor

Use when: Draft content needs a respectful language review that improves clarity without flattening the intended voice.

Open copy-ready prompt
Work as an inclusive editorial and accessibility specialist reviewing the draft below for [audience and channel]. Identify language that may stereotype, exclude, shame, obscure meaning, or create unnecessary barriers, while avoiding assumptions about any individual reader. Recommend precise revisions and explain the communication benefit of each change. Also check heading order, reading level, link text, acronym use, image-description needs, color-dependent instructions, and whether the call to action is understandable without pressure. Return: risk-and-revision table, revised copy, items requiring subject-matter or community review, and a final accessibility checklist. Preserve factual meaning and the writer’s intended tone; do not add claims or cite standards you have not been given. Self-check by rereading the revision for clarity, dignity, and consistency across all audience references.

Optional inputs: [Draft copy] [Channel] [Audience context] [House style] [Known accessibility requirements]

17Tone Adaptation Across Channels

Use when: One approved idea must be expressed consistently across formats with different audience expectations.

Open copy-ready prompt
Act as a multi-channel copy editor. Adapt the approved source message about [topic] for [channel one], [channel two], and [channel three], keeping the underlying meaning, factual claims, and call to action consistent. First state the shared message and audience need. Then provide one version per channel with a brief note explaining the channel-specific choice of length, pacing, formality, and interaction style. Use only the facts supplied; mark any missing link, statistic, image permission, or disclosure as a bracketed production note rather than filling the gap. Avoid making the copy sound mechanically identical. Deliver polished copy plus a cross-channel consistency check. Confirm that no adaptation introduces a new promise, testimonial, citation, or implied result absent from the approved source.

Optional inputs: [Approved source message] [Channel requirements] [Audience differences] [CTA] [Brand voice guide]

18Editorial Angle Generator

Use when: You need several differentiated content angles on one topic without resorting to clickbait or unsupported controversy.

Open copy-ready prompt
Be a features editor developing publishable angles on [topic] for [audience and publication]. Using the supplied facts, propose six distinct angles, such as explanatory, practical, contrarian-but-fair, human-centered, historical, and decision-supportive, selecting only those that fit the evidence. For each, provide a working headline, one-sentence premise, audience question answered, reporting or source needs, risks of oversimplification, and a suggested format. Do not invent cases, statistics, expert opinions, or conflict. Flag angles that require interviews, permissions, fact-checking, or updated data. Recommend the strongest two based on usefulness and editorial fit, not sensationalism. Self-check that the six premises would produce materially different stories and that every factual assertion in the recommendations is either supplied or clearly identified as a reporting requirement.

Optional inputs: [Topic brief] [Verified source pack] [Publication mission] [Deadline] [Available contributors]

19Reader Objection and FAQ Planner

Use when: Readers may hesitate, misunderstand, or challenge a piece of content and you want to address concerns transparently.

Open copy-ready prompt
Serve as a reader-advocacy editor for content about [topic, product, or decision]. Anticipate the ten most reasonable questions or objections a well-informed reader might raise, including practical, ethical, cost, evidence, and implementation concerns where relevant. For each, write a concise answer using only the supplied information, identify what evidence would strengthen it, and state when the answer depends on context. Separate misunderstandings from legitimate limitations, and never dismiss criticism with persuasion language. Organize the output as a prioritized FAQ, followed by a “What we cannot confirm” section and recommendations for where the answers should appear in the article or user journey. Check that answers are plain, non-defensive, and not disguised endorsements; flag any issue requiring qualified professional review.

Optional inputs: [Draft or topic] [Audience questions] [Evidence pack] [Product or policy details] [Review owner]

20Editorial Content Brief with Voice Guardrails

Use when: A writer needs a complete, audience-centered brief that aligns purpose, positioning, and voice before drafting.

Open copy-ready prompt
Act as an assigning editor preparing a publication-ready brief for [content asset] aimed at [primary audience]. Define the reader’s situation, main question, desired takeaway, editorial purpose, positioning angle, voice principles, structure, evidence requirements, and success signals that can be observed without inventing performance targets. Include a proposed headline, dek, section outline, examples of acceptable phrasing, and a short list of phrases or approaches to avoid. Distinguish confirmed facts from assumptions and production tasks; require permission checks for quoted material, images, and testimonials. Keep the brief specific enough for an independent writer but open to findings that challenge the initial angle. Self-check that the brief serves a real audience need, makes no unsupported promise, and gives every major section a clear job.

Optional inputs: [Asset type] [Audience research] [Approved positioning] [Source materials] [Voice guide] [Publication constraints]

3. Long-Form Articles, Guides, and Thought Leadership

21Evidence-Led Industry Explainer

Use when: You need a trustworthy article that explains a complex industry shift to informed non-specialists.

Open copy-ready prompt
Act as a senior industry analyst writing for operations leaders who understand the basics but need practical context. Create a 1,200–1,500-word explainer on how [industry development] is changing [specific business function]. Define essential terms briefly, distinguish established evidence from informed interpretation, and use only the source notes and links supplied below; do not invent statistics, citations, customer examples, or forecasts. Organize the piece with a concise thesis, “what changed” overview, three implications, a limitations section, and five questions leaders should ask next. Keep the tone clear rather than sensational, acknowledge uncertainty, and avoid presenting general information as professional advice. Before finalizing, check every factual claim against the source pack and flag any unsupported assertion in a short editor’s note.

Optional inputs: [Audience seniority] [Industry] [Development] [Source pack] [Target word count]

22Step-by-Step Practical Guide

Use when: You want readers to complete a defined process safely and confidently after reading one guide.

Open copy-ready prompt
Act as an experienced practitioner and instructional editor. Write a 1,300-word guide showing [audience] how to complete [process] in a realistic setting with [available resources]. Begin with the outcome, prerequisites, and a brief “do not proceed if” warning for conditions requiring qualified advice. Present the method as sequential stages with action steps, decision points, examples using clearly labeled hypothetical data, and a troubleshooting table covering the four most likely obstacles. Separate required actions from optional improvements, avoid promising a guaranteed result, and do not imply access to tools or permissions the reader may not have. End with a compact completion checklist. Self-check that each step has an observable result, that examples are not disguised claims, and that no safety-critical omission is hidden by confident wording.

Optional inputs: [Reader profile] [Process] [Tools available] [Known constraints] [Desired outcome]

23Executive Thought-Leadership Essay

Use when: A subject-matter leader needs a distinctive point of view without overstating evidence or sounding promotional.

Open copy-ready prompt
Act as a respected executive ghostwriter with expertise in [field]. Draft an 1,000–1,300-word thought-leadership essay arguing that [central viewpoint] matters now for [specific audience]. Ground the argument in the supplied interview notes, published sources, and clearly attributed observations; never fabricate personal experiences, proprietary results, quotations, or named endorsements. Use a strong opening tension, a clear thesis, three developed arguments, one serious counterargument, and a closing principle that invites reflection rather than a sales pitch. Include one short illustrative scenario labeled as hypothetical. Preserve the executive’s measured, humane voice, avoid clichés such as “in today’s fast-paced world,” and distinguish opinion from verifiable fact. Before delivery, identify any sentence that needs source confirmation and ensure the conclusion does not claim certainty beyond the evidence.

Optional inputs: [Executive voice sample] [Central viewpoint] [Audience] [Interview notes] [Approved sources]

24Comparative Buyer’s Guide

Use when: Readers need a balanced long-form comparison of approaches, tools, or service models before investigating their options.

Open copy-ready prompt
Act as an independent editorial researcher. Produce a 1,400-word buyer’s guide comparing [three or four options] for [use case] across the criteria that matter to [audience]. Use only the supplied product documentation, pricing pages, test notes, and disclosures; do not infer performance, market share, customer satisfaction, or compatibility that the evidence does not establish. Open with a neutral decision summary, then explain the evaluation criteria, present a readable comparison table, and write one evidence-based profile for each option covering strengths, trade-offs, fit, and unanswered questions. Disclose missing or non-comparable information instead of filling gaps. Avoid affiliate-style language and do not name a winner unless the criteria and evidence support a narrowly defined use case. Self-check dates, units, feature names, and all comparative adjectives against the source material.

Optional inputs: [Options] [Use case] [Evaluation criteria] [Source documents] [Publication date]

25Research-to-Article Synthesis

Use when: You have several credible sources and need a coherent article rather than a sequence of disconnected summaries.

Open copy-ready prompt
Act as a research editor specializing in [topic]. Synthesize the supplied [papers, reports, interviews, or datasets] into a 1,200–1,500-word article for [audience]. Build the narrative around two or three genuine areas of agreement, disagreement, or open question; do not merely summarize each source in turn. Attribute findings precisely, preserve important qualifiers, and explain methodological limits in plain language. Use the structure: headline and dek, framing introduction, thematic sections, “where the evidence diverges,” practical implications, and source notes with links. Do not manufacture consensus, causal explanations, quotations, or numerical precision, and label any editorial interpretation as such. Include a brief source matrix listing each source’s contribution and limitation. Before finalizing, verify that every major conclusion is traceable to at least one supplied source and that conflicting evidence remains visible.

Optional inputs: [Topic] [Audience] [Source set] [Required themes] [Citation style]

26Narrative Case Study

Use when: You need a compelling customer or organizational story while protecting confidentiality and maintaining factual discipline.

Open copy-ready prompt
Act as a case-study writer for a professional publication. Turn the approved notes into a 1,000–1,300-word narrative about how [organization or anonymized subject] addressed [challenge] and what it learned. Use only facts, quotations, metrics, and permissions explicitly marked approved; replace confidential names and identifying details with agreed descriptions, and never create a testimonial or outcome. Structure the story with a scene-setting lead, context, decision constraints, turning points, implementation details, measured results, setbacks, and transferable lessons. Identify which results are verified, estimated, or qualitative, and include a sidebar titled “What this example does not prove.” Keep the subject’s agency and limitations visible rather than turning the account into advertising. Self-check every quote, figure, and identifying detail against the approval record, then list any unresolved fact for editorial sign-off.

Optional inputs: [Approved notes] [Permission scope] [Anonymization rules] [Verified metrics] [Target audience]

27Annual Trends Report Chapter

Use when: You are converting a year’s research into an analytical chapter that helps leaders interpret trends without hype.

Open copy-ready prompt
Act as the lead editor of an annual trends report on [sector]. Write a 1,300–1,600-word chapter examining [trend] during [time period] and its relevance to [audience]. Use the supplied time series, survey results, expert interviews, and methodology notes. Explain the baseline, describe meaningful changes, separate correlation from causation, and discuss at least two plausible interpretations when the data is ambiguous. Include a headline, executive takeaway, methodology caveat, three analytical sections, a “signals to watch” box, and five source-linked questions for further investigation. Do not extrapolate beyond the stated sample, invent missing years, or describe a trend as universal when the data is segmented. Avoid unsupported predictions. Before delivery, reconcile all percentages and dates with the data file, state denominators where relevant, and mark any editorial judgment that is not directly measured.

Optional inputs: [Sector] [Trend] [Time period] [Data files] [Methodology notes]

28Myth-versus-Reality Feature

Use when: A topic is crowded with popular claims and readers need a rigorous, accessible correction of misconceptions.

Open copy-ready prompt
Act as a fact-checking features editor covering [topic]. Create a 1,100–1,400-word myth-versus-reality article for [audience] that addresses five widely repeated claims supplied in the briefing. For each claim, state it fairly, give a verdict limited to “supported,” “partly supported,” “unproven,” or “misleading,” explain the relevant evidence, and show what a careful reader should conclude instead. Cite only the approved sources, represent their scope accurately, and note when evidence is preliminary or contested. Do not ridicule people who hold the claim, repeat sensational wording in the headline, or replace one oversimplification with another. Add a short methods note explaining how claims were selected and assessed. Self-check that every verdict has a stated basis, every correction preserves necessary nuance, and no rhetorical flourish implies stronger evidence than the sources provide.

Optional inputs: [Topic] [Audience] [Five claims] [Approved sources] [Fact-check standard]

29Expert Interview-to-Guide Conversion

Use when: A strong interview contains valuable expertise but needs to become a useful evergreen resource.

Open copy-ready prompt
Act as a developmental editor turning an approved interview with [expert role] into a practical 1,200-word guide for [audience]. Extract the expert’s strongest principles, examples, cautions, and decision criteria, but do not add views, credentials, quotations, or results that are absent from the transcript. Preserve meaning when tightening spoken language and clearly label any paraphrase; obtain approval before publishing direct quotes. Organize the guide around the reader’s journey: recognizing the problem, choosing an approach, executing key steps, avoiding common mistakes, and evaluating progress. Include a “questions to ask an expert” checklist and a boxed note identifying where the advice depends on context. Avoid universal prescriptions and disclose when qualified professional review may be needed. Before finalizing, compare each substantive statement with the transcript and create a quote-verification list for the editor.

Optional inputs: [Transcript] [Expert approval status] [Audience] [Problem] [Publication context]

30Editorial Series Blueprint

Use when: You need a coherent multi-article thought-leadership series instead of isolated content ideas.

Open copy-ready prompt
Act as a managing editor planning a six-part editorial series about [broad subject] for [publication or organization]. Develop a blueprint that gives the series a unifying thesis while assigning each article a distinct question, audience need, evidence base, and practical takeaway. For every installment, provide a working headline, 40-word premise, proposed structure, reporting requirements, likely counterview, source types to seek, and a specific standard for publication readiness. Include the recommended sequence, internal cross-links, and a short statement of what the series will not claim. Keep the plan editorial rather than promotional; do not promise outcomes, invent expert access, or assume permissions for third-party material. Finish with a risk register covering unsupported claims, repetition, confidentiality, and outdated sources. Self-check that no two installments solve the same reader problem and that the arc progresses logically from context to application.

Optional inputs: [Broad subject] [Publication] [Target readers] [Available sources] [Series length]

4. Social, Community, and Short-Form Content

31Community Conversation Starter

Use when: You need to turn a broad brand theme into a thoughtful discussion that encourages genuine community participation.

Open copy-ready prompt
Act as a community editor for a mission-driven consumer brand. We are introducing a discussion about [theme] to [community] on [platform], where members value practical experience over promotional language. Write one opening post of 110–140 words that frames a specific, answerable question, acknowledges two reasonable perspectives, and invites members to share an example rather than a hot take. Include a concise title, the post copy, and three respectful follow-up questions a moderator can use. Avoid engagement bait, false urgency, invented statistics, and assumptions about members’ identities or circumstances. Keep the tone curious and inclusive. Before finalizing, check that the post can stand alone without missing context and that each question can be answered without revealing private information.

Optional inputs: [brand mission] [audience norms] [platform] [moderation sensitivities]

32Short-Form Video Script

Use when: You want a concise, credible vertical-video script that teaches one useful idea without sounding like an advertisement.

Open copy-ready prompt
Act as a short-form video producer for a subject-matter expert in [field]. Create a 35–45 second vertical-video script explaining [single concept] to [audience] at a [beginner/intermediate] level. Structure the response as: hook, spoken lines with approximate timestamps, on-screen text, suggested visual action, and a low-pressure closing invitation. Use plain language, one concrete example, and no more than one technical term, defining it when used. Do not invent proof, customer results, credentials, or citations; mark any claim that needs source verification as [VERIFY]. Keep the hook specific rather than sensational. Perform a final check for pacing, factual restraint, accessibility of captions, and a closing that does not pressure viewers to comment or purchase.

Optional inputs: [expert bio] [verified facts] [visual assets] [call-to-action destination]

33LinkedIn Thought-Leadership Post

Use when: An executive or practitioner needs to share a useful point of view while preserving a credible, personal voice.

Open copy-ready prompt
Act as an editorial ghostwriter for a [role] at [organization]. Draft a LinkedIn post of 180–220 words about [industry observation or lesson] for [professional audience]. Build it around one defensible argument, one clearly labeled firsthand observation, and one practical implication readers can apply this week. Use short paragraphs, a restrained opening line, and a closing question that invites expertise rather than applause. Do not fabricate personal experiences, company milestones, research, customer outcomes, or quotations; separate supplied facts from interpretation. Avoid generic leadership clichés and overt product promotion. Return the post plus a one-line suggested image concept and three optional hashtags. Check that the argument is understandable without insider context and that every factual statement can be traced to the supplied brief.

Optional inputs: [approved facts] [speaker voice notes] [audience] [restricted topics]

34Instagram Carousel Outline

Use when: You need to translate a complex idea into a swipeable, visually coherent carousel with a clear learning progression.

Open copy-ready prompt
Act as a social content strategist and instructional designer. Create a nine-slide Instagram carousel teaching [topic] to [audience]. Provide a slide-by-slide table with the slide purpose, headline of no more than eight words, body copy of no more than 25 words, visual direction, and accessibility text. Start with a specific promise, develop three to five logically ordered points, include one nuanced caveat, and end with a useful recap rather than a sales pitch. Use only the verified information in [source brief]; do not add statistics, citations, testimonials, or claims that are not supplied. Keep language inclusive and avoid implying that one approach fits everyone. Self-check the sequence for repetition, readability on mobile, accurate caveat placement, and a final slide that delivers on the opening promise.

Optional inputs: [source brief] [brand colors] [audience reading level] [visual library]

35Social Listening Response Bank

Use when: A brand needs consistent, human responses to recurring public questions, praise, criticism, and uncertainty.

Open copy-ready prompt
Act as a customer-community lead for [brand]. Build a response bank for six situations: a sincere compliment, a product-use question, a delivery concern, a factual correction, a disappointed customer, and a hostile but non-threatening comment. For each situation, write one public reply of 35–55 words, one private follow-up suggestion, and a routing note explaining when a trained support, privacy, safety, or legal team should take over. Use an empathetic, non-defensive tone and never request sensitive personal data in public. Do not promise refunds, outcomes, or policy exceptions unless they appear in [approved policy]. Do not argue with criticism or manufacture a resolution. Check every reply for clarity, de-escalation, confidentiality, and a realistic next step that the brand can actually provide.

Optional inputs: [approved policy] [support channels] [escalation contacts] [brand voice]

36Creator Brief for a UGC Partnership

Use when: You are briefing a creator to produce authentic-looking content while keeping disclosures and claims transparent.

Open copy-ready prompt
Act as an ethical creator-partnership manager. Write a one-page brief for a creator making a [platform] video about [product or experience] for [audience]. Include the audience insight, single message, permitted demonstration, required disclosure language, visual guardrails, prohibited claims, accessibility requirements, delivery specifications, and review process. Encourage the creator to speak in their own voice and distinguish personal experience from objective product claims. Never require a fabricated testimonial, hidden sponsorship, staged result, or unverified comparison. State that any performance, health, financial, or environmental claim must use approved evidence and receive appropriate review before publication. End with a preflight checklist covering disclosure visibility, rights to music and footage, factual accuracy, captions, and whether the content respects the creator’s audience.

Optional inputs: [creator profile] [approved claims] [disclosure rules] [asset-rights terms]

37Reddit-Style Educational Answer

Use when: You want to answer a niche community question helpfully without disguising promotional intent or overstating expertise.

Open copy-ready prompt
Act as a knowledgeable, non-promotional contributor responding to this question: [question]. Write a Reddit-style answer of 220–280 words for [subreddit or community], assuming readers are [experience level]. Begin by answering the question directly, then explain the reasoning in two or three sections, include one practical example, and note when the advice may not apply. Use a neutral tone and acknowledge uncertainty where evidence is limited. Do not pretend to be a user, hide an affiliation, cite sources you have not been given, or insert a product recommendation unless it directly answers the question and is clearly identified as optional. Avoid diagnosing people or giving individualized professional advice. Self-check that the answer addresses the actual question, avoids condescension, and leaves readers with a safe next step.

Optional inputs: [question context] [verified references] [affiliation disclosure] [community rules]

38Live-Stream Run of Show

Use when: A host needs a timed, interactive live session that balances useful content with audience participation.

Open copy-ready prompt
Act as a live-program producer. Design a 30-minute run of show for a live stream about [topic], hosted by [host role] for [audience] on [platform]. Present a timed table covering welcome, context, two teaching segments, a demonstration or example, audience questions, a recap, and close. For each segment, include host intent, exact transition language, a participation prompt, and a fallback if engagement is low. Keep the session educational and avoid unsupported claims, manufactured viewer questions, or pressure tactics. Add moderation guidance for misinformation, harassment, privacy disclosures, and questions requiring qualified advice. Include a short pre-live checklist for permissions, captions, recording notice, and approved assets. Check that the agenda totals exactly 30 minutes and that each interaction has a clear, respectful handling path.

Optional inputs: [speaker notes] [approved claims] [moderation policy] [technical setup]

39Social Content Repurposing Matrix

Use when: One reliable source asset must be adapted into several platform-native pieces without repeating the same copy.

Open copy-ready prompt
Act as a senior content repurposing editor. Using only the supplied source asset, [asset description], create a matrix for five adaptations: a 45-second video, a LinkedIn post, an Instagram carousel, an email-community teaser, and a concise social reply. For each, specify the audience angle, unique takeaway, draft copy or script, visual or formatting direction, and the source passage supporting it. Preserve the original meaning, label interpretation as interpretation, and flag unsupported claims as [VERIFY]. Do not copy identical wording across channels, invent quotations, add testimonials, or imply results absent from the source. Keep each adaptation native to its platform and include a sensible accessibility note. Self-check the matrix for factual traceability, distinctiveness, consistent terminology, and the absence of claims that require permissions or evidence not supplied.

Optional inputs: [source asset] [channel limits] [brand voice] [approved terminology]

40Crisis-Adjacent Community Update

Use when: A brand must communicate during a sensitive situation with empathy, precision, and room for verified updates.

Open copy-ready prompt
Act as a communications advisor supporting a brand during [sensitive situation]. Draft a 120–160-word community update for [platform] that acknowledges what people may be experiencing, states only the confirmed facts from [incident brief], explains the immediate action the organization is taking, and identifies where verified updates will appear. Do not speculate about cause, blame, timelines, affected individuals, or resolution; do not minimize harm, make legal conclusions, or use the situation to promote products. Include a short moderator note with three questions to route privately and two categories that require executive, legal, safety, or qualified specialist review. Use humane, plain language and avoid performative apologies unless the brief supports them. Before delivery, verify every factual statement against the incident brief and confirm that privacy, accessibility, and update expectations are handled responsibly.

Optional inputs: [incident brief] [approved facts] [update channel] [review owners]

5. Video, Audio, and Visual Storytelling

41Documentary Short Treatment

Use when: You need a fact-based concept and production-ready treatment for a short documentary about a real person, place, or issue.

Open copy-ready prompt
Act as an experienced documentary producer and narrative journalist. Develop a six-minute documentary treatment about [subject and central question] for [audience and platform]. Build the story around verified source material, identifying a compelling opening image, three-act progression, potential interview voices, observational scenes, and a closing idea that avoids overstating the evidence. Recommend a visual language, sound approach, approximate runtime by segment, and permissions or release considerations. Mark every proposed fact that requires confirmation rather than inventing details. Present the result as a title, logline, treatment, scene map, interview plan, and verification checklist. Before finalizing, test whether the subject has agency, whether opposing context is represented fairly, and whether any scene implies a claim the sources cannot support.

Optional inputs: [subject] [source materials] [audience] [runtime] [distribution platform]

42Brand Film Storyboard

Use when: You are turning a brand message into a concise visual narrative without relying on exaggerated promises or generic advertising language.

Open copy-ready prompt
Act as a commercial director and storyboard artist. Create a production-ready storyboard for a [length]-second brand film introducing [brand, product, or service] to [target audience]. The story should communicate [single approved message] through concrete action, character behavior, setting, camera movement, and sound rather than unsupported superlatives. Use a table with shot number, duration, framing, action, dialogue or voice-over, on-screen text, audio cue, transition, and required asset. Keep the cast and locations realistic for [budget or production scale], and flag any logo, music, location, or likeness that needs permission. Include a brief tone guide and a final compliance check. Verify that every spoken or displayed claim is traceable to approved materials and that the film remains understandable with audio muted.

Optional inputs: [brand guidelines] [approved claims] [runtime] [budget] [deliverables]

43Podcast Episode Blueprint

Use when: You want a well-paced podcast episode plan that balances host narration, guest material, context, and listener value.

Open copy-ready prompt
Act as a senior podcast producer preparing an episode blueprint about [topic] for [show identity and audience]. Design a [duration]-minute episode with a precise listener promise, cold open, host setup, interview arc, explanatory transitions, audience question or practical takeaway, and closing call to action. Suggest questions that invite specific experiences instead of leading the guest toward predetermined conclusions. Separate confirmed context from points that need research, and do not fabricate quotes, credentials, statistics, or outcomes. Provide a timed rundown, question bank, host notes, suggested ambient sound, editing flags, and accessibility notes for transcript and show-note production. Finish by checking for balance, consent-sensitive questions, potential defamation or privacy concerns, and a clear distinction between reporting, opinion, sponsorship, and personal testimony.

Optional inputs: [topic] [guest background] [show format] [episode length] [sponsor requirements]

44Audio Drama Scene Design

Use when: You are developing an original audio-fiction scene that must communicate setting, conflict, and character emotion without visual exposition.

Open copy-ready prompt
Act as an audio-drama director and script editor. Write a four-to-six-minute scene in which [character A] must [objective] while [obstacle or secret] threatens the outcome. Set it in [location and time], using dialogue, purposeful silence, movement, room tone, and distinct sound effects to make the world legible without narration overload. Give each character a specific vocal intention and avoid stereotypes, confusing overlaps, or effects that would be impossible to record cleanly. Format the result as a polished script with character cues, performance direction, sound-design cues, and a short recording plan. Do not imitate a living writer’s style. After drafting, conduct a self-check for audibility, dramatic escalation, continuity of spatial movement, and whether a listener can identify who is speaking from the page alone.

Optional inputs: [characters] [setting] [dramatic objective] [available recording tools] [target audience]

45Social Video Series Plan

Use when: You need a repeatable short-form video series with varied episodes, clear hooks, and realistic production requirements.

Open copy-ready prompt
Act as a short-form video strategist and field producer. Plan a ten-episode vertical video series about [subject] for [platform and audience], with each episode lasting [duration]. Give the series a recognizable format but make every installment meaningfully different: vary the story engine among demonstration, interview, experiment, behind-the-scenes observation, case example, and myth clarification. For each episode, provide a factual hook, beat-by-beat outline, suggested visuals, spoken script or interview prompt, caption text, accessibility treatment, filming needs, and a non-manipulative audience prompt. Use only claims supported by [source set], and label ideas needing confirmation. Include a batch-production schedule and rights checklist. Audit the plan for repetitive premises, misleading edits, undisclosed sponsorship, inaccessible text, and calls to action that pressure viewers.

Optional inputs: [subject] [platform] [source set] [episode duration] [brand voice] [production resources]

46Photo Essay Editorial Plan

Use when: You are shaping a sequence of photographs and captions into an ethical, coherent visual essay for publication.

Open copy-ready prompt
Act as a photo editor and visual journalist. Design an editorial plan for a [number]-image photo essay about [community, place, or theme] intended for [publication and readership]. Establish a concise thesis, sequence the images by emotional and informational rhythm, and describe the role of establishing, detail, portrait, action, and aftermath frames. Draft caption templates that distinguish observed facts, reported statements, and photographer interpretation without inventing context. Recommend consent, privacy, safeguarding, caption-accuracy, and archive-labeling practices appropriate to the subject. Present the output as an editorial concept, image sequence, caption grid, missing-shot list, and publication checklist. Before completion, test whether the sequence avoids voyeurism, gives subjects dignity and agency, represents meaningful context, and clearly labels staged, illustrative, archival, or AI-assisted images.

Optional inputs: [theme] [existing photographs] [publication] [image count] [consent constraints]

47Explainer Video Script

Use when: You need to explain a complex process or idea clearly in a short video while preserving nuance and source transparency.

Open copy-ready prompt
Act as a science or technical explainer writer and visual editor. Write a [runtime]-minute script explaining [concept or process] to [audience with stated knowledge level]. Start with a concrete question or situation, then build from plain-language definition to mechanism, example, limitation, and practical takeaway. Pair each narration passage with a specific visual suggestion such as animation, diagram, screen capture, demonstrable object, or on-location footage. Keep terminology accurate, define unavoidable jargon, and avoid false certainty, sensational framing, and unsupported comparisons. Include source notes tied to factual claims, a pronunciation guide where needed, and an accessibility version of on-screen text. Structure the deliverable as timed narration, visual direction, graphics list, and fact-check log. Self-check that the visuals do not imply causation the script denies and that a qualified reviewer could audit every material claim.

Optional inputs: [concept] [audience level] [runtime] [source documents] [visual assets]

48Music Video Concept Package

Use when: You are translating an original song into a distinctive, feasible music-video concept with visual motifs and a manageable shoot plan.

Open copy-ready prompt
Act as a music-video creative director and production designer. Develop a concept package for the original song [song title or thematic description] by [artist or project] in a [genre or mood], aimed at [audience and release context]. Identify the emotional arc, central visual metaphor, recurring motifs, performance strategy, narrative beats, palette, locations, wardrobe logic, and edit rhythm without copying another artist’s recognizable video. Provide a treatment, chorus-to-verse visual map, essential shot list, low-cost alternatives, and rights or safety notes for locations, artwork, choreography, and featured people. Keep the concept achievable within [production constraints]. End with a self-critique that checks whether the visuals add meaning, the metaphor remains understandable, the artist retains agency, and no borrowed intellectual property or hazardous stunt is assumed.

Optional inputs: [song reference] [artist identity] [budget] [locations] [release date] [visual references]

49Virtual Event Run of Show

Use when: You are coordinating a polished livestream or virtual event with dependable pacing, audience interaction, and contingency planning.

Open copy-ready prompt
Act as a live-show producer and broadcast director. Build a detailed run of show for a [duration]-hour virtual event about [event purpose] with [number and type of segments], serving [audience] across [platform]. Sequence host remarks, presentations, interviews, demonstrations, breaks, captions, graphics, audience questions, sponsor acknowledgments, and transitions with exact time windows and ownership. Include a technical cue sheet covering camera, microphone, slides, playback, lower thirds, chat moderation, recording, and backup communications. Write concise host bridges and neutral instructions for handling delays, inappropriate comments, or inaccessible materials. Do not promise features the platform lacks or present sponsor claims as independent facts. Deliver a timed table plus rehearsal checklist and incident plan. Self-check that every segment has a clear purpose, accessible alternative, responsible moderator, and recovery path if a speaker or connection fails.

Optional inputs: [event objective] [agenda] [platform] [speakers] [technical setup] [sponsor rules]

50Visual Campaign Asset System

Use when: You need a coherent set of video, audio, and still assets that can be adapted across channels without losing meaning or brand consistency.

Open copy-ready prompt
Act as a multimedia campaign producer and accessibility-minded art director. Create an asset system for [campaign or editorial initiative] across [channels], built around the approved message [message] and audience [audience]. Define one core story, then adapt it into a hero video, short cutdowns, audio spot, still-image sequence, and caption-first versions. For each asset, specify purpose, aspect ratio, duration, opening frame or sound, script or copy direction, visual system, required source material, accessibility treatment, and delivery specification. Separate confirmed claims from creative suggestions and prohibit invented performance data, testimonials, endorsements, or permissions. Present the result as a channel matrix, modular production brief, reuse rules, and final QA checklist. Verify legibility on small screens, intelligibility without sound, accurate captions, consistent terminology, rights clearance, and truthful representation of any people or results.

Optional inputs: [campaign brief] [approved message] [channels] [brand system] [source assets] [delivery deadline]

6. SEO, Distribution, and Content Repurposing

51Build an Evidence-Led SEO Content Brief

Use when: You need a writer-ready brief that turns search intent and verified source material into an original, useful article.

Open copy-ready prompt
Act as a senior SEO editor and editorial researcher for a publication covering [topic and audience]. Using only the supplied sources and clearly labeled first-party information, create a content brief for an article targeting [primary query] and related reader questions. Identify the dominant intent, recommended angle, proposed title and meta description, logical H2/H3 outline, internal-link opportunities, trustworthy external sources to consult, and facts that require verification before publication. Separate confirmed information from assumptions, avoid keyword stuffing, and flag claims that would need expert review. Present the brief as a structured table followed by a concise editorial rationale. Before finishing, check that every suggested factual claim is traceable to a source or explicitly marked for verification and that the angle offers value beyond competing summaries.

Optional inputs: [primary query] [audience] [publication] [source pack] [internal URLs] [editorial standards]

52Refresh an Aging Article Without Inventing Updates

Use when: An existing page has useful foundations but needs a careful, evidence-based refresh for current searchers.

Open copy-ready prompt
Act as a managing editor conducting a responsible refresh of [article URL or pasted article] about [subject]. Compare the current copy with the supplied update sources, then produce an edit plan with four sections: keep, revise, remove, and add. For each proposed change, explain the reason, cite the relevant supplied source by name or URL, and note whether the change affects accuracy, search intent, clarity, or conversion. Preserve the article’s useful voice, do not manufacture dates, statistics, quotes, rankings, or “latest” claims, and do not recommend changes unsupported by evidence. Include a revised title, introduction, and meta description only when the source material supports them. Self-check that no recommendation implies freshness without a dated, verifiable basis and that unresolved facts are clearly assigned for human review.

Optional inputs: [article text or URL] [update sources] [publication date] [target query] [brand voice] [required review date]

53Design a Search-Intent Topic Cluster

Use when: You want a coherent set of related pages that serves readers across discovery, evaluation, and decision stages.

Open copy-ready prompt
Act as a content strategist for [brand or publication] serving [audience] in [market]. Design a topic cluster around [core subject] using the supplied audience insights, existing URLs, and approved business context. Recommend one authoritative pillar page and [number] supporting pages, assigning each a distinct search intent, working title, primary query, secondary questions, funnel stage, and appropriate call to action. Map the pages to one another without forcing links, identify cannibalization risks, and mark topics that require subject-matter expertise or current evidence. Do not promise rankings or infer demand from unsupported assumptions. Deliver the result as a planning table plus a short sequencing rationale. Before finalizing, check that every supporting page answers a meaningfully different question, the pillar is not a duplicate, and each recommendation can be validated through the provided research.

Optional inputs: [core subject] [audience research] [keyword data] [existing URL inventory] [business goal] [number of supporting pages]

54Adapt a Long-Form Guide into a Newsletter Series

Use when: A substantial guide contains enough verified ideas to become a useful, non-repetitive email sequence.

Open copy-ready prompt
Act as an experienced newsletter editor. Repurpose the supplied guide, [guide text or URL], into a [number]-email series for [audience] who want to [desired outcome]. Give each email a distinct promise, subject-line options, preview text, opening hook, concise body outline, one practical takeaway, and a natural next step. Retain only claims supported by the guide or its cited sources; do not invent subscriber results, urgency, endorsements, or personal stories. Design progression across the series so readers can act between messages, while making each email understandable on its own. Keep the tone [voice] and each draft within [word limit]. Return a sequence map followed by copy-ready drafts. Self-check for repetition, unsupported claims, excessive promotional language, and subject lines that accurately represent the email content.

Optional inputs: [source guide] [audience] [series length] [desired outcome] [voice] [word limit] [CTA destination]

55Repurpose a Webinar into a Multi-Channel Package

Use when: You have a recorded or transcribed webinar and need coordinated assets without losing the speaker’s meaning.

Open copy-ready prompt
Act as a content repurposing producer for [brand]. From the supplied webinar transcript and approved speaker bio, create a coordinated package for [target audience]: a search-friendly summary, one editorial article outline, five short social posts, three video clip suggestions with exact transcript ranges, and a follow-up email. Preserve the speaker’s qualifications and wording; distinguish direct quotations from paraphrase, and flag any statement that needs fact-checking or permission before publication. Tailor length and call to action to each channel rather than copying one asset everywhere. Do not add statistics, testimonials, customer outcomes, or citations absent from the source materials. Organize the deliverables with clear labels and channel constraints. Before finishing, verify that every quote is verbatim, every clip has a complete idea, and all assets point to the same approved destination.

Optional inputs: [webinar transcript] [speaker bio] [channel list] [clip duration] [brand voice] [approved CTA URL]

56Create a Search-Optimized YouTube Description and Chapters

Use when: A legitimate video needs clearer discoverability and navigation without clickbait or misleading metadata.

Open copy-ready prompt
Act as a video SEO editor for [channel] and [audience]. Using the supplied transcript, final title, and verified links, write a YouTube description that accurately states what viewers will learn, includes a concise opening summary, adds relevant resource links, and ends with a measured call to action. Then create timestamped chapter labels based only on actual topic transitions in the transcript. Suggest five honest tags and three alternate titles that improve clarity without exaggeration, prohibited claims, or keyword stuffing. Preserve any required disclosures and flag links or rights that must be confirmed before publishing. Return the description, chapters, tags, title alternatives, and a short rationale for the metadata choices. Self-check that every chapter begins at a valid timestamp, every promised topic appears in the video, and no title implies a result the source does not support.

Optional inputs: [transcript] [final video length] [verified links] [channel audience] [required disclosures] [brand terms]

57Turn One Research Article into Social Variants

Use when: You need platform-specific distribution copy grounded in one approved article rather than a set of improvised claims.

Open copy-ready prompt
Act as a social distribution editor for [publication]. Based on the supplied article and its approved sources, create platform-native promotional copy for [platforms, such as LinkedIn, Instagram, X, and Facebook]. For each platform, provide [number] variants with a hook, body copy, suggested visual direction, accessibility text where relevant, and a clear but non-manipulative call to action. Match each platform’s typical reading context without asserting that the article proves more than it does. Do not fabricate engagement statistics, expert endorsements, quotations, or reader outcomes; label any proposed excerpt as a paraphrase unless it is copied exactly. Include a compact source-and-claim check beneath the variants. Before finishing, confirm that each post communicates the article’s actual thesis, uses distinct wording, and avoids sensationalism or unsupported certainty.

Optional inputs: [article] [approved sources] [platforms] [variant count] [visual assets] [CTA URL] [accessibility requirements]

58Localize Content for a New Market Carefully

Use when: An approved piece must be adapted for a different country or language community without careless cultural or regulatory assumptions.

Open copy-ready prompt
Act as a localization editor and cultural reviewer for [brand]. Adapt the supplied [article, landing page, or campaign] from [source market/language] for [target market/language] and [audience]. Preserve the core meaning while revising examples, spelling, units, currency references, idioms, calls to action, and search terminology where appropriate. Identify statements that may depend on local law, consumer expectations, pricing, availability, or cultural context, and mark them for qualified local review rather than guessing. Do not translate brand names, quotations, claims, or regulated language mechanically; retain required permissions and disclosures. Deliver a localization decision log, a polished adapted draft, and a verification checklist. Self-check that all numerical and geographic references are internally consistent, culturally respectful, and supported by approved local evidence.

Optional inputs: [source content] [source language] [target language] [target market] [style guide] [approved local sources] [regulated topics]

59Build a Content Distribution Test Plan

Use when: You want to learn which ethical distribution variables improve reach or qualified engagement.

Open copy-ready prompt
Act as a growth-focused editorial analyst for [organization]. Design a four-week distribution test for [content asset] across [channels] with the goal of learning [specific measurable objective]. Define the audience segment, baseline period, test variables, control condition, posting cadence, sample-size assumptions or limitations, success metrics, tracking conventions, and decision rules. Separate reach metrics from meaningful actions such as qualified clicks, registrations, or downloads, and warn against interpreting correlation as causation. Include a channel-by-channel experiment matrix and a weekly reporting template. Do not promise performance, encourage deceptive engagement tactics, or infer results before data exists. Before finalizing, check that each experiment changes one primary variable where feasible, uses consistent attribution, respects platform and privacy rules, and has a predetermined interpretation for inconclusive results.

Optional inputs: [content asset] [channels] [objective] [baseline data] [audience segments] [test budget] [tracking system] [test duration]

60Audit a Repurposed Content Portfolio

Use when: Multiple derivatives of one source need an editorial, SEO, accessibility, and governance review before distribution.

Open copy-ready prompt
Act as a senior content operations auditor. Review the supplied source asset and derivative portfolio, including [URLs or drafts], against the stated audience, brand standards, accessibility requirements, and source permissions. Produce an audit table covering each derivative’s purpose, target channel, factual fidelity, search intent, originality, accessibility, disclosure needs, link health, canonical or duplication concerns, and recommended disposition: publish, revise, hold, or retire. Quote or reference the source passage when identifying a fidelity issue, and distinguish a confirmed defect from a question for the owner. Do not invent missing evidence or approve rights, claims, testimonials, or citations that have not been documented. End with a prioritized editorial queue and owners by role. Self-check that every disposition has an observable reason and that no derivative outranks the approved source in certainty.

Optional inputs: [source asset] [derivative drafts/URLs] [brand standards] [accessibility checklist] [permissions record] [owners] [review deadline]

7. Email, Lifecycle, and Conversion Content

61Welcome-Series Architect

Use when: You need an onboarding sequence that turns new subscribers into confident first-time users.

Open copy-ready prompt
Act as a lifecycle email strategist for a privacy-conscious project-management software company. Design a five-email welcome series for small creative teams, covering orientation, first meaningful action, collaboration, proof of value, and a soft trial invitation. Keep each email under 180 words. For every message, provide a subject line, preview text, body copy, primary CTA, and send timing. Distinguish education from promotion, use plain language, and avoid invented customer numbers, testimonials, or product capabilities. Mark any evidence that needs confirmation. Finish with a self-check explaining how the sequence reduces friction, respects consent, avoids excessive frequency, and gives subscribers a clear way to leave.

Optional inputs: [product description] [audience] [verified features] [trial terms] [brand voice]

62Abandoned-Checkout Recovery

Use when: You want to recover incomplete purchases without pressure, false scarcity, or misleading claims.

Open copy-ready prompt
Act as a conversion copywriter for an ethical online stationery shop. Create a three-message abandoned-checkout sequence for customers who customized a notebook but did not pay. Write one email for two hours later, one for the next day, and one for three days later. Include subject line, preview text, concise body, button label, and timing rationale. Address saved customization, shipping expectations, payment security, and support access, but do not imply scarcity, guaranteed delivery, or a discount unless supplied as verified facts. Keep the tone helpful rather than urgent. End by checking that every claim is supportable, the final email offers an easy exit, and the sequence does not punish indecision.

Optional inputs: [product details] [shipping policy] [support channel] [verified incentive] [customer segment]

63Trial-to-Paid Nurture

Use when: Trial users need guidance toward an informed subscription decision.

Open copy-ready prompt
Act as a SaaS retention marketer helping administrators evaluate a 14-day analytics-platform trial. Build a six-touch sequence using email and in-app copy: setup, first insight, team sharing, common obstacle, plan comparison, and trial conclusion. For each touch, provide the audience condition, delivery day, message copy, one primary action, and one measurable engagement signal. Explain how the sequence supports evaluation rather than manufacturing anxiety. Do not fabricate benchmarks, integrations, customer results, or feature availability; use neutral wording where proof is missing. Include accessible subject lines and avoid excessive punctuation. Conclude with a self-audit covering consent, frequency, pricing clarity, measurement limits, and whether recommendations are tied to verified user behavior.

Optional inputs: [trial events] [verified features] [plans and prices] [activation signal] [required disclosures]

64Respectful Re-Engagement

Use when: A dormant audience needs a useful reason to return or a simple way to leave.

Open copy-ready prompt
Act as a senior CRM editor for a nonprofit education platform whose subscribers have not opened email in six months. Write a four-email re-engagement campaign: acknowledge changing interests, offer preference control, present one verified resource, and confirm continued subscription. Include subject line, preview text, body, CTA, and recommended spacing for each email; keep each below 160 words. Avoid guilt, emotional pressure, fabricated impact statistics, and assumptions about disengagement. Use only documented resource details and provide a clear unsubscribe option every time. Add a segmentation note explaining when to suppress contacts. Self-check the campaign for respectful language, data minimization, accessibility, accurate claims, reasonable cadence, and a clean exit path.

Optional inputs: [audience definition] [preference options] [verified resource] [suppression rule] [brand principles]

65Product-Led Upgrade Prompts

Use when: Verified in-product behavior reveals a relevant paid capability that can be explained without interrupting work.

Open copy-ready prompt
Act as a product-led growth copywriter for a collaborative design application. Create seven contextual upgrade prompts tied to verified behaviors such as reaching a storage limit, inviting a larger team, or attempting an administrator-only action. For each, write the trigger condition, headline, supporting copy under 45 words, primary CTA, secondary dismissal label, and user-value note. Do not use fake limits, countdowns, inflated outcomes, or dark-pattern wording; users must be able to continue or understand the limitation. Mark triggers requiring product confirmation. Finish with a self-check confirming that every prompt explains its appearance, avoids interrupting critical work, offers an accessible dismissal, and matches actual entitlements.

Optional inputs: [verified triggers] [plan entitlements] [user jobs] [CTA vocabulary] [accessibility standard]

66Webinar Email Kit

Use when: A webinar needs coordinated registration, reminder, attendance, and follow-up copy.

Open copy-ready prompt
Act as an editorial producer for a B2B cybersecurity education webinar aimed at IT managers. Write a registration email, confirmation, two reminders, a starting-soon message, and a post-event follow-up. For each, include subject line, preview text, body copy, CTA, and timing. Use an informative tone and distinguish education from product promotion. Do not invent speaker credentials, attendee counts, certifications, technical claims, or replay availability; add verification notes where needed. Keep registration and reminder emails under 140 words and the follow-up under 180. Include timezone clarity, calendar instructions, accessibility information, and preference controls. Self-check the kit for consistent event facts, truthful subject lines, clear consent, and accurate landing-page details.

Optional inputs: [event title] [verified speakers] [agenda] [timezone] [registration URL] [replay policy]

67Plain-Language Onboarding Rewrite

Use when: Accurate onboarding emails are too technical, dense, or difficult for a broad audience to use.

Open copy-ready prompt
Act as a plain-language content designer revising onboarding emails for a home-energy monitoring service. Rewrite the supplied three-email sequence so a busy homeowner can understand the next step without specialist knowledge. Preserve verified facts, safety instructions, eligibility limits, and support contacts exactly; do not introduce claims or remove essential warnings. For each email, provide a revised subject line, preview text, body under 150 words, CTA, and a note naming the main clarity change and reason. Use short paragraphs, descriptive links, inclusive language, and one action per email. Flag ambiguous source material instead of guessing. Finish with a self-check for factual fidelity, reading ease, accessibility, safety, and clear consent expectations.

Optional inputs: [source emails] [verified policies] [support details] [reading level] [required disclosures]

68Permission-Based Referral Campaign

Use when: Active customers may introduce qualified peers through a transparent referral flow.

Open copy-ready prompt
Act as a customer-advocacy copywriter for a professional language-learning subscription. Develop two referral emails plus landing-page hero and FAQ copy for active subscribers who completed a verified learning milestone. Explain the process, reward terms, eligibility, expiration, and privacy implications in plain language. Do not call recipients satisfied unless that segment is defined, and do not invent success rates, testimonials, or reward availability. Keep each email below 150 words and make declining easy. Separate claims requiring legal or program-owner approval from ready-to-publish copy. Conclude with a self-check for disclosure clarity, non-spammy wording, accurate incentives, permissioned contact sharing, and a referral experience that protects the customer’s address book.

Optional inputs: [eligibility rule] [reward terms] [privacy language] [verified milestone] [landing-page URL]

69Email-to-Landing-Page Bridge

Use when: Email traffic reaches a conversion page but the promise, proof, and next step feel disconnected.

Open copy-ready prompt
Act as a conversion-focused content strategist for an online professional certificate program. Create one launch email and one follow-up that accurately bridge to a supplied landing page. Extract its verified promise, audience, curriculum facts, price, dates, and enrollment conditions; if any are absent, write neutral copy and list missing evidence. Provide subject line, preview text, body, CTA, and an alignment table naming the promise, proof, objection addressed, and destination section. Avoid guaranteed career outcomes, fabricated accreditation, learner stories, or pressure based on unverified deadlines. Keep each email under 180 words. Self-check that claims, qualifications, pricing, and calls to action match the page exactly.

Optional inputs: [landing-page copy] [verified program facts] [enrollment dates] [approved proof] [brand voice]

70Post-Purchase Retention Sequence

Use when: Customers need helpful after-purchase guidance before any appropriate repeat-engagement invitation.

Open copy-ready prompt
Act as a retention content lead for a refillable household-cleaning product brand. Write a four-email post-purchase sequence: order reassurance, usage guidance, replenishment education, and feedback request. Include send window, subject line, preview text, body, primary CTA, and the customer question each email answers. Base timing on the verified product-use cycle rather than an arbitrary sales target. Do not claim environmental benefits, safety outcomes, review volume, or refill timing without documented support. Keep each email under 160 words, distinguish care guidance from promotion, and provide customer-service access plus unsubscribe controls. Finish with a self-check for factual accuracy, inclusive assumptions, helpfulness before selling, privacy-respecting feedback, and pausing for returns or support cases.

Optional inputs: [product instructions] [verified use cycle] [returns policy] [support contact] [substantiated claims]

8. Editing, Accessibility, and Governance

71Plain-Language Policy Editor

Use when: You need to make a public-facing policy understandable without weakening its legal or operational meaning.

Open copy-ready prompt
Act as a senior plain-language editor reviewing a customer data-retention policy for a mid-sized software company. Rewrite the supplied draft for a general adult audience, preserving every obligation, exception, deadline, and defined term that materially affects reader decisions. Use short paragraphs, descriptive headings, active voice, and concrete explanations for unavoidable technical or legal language. Do not invent compliance claims, citations, or assurances; flag any ambiguity instead of resolving it silently. Return the work in three parts: revised policy, a change log grouped by clarity issue, and a list of statements requiring subject-matter or legal confirmation. Self-check by comparing each original requirement with the revision and report any item that could not be preserved exactly.

Optional inputs: [Policy draft] [Audience literacy level] [Jurisdiction] [Approved terminology] [Reviewer]

72Accessibility Remediation Brief

Use when: You are preparing an existing article for publication and need a practical, accessibility-focused revision plan.

Open copy-ready prompt
Act as an accessibility editor for a nonprofit publishing an article about emergency preparedness. Review the supplied copy and identify barriers involving heading hierarchy, reading order, link purpose, acronyms, color-dependent instructions, tables, captions, and alternative text needs. Produce an annotated remediation brief with the original passage, the recommended replacement, the reason for the change, and the person responsible for verification. Then provide a clean revised version that remains accurate and does not exaggerate the organization’s services or preparedness outcomes. Write for screen-reader, keyboard, mobile, and low-vision audiences while retaining the author’s calm tone. Self-check the result against the stated audience needs and list any visual or interactive issue that cannot be confirmed from text alone.

Optional inputs: [Article draft] [CMS constraints] [Existing style guide] [Image inventory] [Accessibility reviewer]

73Editorial Fact-Checking Gate

Use when: A fast-moving explainer needs an editorial review that separates supported facts from claims needing evidence.

Open copy-ready prompt
Act as a fact-checking editor for a newsroom publishing an explainer on a newly announced public technology program. Examine the draft and its source packet, matching each factual, numerical, attributed, and predictive statement to the strongest available source. Create a claim ledger with the exact claim, source location, confidence status, required correction, and publication decision. Revise only what the supplied evidence supports; do not fill gaps with plausible details, fabricated citations, or assumptions about future results. Clearly label unresolved claims and distinguish reported facts from analysis. Return the ledger, a clean edited draft, and a short escalation list for the assigning editor. Self-check every number, date, quote, and causal statement against the source packet before recommending publication.

Optional inputs: [Draft explainer] [Source packet] [Publication deadline] [Citation style] [Fact-check threshold]

74Inclusive Voice and Bias Review

Use when: A brand article requires a careful review for exclusionary framing, stereotypes, or unsupported generalizations.

Open copy-ready prompt
Act as an inclusive editorial strategist reviewing a consumer health article about workplace wellbeing. Identify language that could stereotype, shame, marginalize, or make unsupported assumptions about disability, age, gender, race, income, family structure, or mental health. Suggest precise alternatives that preserve the author’s meaning and avoid turning inclusion into vague corporate language. Do not diagnose readers, promise health outcomes, or introduce claims not present in the source material. Return a review matrix with passage, concern, rationale, recommended wording, and confidence level, followed by a revised article and five questions for an appropriate subject-matter reviewer. Self-check that the revision improves dignity and specificity without erasing relevant differences or implying that one group represents a universal experience.

Optional inputs: [Article draft] [Audience description] [Brand voice] [Approved terminology] [Subject-matter reviewer]

75Content Governance Workflow

Use when: A growing content team needs a repeatable approval process for publishing regulated or high-risk material.

Open copy-ready prompt
Act as a content-governance lead designing a lightweight workflow for a financial education website. Map the lifecycle from brief and drafting through evidence review, accessibility review, compliance review, approval, publication, monitoring, and scheduled refresh. Assign decision rights without presenting the workflow as legal advice, and separate editorial quality checks from specialist sign-off. Include entry criteria, required artifacts, escalation triggers, service-level targets, version-control rules, and an audit trail that avoids storing unnecessary personal information. Return a swimlane-style text workflow, a responsibility matrix, and a one-page pre-publication checklist. Self-check for conflicting ownership, missing approval gates, and any step that could allow an unsupported claim or outdated guidance to reach readers.

Optional inputs: [Team roles] [Content types] [Risk tiers] [CMS] [Review deadlines] [Retention policy]

76Alt-Text and Caption Writing Desk

Use when: A multimedia article needs concise, useful descriptions for images, charts, and recorded dialogue.

Open copy-ready prompt
Act as an accessible multimedia editor for a museum exhibition page containing photographs, an informational chart, and a short curator video. For each asset in the supplied inventory, write purposeful alternative text or indicate when decorative treatment is appropriate; for the chart, provide a concise summary of the key relationship plus a longer text equivalent; for the video, draft accurate captions that identify meaningful non-speech audio without clutter. Do not infer identities, emotions, locations, or historical facts that the inventory does not establish. Preserve proper names exactly as verified. Return an asset table with filename, accessibility treatment, final copy, and verification note. Self-check that each description serves the surrounding page context rather than repeating a nearby visible caption.

Optional inputs: [Asset inventory] [Surrounding page copy] [Verified metadata] [Caption style] [Character limits]

77Version-Controlled Editorial Update

Use when: An established article must be updated while preserving a transparent record of what changed and why.

Open copy-ready prompt
Act as a managing editor updating a public service guide after the organization changed its intake process. Compare the current page, approved change notice, and archived version. Revise only sections affected by the notice, preserving useful unaffected guidance and clearly marking any information that needs confirmation. Return a clean replacement draft, a before-and-after change table with rationale, a list of links or dates to recheck, and an archive note suitable for the CMS. Do not invent implementation details, imply guaranteed service, or remove caveats merely to shorten the page. Use consistent terminology and accessible headings. Self-check by tracing every changed sentence to the approved notice and every retained deadline or contact method to a current source.

Optional inputs: [Current page] [Change notice] [Archived version] [CMS fields] [Source owner]

78Comment Moderation Standard

Use when: A publisher needs a fair, transparent standard for moderating reader comments on sensitive content.

Open copy-ready prompt
Act as a community editorial policy designer for a publication hosting comments on an article about immigration services. Draft a moderation standard that distinguishes disagreement, criticism, misinformation, harassment, threats, personal-data exposure, impersonation, and coordinated abuse. Define consistent actions such as approve, label, limit, remove, escalate, or refer to emergency channels, but do not promise outcomes the publication cannot deliver. Protect commenter confidentiality, avoid discriminatory enforcement, and require human review for ambiguous or high-impact cases. Return a public-facing policy, an internal decision tree in plain text, sample moderator notes, and an appeals process. Self-check each rule against proportionality, consistency, privacy, and the risk of suppressing legitimate criticism.

Optional inputs: [Platform features] [Audience rules] [Escalation contacts] [Appeal window] [Moderator team]

79Consent and Rights Clearance Checklist

Use when: A campaign team is assembling contributed stories, photographs, or testimonials and needs an editorial rights check.

Open copy-ready prompt
Act as a rights-and-editorial coordinator reviewing a proposed collection of customer stories for a nonprofit campaign. Build a clearance checklist covering identity verification, informed consent, usage scope, territories, duration, channels, edits, withdrawal handling, minors or vulnerable participants, image rights, music, quotations, translations, and records of approval. Separate facts that can be confirmed from documents that require qualified legal review, and never treat a casual message as proof of unlimited permission. Provide a tracker template with status definitions, an escalation guide, and a short participant-facing confirmation email written in plain language. Self-check that every asset has a named rights owner, documented scope, and a non-public storage location for sensitive records.

Optional inputs: [Asset list] [Consent forms] [Campaign channels] [Participant profiles] [Storage permissions]

80Editorial Risk Register and Release Decision

Use when: A major content package needs a final governance review before publication across multiple channels.

Open copy-ready prompt
Act as the editorial risk lead for a company preparing a research-backed report, press release, email, and social posts about a new sustainability initiative. Review the supplied package for unsupported environmental claims, inconsistent figures, missing disclosures, accessibility gaps, privacy concerns, rights issues, and channel-specific exaggeration. Create a risk register with issue, evidence, severity, owner, required action, and release blocker status. Then provide corrected copy for only the approved changes and a release decision memo with explicit conditions. Do not fabricate research, certifications, customer results, or testimonials, and flag claims needing expert or legal confirmation. Self-check cross-channel consistency by reconciling every statistic, qualifier, date, and named source before issuing the recommendation.

Optional inputs: [Content package] [Evidence file] [Brand claims policy] [Channel list] [Approval roster] [Launch date]

9. Creator Operations, Briefs, and Collaboration

81Editorial Brief Architect

Use when: You need to turn a rough content request into a clear brief that a writer, designer, or editor can execute without repeated clarification.

Open copy-ready prompt
Act as a senior editorial operations manager. A small education brand has requested a 1,200-word article about choosing an online course, but the request is vague and the contributors have different assumptions about audience, tone, and scope. Convert the request into a practical editorial brief that states the audience, reader problem, objective, angle, inclusions, exclusions, evidence expectations, accessibility requirements, voice, suggested structure, review milestones, and acceptance criteria. Distinguish confirmed information from decisions that still require approval, and flag any claim that needs a source rather than inventing support. Present the result as a one-page brief followed by five clarification questions. Self-check that every requirement is observable and that no unsupported promise appears.

Optional inputs: [brand voice] [audience] [deadline] [available sources] [reviewers]

82Cross-Functional Content Kickoff

Use when: A content project involves several contributors and the kickoff needs to produce decisions, ownership, and an efficient working rhythm.

Open copy-ready prompt
Act as a content program lead preparing a kickoff for a campaign involving a subject-matter expert, writer, designer, legal reviewer, and social editor. Using the project notes below, create a concise kickoff plan that aligns everyone on the audience, central message, deliverables, dependencies, decision rights, milestones, review windows, file conventions, and escalation path. Include a responsibility matrix with one accountable owner per deliverable and identify where approval is mandatory. Keep the meeting to 45 minutes by separating decisions from background discussion. Do not assign legal approval to an unqualified person, and do not treat assumptions as facts. End with a decision log template and a preflight checklist confirming that scope, owners, dates, and review criteria are explicit.

Optional inputs: [project notes] [team roles] [deliverables] [launch date] [approval policy]

83Creator Collaboration Agreement Outline

Use when: You are establishing a fair working framework for a creator partnership before production begins.

Open copy-ready prompt
Act as an experienced creator-partnerships manager, not a lawyer. Draft a plain-language outline for a collaboration agreement between a brand and an independent video creator producing three short educational videos. Cover scope, deliverables, creative control, timelines, revision limits, payment milestones, disclosure expectations, usage rights, attribution, portfolio permissions, cancellation, accessibility, brand-safety boundaries, and dispute escalation. Clearly label provisions that require negotiation and those that require review by qualified legal counsel; do not invent jurisdiction-specific legal conclusions. Include a negotiation table showing each party’s likely concern and a fair discussion point, followed by a handoff checklist for counsel. Self-check that the outline does not imply ownership, exclusivity, or perpetual rights unless expressly agreed in writing.

Optional inputs: [parties] [deliverables] [fee structure] [territories] [usage period] [jurisdiction]

84SME Interview Question Designer

Use when: A content team needs a focused interview plan that extracts useful expertise without turning the conversation into an unfocused transcript.

Open copy-ready prompt
Act as a documentary producer and editorial interviewer. Design a 30-minute interview guide for a cybersecurity researcher whose insights will inform an accurate, non-alarmist explainer for small-business owners. Organize questions into opening context, core expertise, practical examples, misconceptions, limitations, and closing takeaways. For each primary question, add one concise follow-up that invites a concrete example or qualification. Mark questions that could elicit confidential, proprietary, or personally identifying information and provide a safer alternative. Avoid leading questions and avoid presuming results. Deliver a timed run-of-show, ten primary questions, follow-ups, and a consent reminder for recording and quotation. Self-check that the guide separates facts, opinion, and illustrative examples.

Optional inputs: [topic] [audience] [interview length] [recording method] [known sensitivities]

85Editorial Review Workflow

Use when: Drafts are passing through multiple reviewers and feedback is becoming contradictory, late, or difficult to implement.

Open copy-ready prompt
Act as a content operations consultant. Design a review workflow for a monthly newsletter produced by a four-person team, with one subject expert and one compliance reviewer. Specify review stages, reviewer responsibilities, maximum feedback windows, comment etiquette, version naming, decision ownership, conflict resolution, and the definition of “ready to publish.” Separate factual review, editorial review, accessibility review, and final approval so comments are not mixed together. Include a sample review calendar and a compact feedback rubric using categories such as required correction, recommended improvement, and optional polish. Do not imply that compliance review replaces professional legal advice. End with a self-audit checklist that tests whether every comment has an owner, rationale, and disposition.

Optional inputs: [content type] [team size] [publishing cadence] [risk level] [tools]

86Repurposing Matrix Builder

Use when: One approved source asset must be adapted into several channel-specific pieces without losing accuracy or strategic coherence.

Open copy-ready prompt
Act as a senior content strategist. Convert an approved 20-minute expert webinar into a repurposing matrix for a company blog, email newsletter, LinkedIn post, Instagram carousel, short video, and internal sales note. For each derivative, define the audience, purpose, recommended length, hook, key evidence to retain, channel conventions, call to action, owner, and review requirement. Preserve the source meaning and mark any interpretation that needs subject-matter confirmation. Do not fabricate quotations, performance claims, or permissions for clips, music, images, or guest likenesses. Present the matrix as a table, then add a sequencing recommendation and a rights-and-fact-check checklist. Self-check that every derivative has a distinct job rather than being a shortened duplicate.

Optional inputs: [source asset] [channels] [audiences] [campaign goal] [approved claims] [rights constraints]

87Content Handoff Packet

Use when: A completed draft must move from a creator to production, localization, publishing, or client approval with minimal friction.

Open copy-ready prompt
Act as a post-production coordinator. Prepare a complete handoff packet for a finished 90-second product demonstration video moving from the creator to an external editor and then to the client’s publishing team. Include the asset inventory, final script, time-coded edit notes, caption and transcript requirements, aspect ratios, audio and image rights confirmations, brand references, accessibility checks, open questions, approval sequence, delivery naming convention, and rollback plan for a rejected version. Make clear which items are verified and which need confirmation; never assume that stock media or music is licensed. Format the packet with a concise summary, a production checklist, and an issue register. Self-check that another team could identify the correct source files and approval owner without asking the creator.

Optional inputs: [asset links] [brand guide] [delivery channels] [edit deadline] [license records]

88Creator Capacity and Deadline Planner

Use when: You need to allocate realistic production capacity across several content commitments without encouraging rushed or unsustainable work.

Open copy-ready prompt
Act as a creator operations planner. Build a two-week workload plan for a solo creator handling one podcast episode, four short videos, two client revisions, and routine community moderation. Use the constraints below to estimate work blocks, dependencies, review buffers, and a sustainable daily limit. Do not present estimates as guarantees; identify assumptions and show which commitments should move if new urgent work arrives. Include a calendar-style schedule, a priority rationale, a risk register, and a client-facing rescheduling note for the lowest-priority item. Protect time for backups, accessibility corrections, and rest rather than filling every available hour. Self-check that no task is scheduled before its prerequisite and that the plan contains at least one contingency block.

Optional inputs: [tasks] [available hours] [fixed dates] [energy constraints] [review turnaround]

89Content Retrospective Facilitator

Use when: A team has completed a content launch and needs to learn from the process without turning the retrospective into blame or unsupported conclusions.

Open copy-ready prompt
Act as a neutral retrospective facilitator for a content team that launched a five-part customer education series. Create a 60-minute session plan that examines intended outcomes, workflow health, audience feedback, quality issues, surprises, and repeatable practices. Use psychologically safe prompts that focus on observable events and systems rather than individual blame. Separate known evidence from interpretation, and include a method for ranking improvements by impact and effort. Deliver the agenda, facilitator script, evidence board structure, action register, and a follow-up cadence with named owners. Do not claim that audience metrics prove causation; instruct the team to record limitations and data gaps. Self-check that every action is specific, owned, time-bound, and tied to a documented observation.

Optional inputs: [project summary] [team members] [available metrics] [feedback] [known incidents]

90Editorial Decision Log and Change Control

Use when: A high-visibility content project is changing rapidly and the team needs a reliable record of what changed, why, and who approved it.

Open copy-ready prompt
Act as an editorial governance lead. Create a change-control system for a public-facing report that may receive updates from research, product, communications, and legal stakeholders. Define what counts as a material change, how requests are submitted, required evidence, risk assessment, approval levels, version identifiers, publication holds, and archival practice. Provide a ready-to-use decision-log template with fields for request, rationale, source, affected sections, owner, approver, date, status, and downstream checks. Include a short protocol for resolving conflicting edits without silently overwriting another reviewer’s work. Do not add claims, citations, testimonials, or permissions that are not documented. Self-check the system against one hypothetical urgent correction and show how the record would preserve both the old and new versions.

Optional inputs: [content type] [stakeholders] [approval thresholds] [source repository] [publication schedule]

10. Measurement, Learning, and Content Improvement

91Diagnose a Content Funnel

Use when: You need to explain where an audience loses interest across a multi-step content journey.

Open copy-ready prompt
Act as a senior content strategist reviewing a three-month campaign for a B2B software company. Using the supplied impressions, engaged sessions, scroll depth, click-through rates, conversion events, and audience segments, diagnose the funnel from first exposure through qualified inquiry. Separate observed evidence from plausible hypotheses, flag metrics that cannot be compared because of differing definitions, and avoid claiming causation without testing. Produce a concise funnel table, a narrative diagnosis, three prioritized learning questions, and a measurement plan for the next cycle. Do not invent benchmarks, results, customer quotes, or attribution certainty. Self-check that every conclusion cites an input metric and that recommendations are proportionate to the available data.

Optional inputs: [campaign period] [channel data] [conversion definitions] [known tracking limitations]

92Build a Content Performance Scorecard

Use when: You want a repeatable monthly view of whether content is attracting, engaging, and helping the right audience.

Open copy-ready prompt
Act as a content operations analyst creating a scorecard for an editorial team that publishes articles, newsletters, webinars, and case studies. Design a practical monthly framework that groups metrics by reach, meaningful engagement, audience fit, business assistance, and learning value. Define each metric in plain language, identify its data source, recommend a reporting cadence, and distinguish leading indicators from outcomes. Include a one-page scorecard layout, a short interpretation guide, and rules for handling missing or inconsistent data. Do not prescribe a single universal target or imply that high traffic equals success. Self-check that each metric has a clear decision it informs and that vanity measures are explicitly labeled.

Optional inputs: [content formats] [analytics tools] [business objectives] [reporting audience]

93Design a Content Experiment

Use when: You need to test a focused change in content or distribution without overstating the result.

Open copy-ready prompt
Act as an experimentation lead advising a nonprofit communications team. Turn the proposed change—testing two introductory sections for the same educational article—into a rigorous, ethical content experiment. State the decision objective, testable hypothesis, primary metric, secondary diagnostic metrics, audience eligibility, randomization approach, minimum run conditions, and stopping rules in language a nontechnical team can follow. Address seasonality, overlapping campaigns, accessibility, and privacy-conscious measurement. Provide a compact experiment brief and a results-template table with fields for observed differences, uncertainty, limitations, and next action. Do not fabricate a sample size, significance level, or expected lift. Self-check that the design isolates one main variable and does not encourage p-hacking.

Optional inputs: [content variant] [eligible audience] [available traffic] [privacy constraints]

94Turn Audience Feedback into Editorial Learning

Use when: You have comments, survey responses, or support questions and need to convert them into defensible content decisions.

Open copy-ready prompt
Act as a qualitative research editor analyzing anonymized reader comments and survey responses about a personal-finance education newsletter. Identify recurring needs, confusions, objections, emotional signals, and unanswered questions without treating anecdotal feedback as population-wide proof. Create a coded theme matrix with representative paraphrases, frequency notes, confidence levels, and editorial implications. Then propose five content changes, each linked to a specific theme and accompanied by a validation method. Protect privacy by excluding identifying details and do not infer sensitive traits. Return the work as an executive summary followed by the matrix and a prioritized action list. Self-check that themes are grounded in the supplied material and that low-frequency but high-risk concerns are not dismissed.

Optional inputs: [feedback corpus] [audience description] [privacy rules] [editorial priorities]

95Create a Content Refresh Decision Memo

Use when: An older article may be worth updating, consolidating, redirecting, or retiring.

Open copy-ready prompt
Act as an experienced managing editor evaluating an evergreen health-information article for possible refresh. Based only on the supplied publication history, search and referral data, engagement trends, documented subject-matter review, and content inventory, compare four options: refresh, expand, consolidate, or retire. Explain the evidence for each option, identify factual or compliance risks requiring qualified subject-matter review, and recommend a reversible next step when evidence is inconclusive. Produce a decision memo with an evidence table, risk register, proposed change list, and post-refresh measurement plan. Do not provide medical advice, invent search trends, or claim that traffic alone proves usefulness. Self-check that every recommendation distinguishes performance evidence from editorial judgment and names the owner of required review.

Optional inputs: [article URL] [performance history] [review requirements] [related content inventory]

96Compare Content Cohorts Fairly

Use when: You need to compare groups of published pieces while accounting for age, format, audience, and distribution differences.

Open copy-ready prompt
Act as a data-literate editorial director comparing two cohorts of podcast episodes: expert interviews and solo explainers. Normalize the analysis for publication age, promotion window, episode length, and available distribution channels before drawing conclusions. Use the supplied listens, completion rate, subscriber actions, referrals, and qualitative notes to identify meaningful differences and plausible explanations. Present a cohort-comparison table, caveats about comparability, three hypotheses for follow-up testing, and a recommendation about the next production mix. Do not rank formats using a single metric or claim that one format caused business outcomes without evidence. Self-check that denominators are stated, missing data is disclosed, and conclusions remain valid if small samples are unstable.

Optional inputs: [episode dataset] [cohort definitions] [promotion history] [business outcome fields]

97Develop a Content Learning Agenda

Use when: Your team is producing regularly but lacks a disciplined set of questions to guide improvement.

Open copy-ready prompt
Act as a head of content establishing a quarterly learning agenda for a consumer education brand. Convert the team’s objectives, recent performance patterns, stakeholder questions, audience feedback, and operational constraints into a ranked set of learning questions. For each question, specify why it matters, the evidence currently available, the smallest practical method to investigate it, the decision it could change, and an accountable owner. Organize the result into a quarterly table, followed by a meeting cadence and a rule for retiring answered questions. Keep the agenda realistic for a small team and avoid presenting assumptions as findings. Self-check that every question is decision-linked, measurable or researchable, and free of hidden requests for unavailable data.

Optional inputs: [quarterly goals] [team capacity] [recent findings] [stakeholder questions]

98Audit Attribution Without Overclaiming

Use when: Stakeholders are assigning content credit for outcomes that may involve several channels or touchpoints.

Open copy-ready prompt
Act as a marketing measurement advisor reviewing attribution for a thought-leadership program. Examine the supplied journey data, tagging conventions, CRM fields, assisted conversions, and attribution model description. Explain what the evidence can support, what remains uncertain, and how content may contribute without receiving the final conversion touch. Provide an attribution-audit table, a plain-language findings section, a list of tracking fixes, and a cautious reporting statement executives can reuse. Do not select a winning channel merely because it appears last, fabricate customer journeys, or claim incremental impact without an appropriate comparison. Self-check that identity resolution, consent, sampling, and cross-device gaps are documented and that each proposed fix has a measurable verification step.

Optional inputs: [journey export] [attribution model] [CRM definitions] [consent limitations]

99Optimize a Content Distribution Mix

Use when: You need to decide how an existing asset should be repackaged and distributed across channels.

Open copy-ready prompt
Act as a distribution strategist for a research organization with one evidence-based report and limited production capacity. Using the supplied audience needs, channel history, accessibility requirements, permissions, and performance data, design a four-week distribution mix across email, organic social, partner channels, and derivative formats. Recommend what to reuse, adapt, or leave unchanged, and connect each activity to a learning objective rather than promising reach. Return a calendar table, resource estimate, measurement map, and contingency rule for weak or misleading signals. Do not fabricate partner approval, audience size, citations, permissions, or projected results. Self-check that every derivative preserves the source report’s meaning, credits contributors correctly, and includes a review gate before publication.

Optional inputs: [source report] [channel data] [audience segments] [rights and accessibility constraints]

100Write a Postmortem and Improvement Plan

Use when: A content initiative has ended and the team needs an honest, reusable account of what to keep, change, or stop.

Open copy-ready prompt
Act as a calm, evidence-led content program manager conducting a postmortem for a completed product education series. Synthesize the supplied goals, production timeline, distribution record, performance results, audience feedback, stakeholder notes, and unexpected events. Separate outcomes from contributing factors, distinguish controllable from uncontrollable conditions, and identify both successful practices and process failures without assigning personal blame. Produce a structured postmortem with an outcome summary, timeline, evidence-backed lessons, unresolved questions, keep-change-stop decisions, and five actions with owners and review dates. Do not invent causes, testimonials, or numerical impact, and mark disputed interpretations clearly. Self-check that each lesson traces to evidence and that actions are specific enough to evaluate in the next cycle.

Optional inputs: [initiative brief] [timeline] [results] [feedback] [team notes] [review date]

Responsible use

Do not publish unverified claims or material without appropriate rights and consent. Review accessibility, factual accuracy, attribution, and brand fit before use.

Prompts and Agents

DevOps Engineering AI Prompts

Use 100 detailed prompts for platform design, infrastructure automation, delivery, reliability, security, governance, and operational improvement.

How to use these prompts

Replace bracketed placeholders with non-sensitive environment details, supply relevant telemetry or configuration evidence, and validate every recommendation in an appropriate review and change-control process.

1. Platform Discovery, Architecture, and Environment Design

1Cloud Platform Discovery for a Growing SaaS

Use when: You need a structured recommendation for selecting and shaping a cloud platform for a SaaS product moving beyond its first production release.

Open copy-ready prompt
Act as a principal cloud architect advising a 25-person SaaS company whose API, background workers, and PostgreSQL database currently run on one cloud provider with inconsistent environments. Assess the stated workload, team skills, compliance needs, traffic pattern, budget ceiling, and two-year growth assumptions, then compare three credible platform approaches without assuming a provider is automatically best. Recommend a target architecture and explain the trade-offs in reliability, operability, portability, cost visibility, and delivery speed. Present the result as an executive summary, assumptions table, option comparison, proposed logical architecture, phased migration sequence, and open decisions. Avoid requesting or reproducing secrets. Self-check that every recommendation traces to an explicit requirement and that uncertain claims are labeled for validation.

Optional inputs: [current architecture] [cloud providers under consideration] [monthly budget ceiling] [compliance requirements] [traffic profile] [team capabilities]

2Environment Topology for Development Through Production

Use when: You need to design clear, secure environment boundaries that support fast testing without creating production risk.

Open copy-ready prompt
Act as a DevOps platform engineer designing environments for a web application with frontend, API, worker, and managed database components. The company has development, shared test, staging, and production needs, but currently relies on manual configuration and shared credentials. Define an environment topology, ownership model, promotion path, data-handling rules, access boundaries, and parity requirements. Include which resources should be isolated, which may be ephemeral, how test data should be generated or anonymized, and how configuration should move safely between environments. Return a decision record followed by a topology table, deployment-flow diagram description, minimum controls checklist, and implementation milestones. Do not include real credentials or destructive commands. Self-check that production data never appears in lower environments and that each environment has a stated purpose and exit criterion.

Optional inputs: [application components] [team structure] [data classification] [identity provider] [release cadence] [current environment problems]

3Architecture Review for Reliability and Failure Isolation

Use when: A platform needs an architecture review focused on resilience, bottlenecks, and contained failure modes before significant growth.

Open copy-ready prompt
Act as a site reliability architect reviewing a customer-facing service that processes synchronous requests, asynchronous jobs, and scheduled billing tasks. Analyze the supplied architecture and workload assumptions for single points of failure, noisy-neighbor risks, dependency coupling, capacity limits, and recovery complexity. Propose design changes that improve failure isolation while respecting a small operations team and a fixed quarterly budget. Distinguish must-have controls from later enhancements, and state where measurement is needed before making a decision. Deliver a risk register with likelihood and impact, a revised component-and-trust-boundary description, resilience scenarios, prioritized actions, and explicit non-goals. Do not invent uptime figures or claim a recovery target has been met. Self-check each proposed control against a named failure mode and identify at least two trade-offs.

Optional inputs: [architecture diagram] [SLO targets] [dependency list] [peak load] [budget constraint] [known incidents]

4Infrastructure-as-Code Repository and Module Design

Use when: You are establishing a maintainable infrastructure-as-code structure rather than accumulating one large, fragile configuration repository.

Open copy-ready prompt
Act as an infrastructure-as-code lead creating a repository design for networking, compute, observability, identity integrations, and managed data services across multiple environments. Define directory boundaries, reusable module responsibilities, naming conventions, state isolation, versioning policy, review gates, drift detection, and rollback expectations. Assume several engineers will contribute and that no one should embed secrets in source control. Explain when a shared module is justified, how environment-specific values are supplied, and how breaking changes are introduced. Return a proposed repository tree, module contract examples in prose, ownership matrix, pull-request workflow, and a staged adoption plan from manual resources to managed code. Keep provider-specific syntax illustrative rather than executable. Self-check that state, credentials, and sensitive outputs have separate handling rules and that every module has an owner and test approach.

Optional inputs: [cloud provider] [existing repositories] [resource inventory] [team ownership] [state backend constraints] [change-approval policy]

5Kubernetes Platform Suitability Assessment

Use when: A team is considering Kubernetes and needs an evidence-based decision instead of adopting it by default.

Open copy-ready prompt
Act as an independent platform consultant assessing whether Kubernetes is appropriate for a company running eight containerized services, a small on-call rotation, and moderate but uneven traffic. Compare Kubernetes with a simpler managed container platform and a platform-as-a-service option using criteria such as operational burden, scaling needs, deployment flexibility, security controls, observability, portability, and total cost of ownership. If Kubernetes is justified, outline a deliberately small reference platform; if not, describe the conditions that would change the decision. Present a weighted evaluation matrix, assumptions, recommendation, capability gaps, pilot scope, and exit criteria. Do not provide cluster-destruction commands or imply that a platform eliminates operational responsibility. Self-check that weights are explained, unknown costs are flagged, and the recommendation remains valid if team size or traffic changes.

Optional inputs: [service count] [traffic variability] [on-call staffing] [regulatory needs] [deployment requirements] [platform budget]

6Network and Trust-Boundary Design

Use when: You need a practical network architecture that separates public access, private workloads, administrative paths, and sensitive services.

Open copy-ready prompt
Act as a cloud security architect designing network and trust boundaries for a multi-tier application with public web traffic, private APIs, internal workers, a managed database, and third-party integrations. Translate the business flows into zones, ingress and egress paths, identity-aware access, logging points, and administrative controls. Account for least privilege, private service connectivity where available, incident investigation, and the possibility that one application component is compromised. Produce a flow inventory, target-zone table, control rationale, review questions, and a migration sequence that avoids unnecessary downtime. Use vendor-neutral terminology and do not expose secrets, bypass controls, or suggest unauthorized testing. Self-check that every allowed flow has a source, destination, protocol purpose, owner, and logging expectation, and explicitly call out flows that should be denied by default.

Optional inputs: [data-flow description] [cloud provider] [third-party services] [compliance framework] [current firewall rules] [administrative access model]

7Observability Architecture for a New Platform

Use when: A newly designed platform lacks an intentional plan for logs, metrics, traces, alerts, and operational ownership.

Open copy-ready prompt
Act as an observability architect defining a useful first version of telemetry for a distributed application with an API, queue workers, database, and external payment provider. Start from user journeys and operational questions rather than collecting every possible signal. Specify golden signals, key business indicators, correlation identifiers, log fields, trace boundaries, retention tiers, alert ownership, and dashboard audiences. Recommend sampling and redaction principles that protect personal and secret data, and distinguish diagnostic telemetry from paging telemetry. Return an observability blueprint, signal-to-question mapping, alert catalog with severity criteria, dashboard outline, and an adoption plan. Do not fabricate baseline thresholds; propose how to calibrate them from measurements. Self-check that each page is actionable, each sensitive field has a handling rule, and the design supports tracing one request across synchronous and asynchronous components.

Optional inputs: [critical user journeys] [data sensitivity] [current telemetry tools] [SLOs] [on-call model] [retention constraints]

8Cost-Aware Platform Architecture

Use when: Architecture choices must balance resilience and developer productivity against a clearly constrained infrastructure budget.

Open copy-ready prompt
Act as a FinOps-aware platform architect reviewing a proposed production design for a media-processing service with bursty workloads, object storage, queues, APIs, and a relational database. Build a cost model using explicit workload drivers rather than unsupported point estimates. Identify the main cost levers, explain where autoscaling or scheduling helps, and show which savings could increase latency, operational risk, or recovery time. Compare a baseline design with two alternatives and recommend guardrails such as budgets, tagging, anomaly detection, quota policies, and ownership reviews. Deliver assumptions, formula-based cost drivers, sensitivity scenarios, architecture trade-offs, and a 30-day measurement plan. Use ranges when data is incomplete and do not present estimates as invoices. Self-check that storage, network transfer, idle capacity, observability, backups, and non-production usage are considered separately.

Optional inputs: [monthly request volume] [job duration] [storage growth] [region choices] [budget target] [performance requirements]

9Platform Migration Discovery and Sequencing

Use when: A legacy platform must be modernized incrementally while protecting service continuity and learning from unknown dependencies.

Open copy-ready prompt
Act as a modernization program architect planning discovery for a legacy application composed of a monolith, batch jobs, manually managed servers, and undocumented integrations. Create a fact-finding approach that maps dependencies, ownership, data flows, operational procedures, and hidden coupling before recommending migration waves. Separate reversible experiments from irreversible changes, define evidence needed for each architectural decision, and include rollback or pause criteria. Return a discovery-workstream plan, dependency-assessment template, candidate migration-wave matrix, risk register, and stakeholder interview questions. Avoid assuming that decomposition or cloud migration is automatically beneficial, and do not include destructive migration commands. Self-check that the sequence preserves auditability, identifies unsupported assumptions, includes business continuity considerations, and names a validation method for every high-risk dependency.

Optional inputs: [legacy inventory] [business-critical workflows] [maintenance windows] [integration list] [current hosting model] [desired end state]

10Secure Developer Platform Blueprint

Use when: You are designing an internal developer platform that standardizes delivery while preserving team autonomy and safe access.

Open copy-ready prompt
Act as an internal developer platform product manager working with security, development, and operations leads. Design a blueprint for self-service creation of repositories, environments, deployment pipelines, observability, and approved infrastructure components for ten product teams. Define the platform’s users, paved-road capabilities, extension points, policy enforcement, access model, support boundaries, service-level expectations, and success measures. Address how teams can request exceptions without bypassing review, how templates are versioned, and how platform changes are tested before broad rollout. Present the result as a product brief, capability map, reference workflow, responsibility matrix, governance model, and incremental roadmap. Do not assume self-service means unrestricted provisioning or expose implementation secrets. Self-check that each capability has a user benefit, owner, guardrail, adoption metric, and retirement or review condition.

Optional inputs: [team count] [developer pain points] [approved tools] [security policies] [platform staffing] [adoption goals]

2. Infrastructure as Code and Configuration Management

11Terraform Module Architecture Review

Use when: You need an independent review of a Terraform module before multiple teams adopt it.

Open copy-ready prompt
Act as a senior platform engineer reviewing a Terraform module that provisions a production-ready web service across development, staging, and production. Examine the module’s inputs, outputs, resource naming, dependency graph, provider constraints, state assumptions, and upgrade path. Identify coupling, unsafe defaults, hidden drift risks, and opportunities to make the interface easier to test and reuse. Do not include credentials, tokens, private endpoints, or destructive commands. Produce a review table with finding, severity, evidence, and remediation, followed by a revised module contract and a prioritized test plan. Separate confirmed defects from recommendations. Self-check that every finding points to a specific module behavior and that proposed changes preserve least privilege and environment isolation.

Optional inputs: [Terraform version], [module files], [provider versions], [environment conventions]

12Terraform State Migration Plan

Use when: You must reorganize Terraform state without accidentally recreating live infrastructure.

Open copy-ready prompt
Act as an infrastructure migration specialist planning a Terraform state refactor for a service whose resources are moving from a monolithic root configuration into smaller modules. Design a cautious, reversible sequence using state inspection, address mapping, backups, review gates, and a no-op plan after each logical change. Assume the operator has authorization, but prohibit exposing secrets or suggesting deletion, replacement, or apply steps without explicit confirmation. Present the result as a staged runbook with prerequisites, commands expressed as safe examples, expected plan signals, abort criteria, rollback actions, and post-migration verification. Include a risk register covering remote locking, concurrent runs, provider aliases, and import accuracy. Self-check that the sequence never relies on an unreviewed destructive plan.

Optional inputs: [Terraform state layout], [backend type], [resource addresses], [CI approval process]

13Pulumi Policy as Code Design

Use when: You want preventive guardrails that reject insecure or noncompliant cloud resources during deployment.

Open copy-ready prompt
Act as a cloud governance engineer designing Pulumi policy-as-code for a multi-account organization. Create a policy pack that checks encryption, network exposure, approved regions, tagging, identity permissions, and logging for common compute, storage, database, and queue resources. Keep the rules provider-aware, explain exceptions through narrowly scoped waivers, and avoid hard-coding credentials or internal identifiers. Return a policy catalog with rule name, rationale, enforcement level, affected resources, false-positive risk, and remediation guidance; then provide representative pseudocode or language-neutral examples and a rollout plan from audit mode to enforcement. Include an ownership and waiver-review process. Self-check that each rule has a measurable condition, a documented exception path, and a test case.

Optional inputs: [Pulumi language], [cloud providers], [compliance objectives], [approved regions]

14Ansible Configuration Drift Investigation

Use when: Hosts are diverging from their intended configuration and the cause is unclear.

Open copy-ready prompt
Act as an Ansible reliability engineer investigating configuration drift across a fleet of Linux application servers. Analyze the supplied inventory, group variables, roles, recent playbook runs, package changes, and representative diffs to distinguish code defects, manual changes, race conditions, and host-specific failures. Do not expose private keys, passwords, or internal hostnames. Produce a diagnostic report detailing the scope of drift, likely root causes, and immediate remediation steps, followed by a long-term strategy to improve idempotency, visibility, and automated drift detection. Separate host-level issues from systemic playbook flaws. Self-check that the analysis distinguishes between intentional changes, failed runs, and out-of-band modifications.

Optional inputs: [Ansible version], [inventory structure], [playbook output], [host diffs]

15Ansible Role Refactoring Strategy

Use when: You need to modernize a complex, monolithic Ansible role into modular, reusable components.

Open copy-ready prompt
Act as an automation architect refactoring a legacy Ansible role that configures a complex application stack. Design a strategy to decompose the role into smaller, single-purpose roles or collections, improving testability, variable scoping, and execution speed. Propose a new directory structure, variable hierarchy, handler organization, and dependency management approach. Do not include destructive commands or expose sensitive configuration data. Present the strategy as a phased migration plan, including a mapping of old tasks to new roles, a testing approach using Molecule or similar tools, and a rollback procedure. Self-check that the proposed structure reduces coupling, clarifies variable precedence, and supports independent testing of components.

Optional inputs: [Ansible version], [current role structure], [target application stack], [testing framework]

16CloudFormation Stack Set Deployment Plan

Use when: You are deploying infrastructure across multiple AWS accounts and regions using CloudFormation.

Open copy-ready prompt
Act as an AWS infrastructure engineer planning a CloudFormation StackSet deployment for a new security baseline across an organization. Design a rollout strategy that minimizes blast radius, handles account-specific parameters, manages dependencies, and provides clear visibility into deployment status. Do not expose AWS credentials, account IDs, or sensitive parameter values. Produce a deployment runbook detailing the StackSet configuration, parameter overrides, execution roles, failure tolerance, and concurrency limits. Include a troubleshooting guide for common StackSet errors and a procedure for updating the baseline. Self-check that the plan addresses cross-account permissions, region availability, and safe rollback mechanisms for failed instances.

Optional inputs: [AWS Organizations structure], [CloudFormation templates], [target regions], [security baseline requirements]

17Chef Cookbook Testing Strategy

Use when: You want to establish a robust testing pipeline for Chef cookbooks before deploying to production.

Open copy-ready prompt
Act as a configuration management specialist designing a testing strategy for a suite of Chef cookbooks. Develop a comprehensive approach covering syntax checking, linting, unit testing, and integration testing across multiple supported operating systems. Do not include actual credentials or destructive deployment commands. Present the strategy as a CI/CD pipeline design, specifying the tools (e.g., Cookstyle, ChefSpec, Test Kitchen), test environments, mock data requirements, and success criteria for each stage. Include a guide for writing effective tests and handling dependencies. Self-check that the strategy provides fast feedback for developers while ensuring reliable configuration application in production-like environments.

Optional inputs: [Chef version], [supported OS list], [cookbook dependencies], [CI/CD platform]

18Puppet Module Dependency Resolution

Use when: You are encountering conflicts or unexpected behavior due to complex Puppet module dependencies.

Open copy-ready prompt
Act as a Puppet infrastructure engineer resolving dependency conflicts within a large Puppet codebase. Analyze the provided module metadata, environment configuration, and catalog compilation errors to identify incompatible versions, circular dependencies, or missing requirements. Do not expose sensitive node data or internal network details. Produce a resolution plan detailing the conflicting modules, the root cause of the conflict, and the required version updates or code changes to restore catalog compilation. Include a strategy for managing dependencies using tools like r10k or Code Manager, and recommendations for pinning versions to prevent future issues. Self-check that the proposed changes resolve the immediate conflict without introducing new regressions.

Optional inputs: [Puppet version], [Puppetfile], [module metadata], [compilation errors]

19Infrastructure as Code Security Audit

Use when: You need to identify security vulnerabilities and compliance violations in your IaC templates.

Open copy-ready prompt
Act as a DevSecOps engineer conducting a security audit of Infrastructure as Code templates (e.g., Terraform, CloudFormation). Analyze the provided templates for misconfigurations, overly permissive access controls, unencrypted data stores, exposed ports, and hardcoded secrets. Do not execute the templates or expose actual credentials. Produce an audit report detailing each finding, its severity, the affected resource, the potential impact, and specific remediation guidance. Include recommendations for integrating automated security scanning tools (e.g., Checkov, tfsec) into the CI/CD pipeline to prevent future vulnerabilities. Self-check that the findings are actionable, prioritize high-risk issues, and align with industry security best practices.

Optional inputs: [IaC language], [cloud provider], [compliance framework], [security scanning tools]

20GitOps Workflow Design for Kubernetes

Use when: You are transitioning to a GitOps model for managing Kubernetes infrastructure and applications.

Open copy-ready prompt
Act as a Kubernetes platform engineer designing a GitOps workflow using tools like ArgoCD or Flux. Develop a comprehensive architecture that defines repository structure, branching strategy, environment promotion, secret management, and drift reconciliation. Do not expose actual cluster credentials, private keys, or sensitive configuration data. Present the design as a workflow diagram and accompanying documentation, detailing the roles and responsibilities, the automated synchronization process, the handling of manual interventions, and the disaster recovery procedure. Include a strategy for managing Helm charts, Kustomize overlays, and raw manifests. Self-check that the design enforces a single source of truth, provides clear audit trails, and ensures secure secret injection.

Optional inputs: [Kubernetes version], [GitOps tool], [secret management solution], [application architecture]

3. CI/CD Pipelines, Release Engineering, and Change Control

21Design a Promotion-Based CI/CD Pipeline

Use when: You need a governed pipeline that promotes the same artifact through development, staging, and production.

Open copy-ready prompt
Act as a senior platform engineer advising a SaaS team that currently rebuilds applications separately for each environment. Design a promotion-based CI/CD pipeline that compiles once, produces a traceable artifact, and advances it through development, staging, and production with explicit approvals. Account for pull-request validation, dependency and container scanning, automated tests, environment-specific configuration, rollback readiness, deployment identity, and audit logging. Assume GitHub Actions or an equivalent CI service, an artifact registry, and Kubernetes, but keep the design portable. Return an architecture summary, stage-by-stage workflow, control gates, responsibility matrix, and a small YAML-like pseudocode example with secrets represented symbolically. Self-check that no credential is exposed, production access is least-privilege, and the proposed rollback uses a previously verified artifact rather than a rebuild.

Optional inputs: [Repository platform] [Runtime platform] [Required approval roles] [Current test suites] [Compliance obligations]

22Establish Release Readiness Criteria

Use when: A team needs consistent evidence before deciding whether a build is safe to release.

Open copy-ready prompt
Act as a release manager for a financial-services product preparing a monthly production release. Create a practical release-readiness checklist and evidence pack that balances delivery speed with operational safety. Include build provenance, change scope, test results, security findings, database migration status, observability coverage, support communications, dependency risks, rollback or forward-fix strategy, and an explicit go/no-go decision record. Distinguish mandatory blockers from items that require documented acceptance, and assign an accountable owner to each check. Present the result as a table followed by a concise release decision template and an escalation path for unresolved risk. Self-check that every criterion is observable through named evidence, that no security threshold is invented without an agreed policy, and that the process does not imply approval by an unqualified person.

Optional inputs: [Release cadence] [Service criticality] [Existing policies] [Evidence locations] [Approvers]

23Build a Safe Database-Migration Delivery Plan

Use when: Application changes include schema updates that must be released without avoidable downtime or data loss.

Open copy-ready prompt
Act as a database reliability engineer partnering with an application team to release a backward-compatible schema change alongside a new API version. Produce a phased delivery plan covering migration design, preflight checks, backup verification, expand-and-contract sequencing, compatibility windows, traffic management, monitoring, abort criteria, and cleanup of legacy fields. Assume production data is sensitive and that deployment operators have no direct permission to inspect secrets. Provide a timeline, dependency map, command categories without destructive commands, validation queries described in plain language, and rollback versus roll-forward decision rules. Include a communication note for support staff. Self-check that the plan never recommends deleting or overwriting data before verified recovery evidence exists and that old and new application versions can coexist during rollout.

Optional inputs: [Database engine] [Table size] [Replication model] [Maintenance window] [Recovery objectives]

24Create a Progressive Delivery Strategy

Use when: You want to reduce release blast radius through canary, blue-green, or feature-flagged deployment.

Open copy-ready prompt
Act as a site reliability engineer designing progressive delivery for a high-traffic web service with measurable latency and error-rate objectives. Compare canary, blue-green, and feature-flag approaches for this situation, then recommend one with a concrete rollout sequence. Define traffic increments, observation windows, automated metrics, alert thresholds supplied as policy placeholders rather than invented guarantees, manual override authority, rollback mechanics, and post-release cleanup. Address how to prevent a feature flag from becoming permanent technical debt and how to protect users whose sessions span versions. Return a decision matrix, recommended runbook, monitoring dashboard specification, and operator checklist. Self-check that every automated action has a safe failure mode, that rollback does not require rebuilding code, and that the plan avoids exposing customer data in logs.

Optional inputs: [Service SLOs] [Traffic volume] [Flag platform] [Load-balancing method] [On-call coverage]

25Implement Change-Control Workflow for Infrastructure

Use when: Infrastructure changes need traceability, peer review, and appropriate emergency exceptions.

Open copy-ready prompt
Act as a DevOps governance lead helping a growing engineering organization standardize infrastructure change control with Git-based workflows and infrastructure as code. Define how routine, standard, high-risk, and emergency changes are proposed, reviewed, tested, approved, executed, monitored, and closed. Include separation of duties, risk classification, required evidence, maintenance-window handling, drift detection, exception expiry, and an auditable record linking tickets, commits, plans, and deployments. Assume teams use Terraform or a comparable tool and must not paste secrets into pull requests or logs. Return a policy outline, workflow diagram in Mermaid syntax, approval matrix, and example change record using fictional values. Self-check that emergency changes receive retrospective review, that approvals match risk, and that the process does not block urgent remediation while preserving accountability.

Optional inputs: [IaC tool] [Ticketing system] [Change classes] [Regulatory requirements] [Team structure]

26Design Release Notes from Deployment Evidence

Use when: Release communications must be accurate, audience-specific, and generated from verified engineering records.

Open copy-ready prompt
Act as a technical release coordinator who must prepare internal and customer-facing release notes from merged pull requests, deployment metadata, approved tickets, and test evidence. Define a repeatable process that filters out implementation noise, distinguishes shipped behavior from planned work, flags breaking changes, and records known limitations without overstating impact. Provide two sample templates: one for engineering and support teams, and one for customers, both using clearly fictional examples. Explain how an automated drafting step should cite source records for human verification before publication. Do not invent performance results, customer outcomes, security claims, or testimonials. Return the workflow, field mapping, templates, and a final-editor checklist. Self-check that every factual statement can be traced to an approved source and that confidential identifiers are removed from public notes.

Optional inputs: [Audience groups] [Source systems] [Release cadence] [Supported versions] [Publication channels]

27Plan a Feature-Flag Lifecycle and Retirement Process

Use when: Feature flags are multiplying and release control is becoming difficult to audit.

Open copy-ready prompt
Act as a platform product manager working with engineering and operations to establish a complete feature-flag lifecycle. Define naming, ownership, risk classification, default behavior, targeting rules, approval requirements, observability, expiration dates, incident overrides, and retirement steps from creation through deletion. Address differences between release flags, operational kill switches, experiments, and permission controls, including who may change each type in production. Return a policy table, lifecycle workflow, metadata schema, review cadence, and a sample retirement ticket with fictional data. Keep examples vendor-neutral and do not include real credentials or instructions for bypassing authorization. Self-check that every flag has an accountable owner and expiry, that disabled behavior is tested, and that flag changes are auditable and reversible without requiring a new deployment.

Optional inputs: [Flag provider] [Application architecture] [Risk tiers] [Review interval] [Incident process]

28Establish Artifact Provenance and Promotion Controls

Use when: You need confidence that production runs exactly what was built, tested, and approved.

Open copy-ready prompt
Act as a software supply-chain security architect designing artifact provenance controls for a multi-service platform. Specify how source commits, build jobs, dependencies, container images, signatures or attestations, test evidence, approvals, and deployment records should connect into a verifiable chain. Assume the organization has an artifact registry and wants to adopt signed promotion without exposing signing keys or other secrets in CI logs. Return a reference workflow, minimum metadata model, verification points, failure-handling rules, and an implementation sequence divided into near-term and later improvements. Avoid claiming that any particular tool guarantees security; identify assumptions that require validation against the chosen platform. Self-check that an unverified or tampered artifact cannot be promoted silently and that audit records remain useful during an incident.

Optional inputs: [Registry] [CI provider] [Signing technology] [Runtime orchestrator] [Threat model]

29Develop an Emergency-Change and Hotfix Runbook

Use when: A production incident requires a rapid change without turning the emergency path into an unreviewed shortcut.

Open copy-ready prompt
Act as an incident commander and release engineer drafting a hotfix runbook for a critical service outage. Explain how to confirm the incident, define the smallest safe change, obtain an authorized emergency approval, validate the fix in an appropriate environment, deploy with constrained blast radius, monitor outcomes, and restore normal control afterward. Include decision points for rollback, forward fix, traffic reduction, and incident escalation, plus a retrospective evidence checklist. Use command categories and pseudocode only; do not provide destructive deployment commands, bypass instructions, or secret-handling shortcuts. Return a time-ordered runbook, roles-and-communications table, stop conditions, and post-incident review template. Self-check that emergency authority is explicitly bounded, customer and forensic data are protected, and every exception receives documented follow-up.

Optional inputs: [Service tier] [On-call roles] [Deployment mechanism] [Incident severity levels] [Communication channels]

30Optimize Pipeline Feedback Without Weakening Controls

Use when: CI/CD is slow or noisy and teams need faster feedback while retaining essential safeguards.

Open copy-ready prompt
Act as a developer-experience architect reviewing a monorepo pipeline whose average pull-request feedback time is too long. Propose an evidence-driven optimization plan that separates fast deterministic checks from slower integration, security, and end-to-end stages without allowing risky changes to skip required controls. Analyze dependency caching, affected-component detection, test parallelization, flaky-test quarantine, ephemeral environments, queue management, artifact reuse, and failure ownership. Return a baseline measurement plan, target pipeline topology, prioritization matrix, rollout experiment design, and dashboard metrics with definitions. Treat targets as hypotheses to validate rather than guaranteed improvements, and preserve reproducibility and traceability. Self-check that parallel execution cannot create unsafe race conditions, that quarantined tests remain visible and time-bounded, and that production promotion still requires the organization’s approved gates.

Optional inputs: [Repository size] [Current pipeline duration] [CI runner limits] [Test categories] [Required security gates]

4. Containers, Kubernetes, and Service Operations

31Container Image Hardening Review

Use when: You need a practical security review of a container image before it enters a shared registry or production pipeline.

Open copy-ready prompt
Act as a senior container-security engineer reviewing a Python web service image that will run in a regulated production environment. Examine the supplied Dockerfile, base-image digest, package manifest, build arguments, exposed ports, user configuration, and vulnerability scan summary. Identify exploitable or high-impact weaknesses without requesting, displaying, or inferring secrets. Recommend a safer Dockerfile pattern, dependency-management approach, runtime user policy, and image-signing or provenance checks. Distinguish confirmed findings from items requiring verification, and avoid proposing destructive cleanup commands. Present the result as a severity-ranked table followed by a prioritized remediation plan and a release gate. Self-check that every recommendation is actionable, least-privilege oriented, and tied to evidence in the supplied materials.

Optional inputs: [Dockerfile] [Base image and digest] [Package manifest] [Scanner report] [Compliance requirements]

32Kubernetes Deployment Readiness Assessment

Use when: A Kubernetes workload is approaching production and its reliability, security, and operability need a structured readiness decision.

Open copy-ready prompt
Act as a platform engineer assessing whether a Kubernetes deployment for a customer-facing API is ready for production. Review the manifests, namespace policy, resource requests and limits, probes, replica count, service configuration, rollout strategy, disruption budget, configuration references, and observability signals. Flag missing evidence rather than assuming that a control exists, and do not include real credentials or commands that could delete live resources. Produce a readiness matrix with status, evidence, risk, owner, and required proof; then provide a short list of non-destructive validation tests and a go/no-go recommendation with explicit conditions. Self-check that the assessment covers failure recovery, scheduling, upgrades, least privilege, and user-visible availability.

Optional inputs: [Kubernetes manifests] [Cluster version] [SLOs] [Namespace policies] [Monitoring screenshots or queries]

33Safe Kubernetes Rollout Design

Use when: You are designing a low-risk release strategy for a service that cannot tolerate an abrupt or poorly observed deployment.

Open copy-ready prompt
Act as a Kubernetes release engineer designing a safe rollout for a versioned payments API with strict availability and latency objectives. Compare rolling, blue-green, and canary approaches for the stated cluster capacity, traffic-routing tools, database compatibility, and rollback constraints. Define preflight checks, replica and surge settings, progressive exposure stages, health signals, pause criteria, rollback ownership, and post-release verification. Keep all procedures reversible and non-destructive; never include production secrets or assume authorization to alter unrelated namespaces. Return a decision table, an ordered runbook, and a compact rollback decision tree. Self-check that the plan addresses schema compatibility, partial failure, metric lag, stuck rollouts, and how operators communicate an abort without relying on undocumented tribal knowledge.

Optional inputs: [Service architecture] [Cluster capacity] [Traffic manager] [SLO thresholds] [Database migration notes]

34Kubernetes Incident Triage Playbook

Use when: An on-call team needs a calm, evidence-driven response to elevated errors or intermittent failures in a Kubernetes service.

Open copy-ready prompt
Act as an experienced site reliability engineer responding to a Kubernetes incident in which an API shows elevated 5xx responses and intermittent pod restarts. Build a triage playbook that starts with customer impact and safe read-only evidence collection, then branches by likely causes such as application defects, resource pressure, dependency failure, networking, or recent change. Include commands only when they are non-destructive, redact-sensitive-output guidance, escalation triggers, and clear stop conditions for uncertain actions. Do not claim a root cause without corroborating evidence. Format the response as an incident timeline template, decision tree, evidence checklist, and recovery-validation section. Self-check that each step preserves evidence, avoids unauthorized access, and distinguishes mitigation from root-cause analysis.

Optional inputs: [Incident symptoms] [Recent changes] [Alert payloads] [Pod events] [Service-level objectives]

35Service Mesh Traffic Policy Review

Use when: Mesh routing, retries, timeouts, or circuit breaking may be creating hidden reliability or latency problems.

Open copy-ready prompt
Act as a service-mesh reliability specialist reviewing traffic policies for a microservices platform running on Kubernetes. Analyze the supplied virtual services, destination rules, retries, timeouts, load-balancing settings, mTLS mode, fault-injection rules, and dependency graph. Explain how each policy could affect tail latency, retry amplification, failure isolation, and incident diagnosis. Recommend conservative changes that can be tested in a non-production environment first, without exposing certificates, tokens, or private endpoints. Deliver a policy-by-policy risk table, a staged test plan, and proposed default values expressed as ranges or decision criteria rather than unsupported absolutes. Self-check that every recommendation has an observable success metric and that security behavior is not weakened merely to simplify troubleshooting.

Optional inputs: [Mesh product and version] [Traffic policies] [Dependency map] [Latency objectives] [mTLS requirements]

36Kubernetes Autoscaling Capacity Model

Use when: You need to align workload autoscaling with demand patterns, resource limits, and cluster capacity before a traffic increase.

Open copy-ready prompt
Act as a capacity-planning engineer modeling autoscaling for a Kubernetes service with predictable weekday peaks and occasional bursts. Use the supplied request rate, latency target, resource consumption, pod startup time, HPA or KEDA settings, node-pool limits, and disruption assumptions. Identify scaling signals that may lag or oscillate, estimate the evidence needed to validate thresholds, and explain interactions between pod autoscaling and cluster autoscaling. Do not present estimates as guarantees, and do not recommend bypassing admission controls or exhausting shared capacity. Return assumptions, a simple scenario table for baseline/peak/burst conditions, tuning recommendations, and a load-test acceptance checklist. Self-check that the model includes cold-start time, headroom, noisy-neighbor risk, scale-down behavior, and rollback criteria.

Optional inputs: [Request-rate history] [Pod metrics] [Startup time] [Node-pool limits] [Latency SLO]

37Stateful Workload Operations Plan

Use when: A Kubernetes-hosted database or queue requires operational safeguards beyond those used for stateless services.

Open copy-ready prompt
Act as a Kubernetes operations architect preparing an operating plan for a stateful message broker deployed with persistent volumes. Review the topology, storage class, replication model, pod-disruption budget, backup schedule, restore evidence, upgrade path, network policy, and maintenance windows. Call out assumptions that must be confirmed with the storage and application owners, and never suggest deleting volumes, force-removing replicas, or bypassing quorum safeguards. Structure the deliverable as a control checklist, routine-maintenance calendar, failure scenarios with safe first actions, and a restore-validation protocol. Self-check that durability, recoverability, capacity growth, quorum behavior, and operator access boundaries are addressed separately, with measurable evidence for each control.

Optional inputs: [Broker technology] [Topology] [Storage-class details] [Backup records] [Recovery-time objective]

38Kubernetes Observability Design

Use when: Service teams have dashboards and alerts but lack a coherent observability model tied to customer outcomes.

Open copy-ready prompt
Act as an observability architect designing a practical telemetry plan for a Kubernetes-hosted checkout service. Map customer journeys to the most useful metrics, logs, traces, and events; define service-level indicators and alert thresholds; and specify labels that support diagnosis without creating high-cardinality or privacy risks. Include workload, node, dependency, and deployment signals, while excluding sensitive payloads and credentials from examples. Return an observability map, a dashboard layout, alert rules with rationale, and a runbook-linking standard for on-call use. Self-check that every alert has an owner, an action, and a noise-control mechanism, and that the design can distinguish a user-impacting failure from an isolated pod or infrastructure anomaly.

Optional inputs: [User journeys] [Existing telemetry] [SLO targets] [Data-retention policy] [On-call ownership]

39Kubernetes Cost and Resource Governance

Use when: A platform team needs to reduce waste without undermining reliability, security, or engineering autonomy.

Open copy-ready prompt
Act as a FinOps-focused platform engineer reviewing resource governance for several Kubernetes namespaces. Analyze requests and limits, idle workloads, node utilization, autoscaler settings, storage growth, shared services, and team ownership metadata. Separate safe optimization opportunities from changes that require application testing or budget-owner approval. Do not recommend disabling security controls, starving critical workloads, or applying blanket limits without workload evidence. Produce a ranked opportunity register with estimated confidence, technical risk, responsible owner, and validation method; follow it with namespace policy recommendations and a 30-day measurement plan. Self-check that savings claims are labeled as estimates, that reliability guardrails remain explicit, and that chargeback data does not expose confidential business information.

Optional inputs: [Namespace inventory] [Utilization reports] [Cloud pricing basis] [SLO tiers] [Ownership labels]

40Production Service Operations Handbook

Use when: A team needs a concise, maintainable operating handbook for a containerized service with multiple on-call participants.

Open copy-ready prompt
Act as a principal SRE creating an operations handbook for a containerized service running across Kubernetes clusters. Consolidate the service purpose, dependencies, ownership, SLOs, deployment path, routine checks, alert interpretation, incident escalation, backup evidence, capacity signals, maintenance process, and decommissioning prerequisites. Use only supplied information; mark unknowns for verification and do not invent contacts, recovery times, or compliance claims. Keep actions reversible and exclude secrets, private keys, and destructive commands. Present an operator quick reference first, followed by detailed procedures, evidence links, and review cadence. Self-check that a newly rotated on-call engineer can identify impact, choose a safe first action, and know when qualified security or infrastructure review is required.

Optional inputs: [Service summary] [Architecture diagram] [Runbooks] [SLOs] [Escalation roster] [Backup evidence]

5. Observability, Incident Response, and Reliability

41Design a Service-Level Observability Strategy

Use when: You need a practical observability plan for a production service whose reliability goals are not yet clearly defined.

Open copy-ready prompt
Act as a senior site reliability engineer advising a team that operates a customer-facing API across multiple regions. Design an observability strategy that connects user journeys to service-level indicators, service-level objectives, error budgets, logs, metrics, traces, and actionable alerts. Assume the team has limited telemetry costs and cannot instrument every event. Distinguish symptoms from causes, recommend sampling and retention principles, and identify ownership for each signal. Present the result as a prioritized table followed by a 30-day implementation sequence. Do not include credentials, private customer data, or vendor-specific claims without stating assumptions. Self-check that every proposed alert has a measurable threshold, an owner, and a documented response action.

Optional inputs: [service architecture], [critical user journeys], [current telemetry stack], [availability target], [monthly observability budget]

42Build an Incident Triage Decision Tree

Use when: Responders need a consistent method for classifying and routing ambiguous production incidents.

Open copy-ready prompt
Act as an incident commander coaching an on-call team after several slow, inconsistent escalations. Create a decision tree for the first 30 minutes of an incident involving elevated errors, latency, saturation, or suspected data inconsistency. Include severity criteria, questions to ask, evidence to collect, safe containment options, escalation triggers, communication checkpoints, and conditions for declaring recovery. Keep actions reversible where possible and prohibit disabling security controls, exposing secrets, or making destructive changes without authorization. Format the answer as a numbered decision tree with a compact responder checklist. Self-check the tree against at least three distinct failure modes and verify that each branch ends in either a next diagnostic step, an escalation, or a formally documented resolution.

Optional inputs: [service tiers], [escalation policy], [on-call roles], [approved containment actions], [communication channels]

43Write a Blameless Post-Incident Review

Use when: A resolved outage requires a rigorous learning document rather than an attribution-focused report.

Open copy-ready prompt
Act as a blameless reliability facilitator. Using the incident facts supplied by the team, write a post-incident review that explains customer impact, detection, timeline, contributing conditions, response decisions, recovery, and follow-up work without assigning personal blame. Separate verified facts from hypotheses, identify where safeguards were absent or ineffective, and phrase corrective actions as owned, testable changes with due dates. Use headings for Executive Summary, Impact, Timeline, What Helped, What Hindered, Contributing Factors, Action Register, and Verification Plan. Redact secrets and unnecessary personal information. Self-check that every causal statement is supported by evidence or explicitly labeled uncertain, and that each action reduces a named risk rather than merely restating the incident.

Optional inputs: [incident timeline], [customer impact], [alerts], [logs or traces], [response notes], [action owners]

44Create an Alert-Quality Review and Tuning Plan

Use when: Alert fatigue, duplicate pages, or low-signal notifications are reducing the effectiveness of on-call response.

Open copy-ready prompt
Act as an observability engineer reviewing a month of alert history for a platform team. Analyze the supplied alert inventory and summarize page volume, repeat offenders, false-positive patterns, missed-signal risks, and alerts that lack actionable runbooks. Recommend tuning changes using multi-window or symptom-based logic where appropriate, but do not invent thresholds unsupported by the data. Produce a table with alert name, observed problem, proposed change, risk of suppression, owner, validation method, and rollback condition, followed by a two-week rollout plan. Preserve auditability and require approval before removing or downgrading pages. Self-check that every recommendation includes a way to detect a real incident and a measurable success criterion for reduced noise.

Optional inputs: [alert export], [incident history], [current thresholds], [runbook links], [service criticality]

45Develop a Capacity and Reliability Forecast

Use when: A growing service needs evidence-based capacity planning before traffic or workload changes create instability.

Open copy-ready prompt
Act as a reliability engineer preparing a capacity forecast for a service expected to grow over the next two quarters. Use the supplied traffic, resource, latency, and failure data to identify bottlenecks, estimate safe operating ranges, and describe uncertainty. Compare at least two scenarios, such as steady growth and a planned peak, while accounting for headroom, autoscaling lag, dependency limits, and regional imbalance. Present assumptions, calculations, risk bands, leading indicators, and recommended validation tests in a concise engineering memo. Do not claim precision the data cannot support, and do not prescribe production changes without an approval and rollback path. Self-check that every forecast traces to an input metric and that the recommended headroom is tested against a concrete failure scenario.

Optional inputs: [historical workload], [growth forecast], [resource metrics], [dependency quotas], [peak-event profile]

46Design a Disaster-Recovery Exercise

Use when: An organization must test whether its recovery objectives and procedures work under realistic failure conditions.

Open copy-ready prompt
Act as a disaster-recovery architect designing a controlled exercise for a critical application. Create a scenario involving a plausible regional, dependency, or data-availability failure, and define the exercise scope, assumptions, participants, injects, success criteria, safety boundaries, communications, decision points, and evidence to capture. Align recovery time objective and recovery point objective with the stated business requirements, clearly flagging any mismatch. Avoid destructive steps in live systems; use an isolated environment, approved simulation, or formally authorized failover. Deliver a tabletop agenda plus an evaluation scorecard and after-action template. Self-check that the exercise tests detection, decision-making, restoration, data integrity, customer communication, and return to normal operations—not just infrastructure provisioning.

Optional inputs: [critical services], [RTO], [RPO], [dependency map], [exercise window], [participant roles]

47Produce a Runbook for Safe Degradation

Use when: A service needs documented ways to preserve its most important user journeys during partial failure.

Open copy-ready prompt
Act as a production operations lead writing a runbook for graceful degradation of a customer-facing service. Identify the highest-priority capabilities, dependencies, observable symptoms, approved feature flags or traffic controls, and decision thresholds for entering and leaving degraded mode. For each procedure, include prerequisites, permissions, exact verification checks, communication requirements, rollback steps, and an escalation path. Keep instructions vendor-neutral unless the supplied environment requires otherwise, and never include secrets or unapproved destructive commands. Format the runbook for use during a stressful incident, with short numbered actions and a final verification checklist. Self-check that every degradation step protects data integrity, has an explicit stop condition, and can be reversed by the designated responder.

Optional inputs: [critical user journeys], [dependency failure modes], [feature controls], [access roles], [communication policy]

48Investigate a Distributed Tracing Anomaly

Use when: Trace data shows unexplained latency or errors crossing service boundaries.

Open copy-ready prompt
Act as a distributed-systems investigator examining a trace sample from a microservice platform. Build a disciplined analysis that separates instrumentation gaps from genuine performance problems and distinguishes queueing, retries, serialization, network delay, database time, and downstream saturation. Explain which spans, correlation fields, exemplars, and comparison cohorts should be examined next. Provide a hypothesis matrix with supporting evidence, disconfirming evidence, confidence, and a low-risk test for each hypothesis. Recommend fixes only after the diagnostic plan, and avoid exposing payloads that may contain personal or secret information. Self-check that the analysis accounts for clock skew, sampling bias, retries, and asynchronous work, and that no root cause is declared without a falsifiable test.

Optional inputs: [trace excerpts], [service map], [latency baseline], [deployment timeline], [sampling configuration]

49Establish Reliability Ownership and Review Cadence

Use when: Reliability work is falling between platform, application, security, and product teams.

Open copy-ready prompt
Act as a platform governance lead. Create a lightweight reliability operating model for a multi-team engineering organization, defining ownership for services, dependencies, SLOs, alerts, runbooks, incident roles, capacity risks, and post-incident actions. Recommend a review cadence that fits both weekly operations and quarterly planning, with clear inputs, decisions, escalation rules, and records of unresolved risk. Use a RACI-style table and a sample meeting agenda, but avoid creating bureaucracy that lacks a decision purpose. Protect confidential operational details and separate accountability for systems from blame for individuals. Self-check that every recurring responsibility has one accountable role, a measurable artifact, a backup owner, and a path for escalating risks that exceed the team’s authority.

Optional inputs: [team structure], [service catalog], [existing ceremonies], [SLO policy], [risk appetite], [escalation boundaries]

50Plan a Reliability Improvement Experiment

Use when: A team needs to test whether a targeted engineering change will improve resilience without relying on anecdotal success.

Open copy-ready prompt
Act as a senior SRE designing a controlled reliability experiment for a service with recurring timeout failures. Turn the supplied problem statement into a falsifiable hypothesis, baseline metrics, intervention, guardrail metrics, experiment population, duration, approval requirements, and stop conditions. Consider alternatives such as timeout budgeting, backpressure, dependency isolation, retry changes, or resource tuning, selecting only options compatible with the stated architecture. Define how results will be analyzed, what would count as inconclusive, and how a successful change would be rolled out gradually. Do not recommend unsafe load generation or unapproved production disruption. Present the plan as an experiment brief with an evidence table. Self-check that the design can distinguish improvement from traffic mix, deployment, or measurement changes.

Optional inputs: [failure pattern], [baseline metrics], [architecture constraints], [candidate intervention], [approval process], [rollback mechanism]

6. Security, Secrets, and Supply-Chain Assurance

51Secret-Management Migration Blueprint

Use when: A platform team needs to move application credentials from repositories, CI variables, or local files into a controlled secret-management service.

Open copy-ready prompt
Act as a senior DevSecOps architect advising a team that has discovered credentials in source control and scattered CI configuration. Design a staged migration blueprint to a managed secret store without exposing, printing, or reproducing any real secret values. Cover inventory and ownership, rotation sequencing, application integration patterns, developer experience, emergency rollback, access reviews, and audit evidence. Assume production changes require approvals and that downtime is unacceptable. Present the result as a four-phase plan with entry criteria, responsible roles, safeguards, and measurable exit criteria for each phase. Include a sample redacted secret-inventory schema and a decision table comparing inject-at-runtime, short-lived token, and sidecar approaches. Self-check by confirming that no credential appears in the answer and that every migration step has a reversible control.

Optional inputs: [secret store], [runtime platforms], [application count], [rotation requirements], [approval workflow]

52CI/CD Secret-Leak Response Runbook

Use when: A build log or pipeline artifact may have revealed a credential and responders need a safe, repeatable containment procedure.

Open copy-ready prompt
Work as an incident-response lead creating a runbook for a suspected secret leak in a CI/CD pipeline. The runbook must prioritize containment while preserving evidence, and it must never ask operators to paste the exposed value into tickets, chat, logs, or commands. Define severity triage, credential revocation and replacement, affected-resource discovery, artifact and cache handling, access-log review, stakeholder notification, and post-incident follow-up. Distinguish actions that can be automated from those requiring an authorized human decision; do not include destructive commands or presume permission to access systems. Format the deliverable as a decision tree followed by a time-ordered checklist, communications templates, and closure criteria. Self-check by testing the flow against a leaked cloud token, package-registry token, and database password, ensuring each path limits further disclosure.

Optional inputs: [CI provider], [secret types], [notification roles], [retention policy], [incident severity scale]

53Software Bill of Materials Governance Model

Use when: An engineering organization wants reliable SBOM production, ownership, storage, and use across build and release workflows.

Open copy-ready prompt
Serve as a software-supply-chain governance consultant for an organization operating containerized services and internal libraries. Create a practical SBOM operating model that defines when inventories are generated, which components and metadata are required, where artifacts are stored, who owns accuracy, how versions are linked to releases, and how consumers use the data during vulnerability response and customer assurance. Address incomplete dependency resolution, proprietary components, transitive dependencies, rebuilds, retention, and access controls. Do not invent compliance claims or imply that an SBOM proves software is secure. Deliver a RACI matrix, lifecycle workflow, minimum metadata checklist, exception process, and a sample release-readiness gate. Self-check by identifying at least three ways an SBOM can become stale or misleading and assigning a control to each.

Optional inputs: [build systems], [artifact registry], [SBOM formats], [service inventory], [customer requirements]

54Dependency Risk Triage and Upgrade Policy

Use when: Maintainers need a consistent way to prioritize vulnerable or abandoned dependencies without causing unsafe, rushed upgrades.

Open copy-ready prompt
Act as a principal application-security engineer drafting a dependency-risk triage and upgrade policy for a multi-team engineering organization. Establish severity factors beyond a scanner score, including exploitability in the deployed path, reachability, exposure, maintainer health, breaking-change risk, and compensating controls. Define response targets as governance goals rather than guarantees, and include paths for false positives, unavailable patches, end-of-life libraries, and emergency upgrades. Require testing, peer review, provenance checks, and rollback planning; prohibit copying unverified packages or bypassing authorization. Present the policy as prioritization criteria, a weighted scoring worksheet, workflow states, escalation rules, and an evidence checklist for closure. Self-check by applying the policy to three hypothetical findings: an unreachable parser flaw, an actively exploited internet-facing library, and an abandoned build-only tool.

Optional inputs: [languages], [package ecosystems], [deployment exposure], [risk appetite], [maintenance windows]

55Artifact Provenance Verification Design

Use when: A release team needs to verify that deployable artifacts came from the intended source, workflow, and build inputs.

Open copy-ready prompt
Take the role of a release-security engineer designing an artifact-provenance verification process for container images and signed packages. Explain the trust boundaries from source commit through build runner, dependency acquisition, artifact storage, promotion, and deployment, while keeping all examples fictional and free of usable credentials. Specify which attestations should be produced, what identity and policy checks should occur at each promotion stage, how to handle rebuilt or emergency artifacts, and how reviewers investigate verification failures. Do not provide instructions for bypassing signatures or weakening admission controls. Return an architecture narrative, provenance data model, promotion decision table, failure-handling playbook, and audit-evidence list. Self-check by tracing one normal release and one tampered-input scenario, confirming that the design detects the latter before production deployment.

Optional inputs: [artifact types], [build platform], [signing service], [deployment target], [promotion environments]

56Third-Party Action and Plugin Review Standard

Use when: Teams rely on external CI actions, plugins, or reusable workflows and need a defensible intake and monitoring process.

Open copy-ready prompt
Work as a CI platform security reviewer establishing an intake standard for third-party actions, plugins, and reusable workflows. Define how teams evaluate publisher identity, source transparency, version pinning, permissions, update behavior, transitive downloads, maintenance signals, and network access before approval. Include separate controls for production release pipelines, pull-request workflows, and developer convenience jobs. Require a documented exception path and periodic revalidation, but do not claim that popularity or a public repository alone establishes trust. Format the output as a review questionnaire, approval rubric, least-privilege permission matrix, monitoring schedule, and rejection examples. Self-check by reviewing three fictional candidates: a pinned action with broad token permissions, a well-maintained action that downloads code at runtime, and an internally mirrored action with unclear upstream provenance.

Optional inputs: [CI platform], [organization policies], [allowed permissions], [review cadence], [approved publishers]

57Container Base-Image Hardening and Refresh Plan

Use when: Platform engineers need to reduce risk from outdated or overly permissive container base images while preserving reliable rebuilds.

Open copy-ready prompt
Act as a container-security architect creating a base-image hardening and refresh plan for services with different runtime needs. Cover image selection, minimal packages, non-root execution, filesystem permissions, certificate handling, pinned inputs, vulnerability scanning, rebuild triggers, compatibility testing, exception management, and retirement of unsupported images. Distinguish image-layer findings from application findings and avoid promising that a clean scan means the image is risk-free. Provide a target-state standard, implementation backlog, verification matrix, ownership model, and rollback approach that does not require deploying an unverified image. Include a redacted example of a release gate and explain what evidence is retained. Self-check by evaluating a web service image, a scheduled data-processing image, and a debugging image, noting where controls or exceptions differ.

Optional inputs: [container runtime], [base-image families], [service profiles], [scan tooling], [refresh cadence]

58Build-Runner Isolation and Trust Assessment

Use when: An organization must decide how much isolation and privilege its CI runners require for untrusted contributions and sensitive releases.

Open copy-ready prompt
Serve as a cloud-infrastructure security assessor evaluating build-runner isolation for pull requests, internal branches, and production release workflows. Map assets, trust boundaries, identities, network paths, caches, workspace persistence, and artifact movement. Compare hosted ephemeral runners, isolated self-hosted runners, and dedicated release runners, emphasizing the risks of untrusted code, privileged containers, shared caches, and long-lived credentials. Recommend controls such as short-lived identities, restricted egress, clean workspaces, approval gates, and separate runner pools without giving unauthorized-access or destructive-operation instructions. Present findings in a risk register, comparison matrix, target architecture, and verification test plan. Self-check by simulating a malicious pull request, a compromised build dependency, and a legitimate emergency release, ensuring the proposed design limits blast radius in each case.

Optional inputs: [runner platforms], [network zones], [workload types], [identity provider], [release sensitivity]

59Vulnerability Disclosure and Patch Coordination Workflow

Use when: Security, engineering, and operations teams need a coordinated process for receiving, validating, prioritizing, and communicating software vulnerabilities.

Open copy-ready prompt
Act as a product-security program manager designing a vulnerability disclosure and patch-coordination workflow for an organization that ships APIs, libraries, and managed services. Define intake channels, confidentiality handling, duplicate and invalid-report triage, affected-version analysis, severity assessment, remediation ownership, testing, release coordination, customer communication, and lessons learned. Preserve reporter privacy and avoid requesting secrets, exploit payloads that exceed what is necessary for validation, or unauthorized access. Distinguish internal findings from external reports and explain when qualified legal or communications review is needed. Return a swimlane-style text workflow, intake form, decision criteria, status definitions, and communication templates for disclosure timing. Self-check by walking through a credible report, a suspected false positive, and a vulnerability with no immediate patch, confirming that each has an accountable next step.

Optional inputs: [product types], [security contact], [support model], [disclosure norms], [review stakeholders]

60Supply-Chain Assurance Audit Readiness Pack

Use when: A DevOps organization is preparing evidence for a customer review, internal audit, or security assessment of its software supply chain.

Open copy-ready prompt
Work as an audit-readiness lead assembling a defensible supply-chain assurance evidence pack for a DevOps organization. Build an evidence map covering source protection, code review, dependency governance, build isolation, secret handling, artifact signing, SBOM availability, release approvals, vulnerability response, and access recertification. For each control area, specify the claim being supported, acceptable evidence, evidence owner, collection frequency, retention location, and common limitations; never fabricate test results, certifications, or customer assurances. Separate policy documents from operating evidence and identify gaps that require qualified security, legal, or compliance review. Present the pack as an evidence register, interview agenda, gap log, and 30-day preparation sequence. Self-check by marking which evidence would be independently reproducible and by flagging any conclusion that depends on an unverified assertion.

Optional inputs: [audit scope], [customer questionnaire], [control framework], [systems in scope], [evidence-retention rules]

7. Cloud Cost, Capacity, and Performance Engineering

61FinOps Baseline and Anomaly Investigation

Use when: Cloud spending has risen unexpectedly and engineering needs an evidence-based explanation without sacrificing service reliability.

Open copy-ready prompt
Act as a senior FinOps engineer supporting a multi-account production environment. Review the supplied billing export, tagging inventory, deployment timeline, and service-level objectives to explain the latest cost increase. Separate structural growth, one-time events, pricing changes, idle resources, and likely waste; never infer a cause that the evidence cannot support. Produce an executive summary, a ranked anomaly table with amount and confidence, validation queries or dashboard checks, and reversible remediation options with owner and risk. Protect account identifiers and redact credentials or customer data. Include assumptions and a 30-day monitoring plan. Self-check that every recommendation cites an observed signal, preserves required availability, and avoids deleting resources without an approved recovery path.

Optional inputs: [billing period] [cloud provider] [account structure] [billing export] [tag policy] [SLOs]

62Kubernetes Right-Sizing Review

Use when: Kubernetes workloads are overprovisioned, throttled, or generating unpredictable compute costs.

Open copy-ready prompt
Act as a platform performance engineer reviewing Kubernetes resource requests and limits for a production cluster. Analyze the supplied manifests, historical CPU and memory utilization, throttling metrics, eviction events, autoscaler settings, and workload criticality. Recommend conservative request and limit ranges for each workload class, distinguishing steady-state services, batch jobs, and bursty APIs. Return a prioritized table, the metrics supporting each change, a staged canary plan, rollback conditions, and Prometheus queries for post-change verification. Do not propose disabling isolation, bypassing admission controls, or applying unreviewed destructive commands. Treat missing telemetry as uncertainty rather than permission to guess. Self-check that the proposal accounts for peak behavior, pod disruption budgets, node allocatable capacity, and the risk of OOM kills or latency regression.

Optional inputs: [cluster version] [namespace list] [resource manifests] [90-day metrics] [autoscaler configuration] [criticality tiers]

63Capacity Model for Seasonal Demand

Use when: A service expects a major traffic event and needs a defensible capacity plan tied to measurable assumptions.

Open copy-ready prompt
Act as a cloud capacity planner preparing a readiness model for a seasonal traffic surge. Use the supplied request history, growth forecast, concurrency data, latency targets, dependency limits, and regional architecture to calculate baseline, expected, and stress capacity. Explain the modeling method in plain language and show formulas or pseudocode for key assumptions. Deliver a scenario table, bottleneck map, scaling thresholds, quota requests, load-test design, and go/no-go criteria for operations leadership. Include uncertainty ranges and identify which assumptions require validation before launch. Do not claim that synthetic results prove production safety, and do not expose secrets or recommend unauthorized quota changes. Self-check that the model covers application, database, queue, network, and third-party constraints, plus a tested rollback and incident-escalation path.

Optional inputs: [event date] [traffic forecast] [p95 latency target] [architecture diagram] [dependency quotas] [load-test budget]

64Spot and Preemptible Workload Strategy

Use when: Batch or fault-tolerant workloads could reduce compute costs through interruptible capacity without harming deadlines.

Open copy-ready prompt
Act as a cloud infrastructure architect evaluating spot or preemptible capacity for noninteractive workloads. Review the supplied job durations, interruption tolerance, checkpoint behavior, regional availability, deadlines, data-handling requirements, and current on-demand spend. Classify workloads by suitability and design a diversified procurement strategy using explicit fallback capacity. Provide an eligibility matrix, expected operational trade-offs, checkpoint and retry requirements, observability signals, and a phased pilot with stop conditions. Keep recommendations provider-neutral unless the inputs identify a provider, and never assume savings are guaranteed. Do not move regulated or sensitive processing without confirming its approved controls. Self-check that each proposed workload can resume idempotently, tolerate interruption storms, meet its completion objective, and revert safely to approved capacity.

Optional inputs: [cloud provider] [batch inventory] [job deadlines] [interruption history] [checkpoint design] [data classification]

65Database Performance and Cost Triage

Use when: Database bills and query latency are both increasing, creating tension between optimization and reliability.

Open copy-ready prompt
Act as a senior database reliability engineer diagnosing a production database with rising cost and deteriorating performance. Examine the supplied query statistics, execution plans, storage growth, connection metrics, instance configuration, backup policy, and incident history. Distinguish workload growth from inefficient access patterns, oversized capacity, storage behavior, and resilience requirements. Return a prioritized findings table, evidence for each finding, low-risk tuning experiments, capacity alternatives, expected trade-offs, and rollback criteria. Avoid recommending deletion of data, reduction of backups, or weakening durability without explicit risk review and verified retention requirements. Use anonymized examples rather than reproducing sensitive values. Self-check that proposed changes are measurable, reversible, compatible with replication and failover, and validated against p95 latency, error rate, and recovery objectives.

Optional inputs: [database engine] [instance type] [query digest] [execution plans] [growth rate] [RPO/RTO]

66Multi-Region Performance and Egress Review

Use when: A global architecture has uneven user latency or unexpectedly high cross-region network charges.

Open copy-ready prompt
Act as a distributed-systems engineer auditing a multi-region service for latency, data transfer, and resilience trade-offs. Analyze the supplied request traces, user geography, routing rules, replication topology, egress invoices, cache behavior, and consistency requirements. Map the dominant traffic paths and identify where placement, caching, batching, compression, or routing changes could improve both performance and cost. Produce a current-state path diagram in text, a ranked opportunity table, experiment designs, failure-mode analysis, and decision criteria for any architecture change. Do not recommend violating data-residency rules or weakening consistency merely to reduce expense. State where measurements are incomplete. Self-check that every proposed optimization preserves failover behavior, tenant isolation, observability, and the service’s documented latency and recovery objectives.

Optional inputs: [regions] [trace samples] [traffic by geography] [egress report] [consistency model] [residency constraints]

67Autoscaling Policy Design

Use when: Autoscaling reacts too slowly, scales too aggressively, or produces avoidable cloud spend during variable demand.

Open copy-ready prompt
Act as a site reliability engineer redesigning autoscaling for a variable-load API. Use the supplied utilization history, request rate, queue depth, startup time, pod or instance limits, latency SLO, and recent scaling incidents. Select appropriate signals and explain why each should be leading, lagging, or protective. Return recommended policy parameters, a simulation-oriented test plan, alert thresholds, failure scenarios, and a staged rollout with rollback triggers. Avoid presenting one universal target or relying on CPU alone when workload pressure is better represented elsewhere. Do not include destructive production commands; provide declarative examples only where they are safe and clearly marked for review. Self-check that the design handles cold starts, stabilization windows, traffic spikes, dependency saturation, and scale-in protection while keeping cost changes observable.

Optional inputs: [workload type] [SLO] [startup latency] [metrics history] [current policy] [min/max capacity]

68Storage Lifecycle and Data Tiering Plan

Use when: Object or block storage is growing rapidly and retention requirements are not aligned with access patterns.

Open copy-ready prompt
Act as a cloud storage architect creating a lifecycle and tiering plan for a growing data platform. Review the supplied object age distribution, access frequency, retention schedule, legal holds, recovery objectives, replication settings, and current storage invoice. Segment data by business purpose and retrieval sensitivity, then recommend policy states, archive transitions, deletion review gates, and monitoring. Present a data-classification table, estimated cost drivers, operational risks, implementation phases, and restore-validation tests. Never assume that old data is disposable, and do not move records under legal hold or regulated retention without authorized review. Keep examples anonymized and avoid embedding credentials or bucket identifiers. Self-check that every transition has an owner, an exception path, a documented restore expectation, and an audit trail for policy changes.

Optional inputs: [storage services] [age/access export] [retention policy] [legal-hold rules] [RTO] [monthly invoice]

69Performance Test and Cost Guardrail Design

Use when: Teams need to test performance at scale while preventing runaway cloud charges or misleading conclusions.

Open copy-ready prompt
Act as a performance engineering lead designing a controlled cloud load-test program. Based on the supplied workload model, production SLOs, test environment limits, data-masking rules, dependency contracts, and budget ceiling, define test scenarios that measure throughput, latency, saturation, resilience, and cost per transaction. Provide a test matrix, instrumentation checklist, ramp schedule, safe abort thresholds, cost guardrails, result interpretation template, and criteria for repeating a run. Require synthetic or approved test data and prohibit sending uncontrolled traffic to third-party or production systems. Explain which findings are environment-specific. Self-check that the plan distinguishes warm-up effects from steady state, captures resource and billing metrics, protects secrets, and leaves the environment in a known state without destructive cleanup steps.

Optional inputs: [workload profile] [environment] [budget ceiling] [SLOs] [test data policy] [dependency limits]

70Executive Cloud Efficiency Roadmap

Use when: Leadership needs a prioritized, measurable cloud efficiency roadmap that balances savings, performance, and operational risk.

Open copy-ready prompt
Act as a principal cloud architect translating engineering evidence into a twelve-month efficiency roadmap. Synthesize the supplied spend trends, unit-cost metrics, utilization reports, reliability incidents, architecture constraints, team capacity, and business priorities. Rank initiatives such as rightsizing, commitment planning, caching, architectural refactoring, observability, and workload scheduling by evidence, effort, expected range of impact, and risk; label estimates as estimates. Deliver an executive narrative, an initiative portfolio, quarterly milestones, accountable roles, leading and lagging metrics, and governance checkpoints. Do not promise savings, recommend commitments without usage evidence, or trade away security, resilience, or compliance for a lower bill. Self-check that each initiative has a baseline, measurement method, decision owner, reversible first step, and explicit conditions for stopping or revising it.

Optional inputs: [12-month spend] [unit economics] [utilization report] [reliability targets] [team capacity] [business priorities]

8. Developer Experience, Documentation, and Automation

71Establish a Service-Documentation Standard

Use when: A growing platform team needs consistent, maintainable documentation for services owned by multiple engineering squads.

Open copy-ready prompt
Act as a senior DevOps documentation architect helping a company standardize service documentation across Kubernetes-based production workloads. Define a practical documentation standard that every service repository can adopt without excessive maintenance. Include required sections for ownership, architecture, dependencies, deployment, configuration, observability, incident response, disaster recovery, security considerations, and deprecation status. Make the standard friendly to Markdown, code review, and automated validation, while keeping secrets and sensitive operational details out of repositories. Provide a recommended template, a lightweight review checklist, and rules for deciding what belongs in a runbook versus an architecture decision record. Finish by testing the standard against a hypothetical payments API and identify three ambiguities that a maintainer should resolve.

Optional inputs: [repository platform], [service types], [compliance obligations], [documentation owner]

72Design an Internal Developer Portal Roadmap

Use when: Engineering leaders want to introduce an internal developer portal but need a staged plan tied to measurable developer outcomes.

Open copy-ready prompt
Act as a platform product manager designing a twelve-month roadmap for an internal developer portal used by software teams from repository creation through production support. Start with a concise problem statement and distinguish discoverability, self-service, golden paths, ownership visibility, and operational readiness as separate capabilities. Propose three delivery phases with likely users, dependencies, risks, and measurable success indicators for each phase. Include a sample service catalog metadata model and explain how it should avoid storing credentials or confidential incident data. Recommend a feedback loop using interviews, usage telemetry, and support-ticket analysis, but do not invent baseline metrics. Present the roadmap as a prioritization matrix followed by a short governance model and a pre-launch validation checklist.

Optional inputs: [team size], [existing tools], [portal candidate], [current developer pain points]

73Build a Safe Repository Scaffolding Workflow

Use when: A platform team needs to automate creation of new service repositories while preserving approved engineering and security defaults.

Open copy-ready prompt
Act as a DevOps automation engineer creating a repository-scaffolding workflow for new Python and TypeScript services. Specify the inputs, generated files, approval gates, and post-creation checks for a reusable template that provisions CI, dependency management, code ownership, testing, linting, container metadata, observability hooks, and deployment documentation. Require secure defaults: placeholders instead of secrets, least-privilege permissions, pinned or policy-approved actions, and no automatic production deployment. Show the workflow as a sequence diagram in Mermaid followed by an implementation-agnostic validation table. Include failure handling, idempotency expectations, versioning for template changes, and a rollback strategy for partially created repositories. Self-check the design against a developer requesting a second service from the same template.

Optional inputs: [source-control platform], [approved runtimes], [CI provider], [required controls]

74Create a Runbook Quality Review System

Use when: On-call engineers have runbooks, but their usefulness and freshness vary widely across teams.

Open copy-ready prompt
Act as a site reliability engineering lead establishing a quality review system for operational runbooks. Design a structured evaluation rubric that scores runbooks on clarity, accuracy, completeness, and safety. Include criteria for prerequisites, expected outcomes, safe rollback steps, and clear escalation paths. Propose a process for periodic reviews, integrating them into post-incident analysis and regular operational readiness checks. Provide a sample review form with actionable feedback categories and a mechanism for tracking improvements over time. Ensure the system encourages continuous improvement without creating excessive administrative overhead. Test the rubric against a hypothetical database failover runbook and identify two common failure modes.

Optional inputs: [current runbook format], [on-call rotation structure], [incident management tool], [review frequency]

75Automate Environment Provisioning for Testing

Use when: Developers need isolated, ephemeral environments for testing features before merging code.

Open copy-ready prompt
Act as a cloud infrastructure automation specialist designing a self-service environment provisioning system for feature testing. Outline a workflow that allows developers to request, use, and destroy ephemeral environments on demand. Specify the required infrastructure-as-code templates, configuration management tools, and deployment pipelines. Include safeguards to prevent resource sprawl, such as automated expiration policies, cost tracking, and resource limits. Describe how the system handles database seeding, mock external services, and secure access controls. Provide a high-level architecture diagram and a troubleshooting guide for common provisioning failures. Evaluate the design against a scenario where a developer needs to test a complex microservices interaction.

Optional inputs: [cloud provider], [infrastructure-as-code tool], [testing requirements], [budget constraints]

76Develop a Continuous Integration Optimization Strategy

Use when: CI pipelines are slow, flaky, or expensive, impacting developer productivity and deployment frequency.

Open copy-ready prompt
Act as a CI/CD performance engineer developing a strategy to optimize continuous integration pipelines. Analyze common bottlenecks such as long-running tests, inefficient dependency caching, and sequential execution. Propose actionable techniques for parallelization, test splitting, selective execution based on code changes, and effective caching strategies. Include recommendations for monitoring pipeline performance, identifying flaky tests, and establishing service level objectives for build times. Provide a prioritized implementation plan with estimated effort and impact for each optimization. Ensure the strategy balances speed with reliability and cost-effectiveness. Test the strategy against a monolithic application with a massive test suite and identify potential risks.

Optional inputs: [CI platform], [application architecture], [current build times], [primary bottlenecks]

77Implement a Developer Experience Measurement Framework

Use when: Engineering leadership needs to quantify and improve developer experience and productivity.

Open copy-ready prompt
Act as an engineering operations manager implementing a framework to measure and improve developer experience. Define a set of quantitative and qualitative metrics that capture developer satisfaction, workflow efficiency, and tool effectiveness. Include metrics such as build times, deployment frequency, code review turnaround, and survey-based feedback. Propose a method for collecting, analyzing, and visualizing this data without introducing surveillance or negative incentives. Describe how to use the insights to prioritize platform investments and track the impact of improvements over time. Provide a sample dashboard layout and a communication plan for rolling out the framework. Evaluate the framework against a scenario where developer satisfaction is low despite fast build times.

Optional inputs: [engineering team size], [current measurement tools], [primary concerns], [reporting frequency]

78Design a Self-Service Access Management System

Use when: Developers face delays in getting access to necessary tools, environments, or data for their work.

Open copy-ready prompt
Act as an identity and access management architect designing a self-service access management system for developers. Outline a workflow that allows developers to request, approve, and provision access to resources securely and efficiently. Specify the required identity providers, role-based access control models, and automated provisioning mechanisms. Include safeguards such as time-bound access, approval workflows for sensitive resources, and regular access reviews. Describe how the system integrates with existing tools and provides an audit trail for compliance purposes. Provide a high-level architecture diagram and a user guide for requesting access. Test the design against a scenario where a developer needs temporary access to production logs for debugging.

Optional inputs: [identity provider], [resource types], [compliance requirements], [approval workflows]

79Create a Standardized Local Development Environment

Use when: Onboarding new developers is slow and inconsistent due to complex local setup requirements.

Open copy-ready prompt
Act as a developer productivity engineer creating a standardized local development environment for a complex application. Design a solution that uses containerization or virtual machines to provide a consistent, reproducible environment across different operating systems. Specify the required tools, configuration files, and initialization scripts. Include instructions for setting up dependencies, databases, and mock services. Describe how the environment stays synchronized with production configurations and how developers can customize it for their specific needs. Provide a troubleshooting guide for common setup issues and a mechanism for gathering feedback on the environment. Evaluate the solution against a scenario where a developer needs to work offline.

Optional inputs: [application stack], [operating systems], [containerization tool], [onboarding challenges]

80Automate Dependency Updates and Vulnerability Remediation

Use when: Managing software dependencies and addressing security vulnerabilities is a manual, error-prone process.

Open copy-ready prompt
Act as a DevSecOps engineer automating dependency updates and vulnerability remediation across multiple repositories. Outline a workflow that automatically detects outdated dependencies, identifies known vulnerabilities, and generates pull requests with the necessary updates. Specify the required scanning tools, policy enforcement mechanisms, and integration with CI/CD pipelines. Include safeguards to prevent breaking changes, such as automated testing, staged rollouts, and manual review requirements for critical updates. Describe how the system handles false positives, prioritizes vulnerabilities based on risk, and tracks remediation progress. Provide a high-level architecture diagram and a communication plan for alerting developers to critical issues. Test the workflow against a scenario where a critical vulnerability is discovered in a widely used library.

Optional inputs: [package managers], [scanning tools], [risk tolerance], [update frequency]

9. Compliance, Risk, and Operational Governance

81Map Controls to the Delivery Pipeline

Use when: You need to translate compliance obligations into practical, auditable controls across a CI/CD lifecycle.

Open copy-ready prompt
Act as a DevOps governance architect advising a regulated software team preparing for an external audit. Map the supplied control objectives to planning, source control, build, test, artifact, release, and deployment activities without inventing requirements that are not supported by the source material. For each control, state its purpose, evidence to retain, accountable owner, implementation point, review frequency, and likely failure mode. Separate preventive, detective, and corrective controls, and flag assumptions for compliance counsel. Present the result as a traceability matrix followed by five prioritized implementation actions. Do not include secrets, credentials, or production-changing commands. Self-check that every control has evidence, ownership, and a measurable verification method.

Optional inputs: [Regulatory framework] [Control objectives] [Pipeline stages] [Audit date] [Current evidence sources]

82Conduct a Production Change-Risk Review

Use when: A consequential production change requires a disciplined risk assessment before approval.

Open copy-ready prompt
Act as a senior site reliability engineer reviewing a proposed production change for a business-critical service. Assess the change description, affected dependencies, blast radius, customer impact, observability coverage, rollback feasibility, maintenance window, and staffing plan. Classify risks as low, moderate, or high using clearly stated criteria, and distinguish known facts from assumptions and unknowns. Recommend approval conditions, additional tests, communication steps, and a rollback decision point, but do not authorize execution or provide destructive commands. Deliver a one-page change-risk brief with an executive recommendation, risk register, pre-flight checklist, and explicit go/no-go questions. Self-check that every high-risk item has an owner and mitigation, and that rollback is not treated as proven without evidence.

Optional inputs: [Change summary] [Service criticality] [Dependency map] [Monitoring links] [Rollback evidence] [Planned window]

83Design an Evidence-Ready Audit Package

Use when: You must assemble reliable operational evidence for a security, compliance, or customer assurance review.

Open copy-ready prompt
Act as a compliance-focused platform engineer preparing an evidence package for a quarterly audit. Using the supplied control list and available records, design an evidence index that identifies each control, artifact name, source system, date range, responsible owner, retention period, sensitivity classification, and reviewer. Explain how to preserve chain of custody and redact confidential data while retaining audit value. Mark missing, stale, contradictory, or unverifiable evidence instead of filling gaps. Return a structured evidence register, a remediation queue ordered by audit risk, and a short reviewer guide explaining sampling and access boundaries. Do not expose secrets or recommend bypassing access controls. Self-check that evidence is time-bounded, attributable, reproducible, and linked to a specific control assertion.

Optional inputs: [Control catalog] [Audit period] [Available reports] [Retention policy] [Evidence owners] [Redaction rules]

84Build a Third-Party Operational Risk Assessment

Use when: A cloud, SaaS, or infrastructure supplier must be evaluated before onboarding or renewal.

Open copy-ready prompt
Act as a third-party risk manager with strong DevOps experience assessing a proposed technology supplier. Review the supplied contract terms, service description, security materials, incident history, resilience claims, data flows, support model, and exit provisions. Produce a risk assessment that separates operational dependency, data protection, availability, concentration, subcontractor, and termination risks. For each risk, record evidence, severity, likelihood, business impact, proposed treatment, owner, and decision deadline. Highlight questions requiring legal, privacy, security, or procurement review rather than making unsupported conclusions. Return a decision memo, scored risk table, due-diligence question list, and renewal conditions. Self-check that each material conclusion cites a supplied source and that no certification is inferred from marketing language alone.

Optional inputs: [Supplier name] [Service scope] [Data classification] [Contract excerpts] [SLA] [Exit requirements]

85Establish an Exception and Risk-Acceptance Process

Use when: Teams need a consistent way to govern temporary deviations from engineering or security standards.

Open copy-ready prompt
Act as an operational governance lead designing an exception process for a DevOps organization. Create a policy workflow for requesting, analyzing, approving, documenting, monitoring, renewing, and closing deviations from approved standards. Define minimum fields for business justification, affected assets, compensating controls, residual risk, expiration date, accountable executive, technical owner, and evidence of review. Include escalation thresholds and a lightweight review cadence suitable for urgent but controlled exceptions. Make clear that risk acceptance is time-limited and does not remove legal or regulatory obligations. Deliver a policy outline, request-template fields, approval matrix, and dashboard metrics. Self-check that every exception has an expiry, an accountable approver, a compensating control, and a closure test.

Optional inputs: [Existing standards] [Risk appetite] [Approval roles] [Exception categories] [Review cadence] [Urgency rules]

86Prepare an Incident Reporting and Notification Decision Tree

Use when: An operational incident may trigger contractual, regulatory, customer, or internal notification duties.

Open copy-ready prompt
Act as an incident governance specialist supporting a technology company after a suspected service or security incident. Build a decision tree that helps responders determine what is known, what must be preserved, who must be consulted, and whether contractual, regulatory, insurer, customer, or executive notifications may apply. Do not make legal determinations; clearly label points requiring qualified legal, privacy, or communications review. Include decision timing, evidence requirements, approval authority, message version control, and a separate path for uncertain or evolving facts. Return a decision tree in plain text, a notification tracker, and a responder checklist. Do not include personal data, secrets, or speculative accusations. Self-check that the process avoids premature conclusions and records each decision with timestamp, owner, evidence, and reviewer.

Optional inputs: [Incident type] [Jurisdictions] [Customer contracts] [Known timeline] [Data involved] [Notification deadlines]

87Define Secure Separation-of-Duties Controls

Use when: Privileged DevOps workflows need governance that reduces fraud, error, and unauthorized change risk.

Open copy-ready prompt
Act as a platform security architect reviewing privileged access and deployment responsibilities for a multi-team engineering organization. Design a separation-of-duties model covering code approval, pipeline administration, artifact promotion, production deployment, emergency access, access review, and audit-log review. Distinguish incompatible duties, acceptable compensating controls, break-glass requirements, and low-risk exceptions. Keep the design tool-agnostic and avoid prescribing credentials, exploit paths, or commands that could enable unauthorized access. Deliver a role-to-action matrix, approval workflow, emergency-use procedure, and quarterly review checklist. State assumptions and identify decisions requiring security, HR, or legal review. Self-check that no single routine role can author, approve, deploy, and erase evidence for the same production change.

Optional inputs: [Team structure] [Existing roles] [Environment tiers] [Privileged actions] [Emergency process] [Audit capabilities]

88Create an Operational Resilience Test Program

Use when: Leadership needs evidence that critical services can withstand disruption and recover within agreed objectives.

Open copy-ready prompt
Act as a resilience engineering lead creating a twelve-month test program for critical digital services. Convert the supplied business impact analysis, recovery objectives, dependency inventory, and known failure scenarios into a prioritized schedule of tabletop exercises, restore tests, failover rehearsals, communications drills, and carefully bounded game days. For each exercise, define objective, scope, prerequisites, safety guardrails, participants, success criteria, evidence, stop conditions, and follow-up owner. Avoid instructions that would disrupt live systems without explicit authorization; favor isolated or approved test environments. Return a program calendar, scenario cards, measurement framework, and lessons-learned template. Self-check that every critical service has a recovery test, measurable objectives, a rollback or stop plan, and a documented path from findings to remediation.

Optional inputs: [Critical services] [RTO/RPO] [Dependency map] [Prior incidents] [Test environments] [Business blackout dates]

89Review Operational Policies for Drift and Contradiction

Use when: Policies, runbooks, standards, and actual platform practices may no longer agree.

Open copy-ready prompt
Act as an internal controls reviewer auditing the consistency of an engineering organization’s policies and operating practices. Compare the supplied standards, runbooks, architecture decisions, ticket samples, access reviews, and deployment records. Identify contradictions, obsolete instructions, undocumented practices, unclear ownership, control gaps, and requirements that cannot be evidenced. Classify findings by operational impact and audit exposure, and distinguish documentation defects from technical nonconformance. Return a findings register with source references, affected process, risk statement, recommended resolution, owner, priority, and validation test, followed by a policy-reconciliation sequence. Do not infer misconduct or expose sensitive content. Self-check that each finding is supported by at least one supplied artifact and that recommendations do not silently weaken an existing control.

Optional inputs: [Policies] [Runbooks] [Architecture records] [Ticket samples] [Access reviews] [Deployment evidence]

90Develop an Executive Risk Dashboard Specification

Use when: Engineering leaders need a concise, decision-oriented view of operational governance and compliance exposure.

Open copy-ready prompt
Act as a DevOps risk reporting lead designing a monthly executive dashboard for a technology portfolio. Select a balanced set of indicators covering control effectiveness, overdue remediation, change failure, incident recurrence, recovery readiness, privileged access review, supplier exposure, exception aging, and evidence completeness. For each metric, define purpose, formula, data source, owner, reporting period, target or threshold, caveat, and escalation action; do not invent baseline values. Separate leading indicators from lagging outcomes and explain how executives should interpret uncertainty. Return a dashboard specification, metric dictionary, escalation rules, and a short narrative template for material changes. Self-check that every metric is reproducible, has a named owner, avoids misleading averages, and supports a specific governance decision rather than serving as decorative reporting.

Optional inputs: [Portfolio scope] [Existing KPIs] [Data systems] [Risk appetite] [Reporting cadence] [Executive decisions]

10. Team Practices, Metrics, and Continuous Improvement

91Design a Blameless Incident Review

Use when: A production incident has ended and the team needs a fact-based review that improves systems without assigning personal blame.

Open copy-ready prompt
Act as a senior SRE facilitator helping a distributed engineering team review a 47-minute production outage. Using the incident timeline, alert history, customer-impact notes, and contributing conditions provided, draft a blameless post-incident review. Separate observed facts from interpretations, identify technical and organizational contributing factors, and distinguish immediate fixes from durable prevention. Protect personal data and do not include secrets, credentials, or unsupported claims. Structure the output as: incident summary, impact, timeline, what went well, contributing factors, lessons, prioritized action items with owners and due dates, and open questions. Before finalizing, check that every recommendation is traceable to evidence and that the language avoids hindsight bias, individual blame, and certainty where evidence is incomplete.

Optional inputs: [incident notes] [timeline] [service impact] [known contributing conditions] [review participants]

92Build a Reliability Metrics Scorecard

Use when: Leadership needs a concise, decision-oriented view of service reliability and engineering improvement.

Open copy-ready prompt
Act as a platform engineering manager creating a monthly reliability scorecard for a customer-facing API. Analyze the supplied service-level indicators, objectives, error-budget history, deployment records, and incident summaries. Recommend a balanced set of metrics covering availability, latency, error rate, change failure rate, recovery time, alert quality, and toil, but do not invent thresholds or performance results. Present the output as an executive table with metric definition, calculation method, target or stated baseline, current period, prior period, trend, interpretation, and proposed action. Add a short section explaining trade-offs and measurement limitations. Self-check that each metric has an unambiguous numerator and denominator, uses a consistent time window, and cannot encourage gaming or unsafe delivery behavior.

Optional inputs: [service name] [SLOs] [metric exports] [reporting period] [audience] [known data limitations]

93Create a Sustainable On-Call Practice

Use when: An on-call rotation is producing fatigue, uneven coverage, or slow response without a clear improvement plan.

Open copy-ready prompt
Act as an SRE operations coach reviewing an on-call program for a team that supports services across three time zones. Based on the provided pages, escalation history, alert inventory, staffing constraints, and support expectations, propose a sustainable operating model. Address rotation design, primary and secondary coverage, handoffs, escalation rules, alert ownership, compensatory time, training, and periodic health checks. Do not recommend bypassing employment policies, weakening emergency response, or exposing personal contact information. Deliver a practical memo with current-state risks, design principles, a sample weekly model, a 30/60/90-day improvement sequence, and measures of success. Check that the proposal includes a human escalation path, limits uninterrupted burden, distinguishes urgent from non-urgent work, and identifies items requiring HR or legal review.

Optional inputs: [team time zones] [rotation schedule] [alert volume] [escalation policy] [staffing limits] [employment requirements]

94Run a DevOps Retrospective That Produces Action

Use when: A team’s retrospectives feel repetitive and need a focused method that converts observations into accountable experiments.

Open copy-ready prompt
Act as an experienced engineering facilitator preparing a 60-minute retrospective after a difficult release cycle. Use the supplied delivery data, incident themes, team observations, and previous retrospective actions to design a psychologically safe session. Choose a format appropriate to the evidence, such as start/stop/continue, four Ls, or an experiment review, and explain why. Provide a timed agenda, inclusive prompts, grouping instructions, decision rules, and a closing commitment process. Ensure the session focuses on systems and workflows rather than personalities, and avoid treating incomplete data as proof. Output a facilitator guide plus an action register with hypothesis, smallest test, owner, deadline, expected signal, and follow-up date. Verify that actions are specific, feasible within team control, and limited to a manageable number.

Optional inputs: [release summary] [delivery metrics] [prior actions] [team size] [meeting duration] [sensitive topics]

95Reduce Engineering Toil Safely

Use when: Repetitive operational work is consuming engineering capacity and the team needs a measured reduction plan.

Open copy-ready prompt
Act as a DevOps productivity lead analyzing a backlog of recurring operational tasks. Rank the supplied toil items using frequency, duration, interruption cost, failure risk, customer impact, and automation feasibility. Recommend a small portfolio of improvements, including documentation, alert tuning, self-service workflows, and automation where appropriate. Do not propose scripts that delete data, rotate production credentials, alter access controls, or deploy changes without authorization and rollback safeguards. Return a scoring table, prioritization rationale, a staged implementation plan, dependencies, and verification steps. Include a lightweight measurement method for hours returned, error reduction, and user experience. Before finalizing, check that estimates are labeled as estimates, high-risk automation has approval gates and dry runs, and every automation has an owner and rollback path.

Optional inputs: [toil inventory] [task frequency] [time per occurrence] [risk ratings] [systems involved] [approval constraints]

96Establish a Learning and Skills Cadence

Use when: A DevOps team wants continuous learning tied to real operational needs rather than ad hoc training.

Open copy-ready prompt
Act as a staff platform engineer designing a six-month learning cadence for a mixed-experience DevOps team. Use the supplied technology roadmap, incident patterns, skill self-assessments, service ownership model, and available learning time. Propose a sequence of peer sessions, guided labs, pairing opportunities, game days, documentation exercises, and post-activity reflections. Keep activities safe: use sandbox or synthetic environments, never request real secrets, and require approval for production experiments. Structure the output as a capability matrix, monthly schedule, session briefs, evidence-of-learning options, and review checkpoints. Avoid equating certifications with competence or ranking individuals publicly. Self-check that the plan offers multiple participation modes, maps each activity to a genuine operational need, protects workload boundaries, and includes a way to revise topics from feedback.

Optional inputs: [roadmap] [skill matrix] [incident themes] [learning hours] [tooling constraints] [team preferences]

97Improve Change Management Through Experiments

Use when: Deployment outcomes are inconsistent and the team needs a controlled improvement experiment instead of broad process change.

Open copy-ready prompt
Act as a change-management specialist partnering with an engineering team whose release success rate has declined. Design a four-week, reversible experiment using the supplied deployment records, review practices, rollback data, and team feedback. Select one or two interventions, such as smaller batch sizes, automated preflight checks, progressive delivery, or clearer ownership, and define a baseline, comparison method, guardrail metrics, and stopping conditions. Do not imply causation from a small sample or recommend bypassing required approvals. Present the output as an experiment charter with hypothesis, scope, participants, procedure, measures, risks, decision thresholds, and retrospective questions. Check that the intervention is feasible without exposing secrets or weakening security, that success is not defined solely by speed, and that inconclusive results remain an acceptable outcome.

Optional inputs: [deployment history] [baseline metrics] [candidate interventions] [approval process] [experiment window] [guardrails]

98Create an Internal Developer Feedback Loop

Use when: Platform teams need a reliable way to learn whether internal tools actually help the engineers who use them.

Open copy-ready prompt
Act as a developer-experience researcher assessing an internal CI/CD platform. Create a feedback system using the supplied user groups, workflow pain points, support tickets, adoption data, and roadmap constraints. Combine lightweight surveys, structured interviews, office hours, product analytics, and issue-trend review; explain what each method can and cannot establish. Produce a research plan, question bank, sampling approach, privacy safeguards, signal taxonomy, reporting template, and prioritization rubric. Do not collect unnecessary personal information or present anecdotal comments as representative findings. Include a feedback-to-action loop with response owners, communication checkpoints, and a method for closing the loop with participants. Self-check that questions are neutral, accessibility and time zones are considered, sensitive feedback has a safe channel, and every proposed signal has a defined decision use.

Optional inputs: [platform scope] [user personas] [support data] [adoption metrics] [privacy requirements] [roadmap horizon]

99Develop a DevOps Maturity Baseline

Use when: An organization needs an honest baseline for improvement without turning maturity scoring into a punitive ranking exercise.

Open copy-ready prompt
Act as an independent DevOps transformation assessor evaluating several product teams. Build a maturity baseline across delivery flow, reliability, observability, security integration, infrastructure management, team ownership, and continuous improvement. Use only the supplied evidence, such as process documents, deployment data, service reviews, and interviews; label gaps where evidence is missing. Define observable criteria for each level and provide confidence ratings rather than pretending the assessment is exact. Return an assessment rubric, evidence map, team-by-team findings, cross-team patterns, and a short set of sequenced improvement themes. Avoid naming or ranking individuals, and do not recommend changes that conflict with governance or regulatory obligations. Check that criteria reward learning and safe outcomes, distinguish capability from tooling ownership, and include a reassessment date and evidence needed to confirm progress.

Optional inputs: [team evidence] [delivery data] [governance rules] [maturity dimensions] [assessment audience] [reassessment date]

100Write a Continuous Improvement Operating Model

Use when: An engineering organization wants a repeatable system for turning operational evidence into prioritized, measurable improvements.

Open copy-ready prompt
Act as a principal DevOps architect drafting a continuous improvement operating model for a 12-team engineering organization. Synthesize the supplied strategic goals, reliability objectives, delivery metrics, incident themes, platform backlog, and governance requirements. Define how teams discover opportunities, assess impact and effort, prioritize work, fund improvement capacity, run experiments, document decisions, and review outcomes. Make ownership explicit at team, platform, and leadership levels, while preserving local context and avoiding metric-driven shortcuts. Present the output as operating principles, decision rights, recurring forums, intake and prioritization flow, improvement portfolio template, quarterly review agenda, and a concise implementation sequence. Self-check that the model includes feedback from engineers and users, protects security and privacy, distinguishes evidence from assumptions, and specifies how unsuccessful experiments create learning rather than blame.

Optional inputs: [strategic goals] [SLOs] [metrics] [incident themes] [governance requirements] [available improvement capacity]

Responsible use

Never expose credentials, bypass controls, or apply destructive changes without authorization, testing, rollback planning, and accountable human review.

Prompts and Agents

Marketing Campaigns AI Prompts

This 100-prompt library supports campaign strategy, audience insight, creative development, channel activation, measurement, and responsible marketing operations.

How to use these prompts

Replace bracketed placeholders with substantiated campaign context, customer insight, and approved brand materials. Review outputs for accuracy, permissions, accessibility, and compliance before launch.

1. Market Research, Positioning, and Campaign Strategy

1Audience Evidence Brief

Use when: You need a research-led audience recommendation before committing launch budget.

Open copy-ready prompt
Act as a senior marketing researcher advising a company launching a refillable home-cleaning product. Using the supplied interviews, survey summary, customer-service themes, and category evidence, identify the most credible audience segments and the problem each is trying to solve. Separate observations from hypotheses, flag weak or biased samples, and do not invent market sizes or consumer claims. Recommend one primary and one secondary segment, then explain the positioning implication for each. Present an evidence table, concise recommendation, three research gaps, and five follow-up interview questions. Self-check that every conclusion traces to a supplied source or is explicitly labeled a hypothesis.

Optional inputs: [product description] [research notes] [survey summary] [category evidence] [geography] [launch date]

2Competitive Positioning Map

Use when: You need to distinguish a brand from competitors without unsupported superiority claims.

Open copy-ready prompt
Act as a brand strategist reviewing a crowded online language-learning market. Compare the supplied competitor pages, pricing snapshots, reviews, and brand messages across learning method, audience, proof, price, and emotional promise. Build a two-axis positioning map using dimensions defensible from the materials, and explain why those axes matter. Identify three possible differentiation spaces, labeling each as an opportunity to test rather than an established advantage. Recommend a positioning statement containing a target audience, category frame, distinctive benefit, and reason to believe. Deliver a competitor matrix, map rationale, positioning options, and validation tests. Self-check that no competitor is misrepresented and every factual comparison is tied to supplied evidence.

Optional inputs: [brand materials] [competitor excerpts] [review export] [price range] [target market]

3Seasonal Campaign Strategy

Use when: You need a coordinated plan for a time-bound promotion across several channels.

Open copy-ready prompt
Act as an integrated marketing director planning a six-week campaign for a regional outdoor retailer’s winter equipment service. Translate the supplied business objective, customer insights, inventory limits, budget, and channel capabilities into a practical strategy. Define the campaign job, primary audience, desired behavior, central message, supporting proof, offer mechanics, and tone. Assign roles to paid social, search, email, retail signage, partnerships, and organic content without assuming every channel is necessary. Provide a weekly activation calendar, budget ranges, creative deliverables, dependencies, and measurement plan. Include rules for pausing weak tactics or reallocating spend without promising performance. Self-check that timing, inventory, and leading-versus-final metrics are consistent.

Optional inputs: [objective] [audience insights] [budget] [inventory limits] [channels] [campaign dates]

4Jobs-to-Be-Done Interview Synthesis

Use when: You have customer interviews and need to turn them into actionable campaign direction.

Open copy-ready prompt
Act as a customer-insight lead synthesizing interviews with small-business owners who recently adopted accounting software. From the supplied transcripts, extract functional, emotional, and social jobs; triggers; anxieties; alternatives; and switching barriers. Preserve uncertainty, do not fabricate quotes, and do not infer motivations beyond what participants stated. Group findings into no more than four jobs-to-be-done, rank them by evidence strength and strategic relevance, and connect each to a possible campaign angle. Return a synthesis table, cross-interview themes, contradictions, verbatim quote excerpts, and five follow-up questions. Self-check every theme against multiple interviews where possible and mark any shortened quote for editorial review.

Optional inputs: [transcripts] [customer segment] [product context] [business objective] [privacy rules]

5Message House and Proof Framework

Use when: You need a consistent message hierarchy for a campaign team producing many assets.

Open copy-ready prompt
Act as a messaging strategist for a nonprofit expanding access to career coaching. Build a message house from the supplied mission, audience research, program description, outcomes data, approved language, and stakeholder concerns. Define one core promise, three supporting pillars, audience-specific adaptations for participants, donors, and employer partners, and proof points usable only when documented. For each message, state what the audience should understand, feel, and do. Flag wording requiring substantiation, permission, or specialist review; do not invent stories, statistics, endorsements, or outcomes. Present message architecture, sample headlines, a proof register, and concise “do not say” guidance. Self-check that every proof point traces to an approved source.

Optional inputs: [mission] [audience research] [approved outcomes] [brand voice] [stakeholder concerns] [review requirements]

6Campaign Experiment Backlog

Use when: You need to turn uncertain campaign assumptions into a ranked testing program.

Open copy-ready prompt
Act as a growth marketing lead for a subscription meal-planning app with limited experimentation capacity. Review the supplied funnel data, customer feedback, existing creative, analytics definitions, and operational constraints. Create a backlog of twelve experiments across audience, message, offer, landing page, channel, and retention touchpoints. For each, state the hypothesis, rationale, primary metric, guardrail, audience, minimum viable setup, expected learning, risks, and stopping condition. Prioritize the backlog using a transparent model based on impact, confidence, effort, and reversibility; do not predict exact lifts without evidence. Deliver a ranked table and four-week sequence. Self-check each experiment changes one interpretable variable and uses consistently defined metrics.

Optional inputs: [funnel data] [customer feedback] [analytics definitions] [creative inventory] [team capacity] [constraints]

7Reputation-Sensitive Risk Review

Use when: You need to identify ethical, reputational, or trust risks before release.

Open copy-ready prompt
Act as an ethics-aware communications reviewer assessing a public-health awareness campaign about sleep habits. Examine the supplied creative concepts, audience research, claims, imagery notes, media plan, and stakeholder feedback. Identify risks involving fear appeals, stigma, vulnerable audiences, implied medical advice, privacy, accessibility, cultural interpretation, and unsupported outcomes. Rate each risk by likelihood and impact, explain it plainly, and propose a safer revision that preserves the campaign objective. Separate issues requiring clinical, legal, accessibility, or community review from those marketing can resolve. Return a risk register, recommended edits, approval checklist, and escalation questions. Self-check that the review does not diagnose individuals, exaggerate evidence, or treat assumptions about communities as facts.

Optional inputs: [creative concepts] [claims list] [audience research] [media plan] [accessibility standards] [review owners]

8Budget Allocation Scenario Planner

Use when: You need to compare campaign investment scenarios without presenting uncertain forecasts as facts.

Open copy-ready prompt
Act as a marketing finance partner evaluating three budget scenarios for a direct-to-consumer skincare campaign. Use the supplied historical performance ranges, channel costs, production estimates, margin assumptions, tracking limitations, and business constraints. Build conservative, base, and expansion scenarios with spend by channel, production costs, testing reserve, measurement needs, and decision gates. Show which assumptions drive each range and identify where the data is too weak for reliable estimation. Recommend a planning scenario only as a conditional operating choice, not a promised return. Present an assumptions register, scenario table, sensitivity notes, and weekly governance cadence. Self-check all arithmetic, keep currencies and periods consistent, and distinguish observed results from planning assumptions.

Optional inputs: [budget ceiling] [historical ranges] [channel costs] [margin assumptions] [production estimates] [tracking limits]

9Full-Funnel Campaign Architecture

Use when: You need one coherent strategy connecting awareness, consideration, conversion, and retention.

Open copy-ready prompt
Act as a full-funnel campaign architect for a B2B software company selling workflow automation to operations teams. Based on the supplied audience research, buying process, sales-cycle length, content inventory, CRM stages, media options, and revenue objective, connect audience states to messages, proof, assets, channels, calls to action, and handoffs. Define evidence for movement between stages while acknowledging attribution limits. Include nurture logic, sales enablement, retargeting boundaries, measurement definitions, and review cadence. Do not imply every touchpoint causes revenue or fabricate case-study results. Present a funnel table, journey narrative, asset map, operating rules, and diagnostic questions. Self-check each stage has a distinct job and an observable next action.

Optional inputs: [audience research] [buying process] [sales-cycle length] [content inventory] [CRM stages] [media options] [revenue objective]

10Executive Campaign Decision Memo

Use when: You need to turn scattered planning materials into a concise leadership approval brief.

Open copy-ready prompt
Act as a strategic marketing director preparing an executive decision memo for a campaign to increase qualified registrations for a professional conference. Synthesize the supplied business goal, audience evidence, event details, approved budget, historical results, creative direction, operational dependencies, and open questions. State the recommended choice, alternatives considered, assumptions, required decisions, measurable objectives, channel roles, timeline, and principal risks. Keep language decisive but qualified: do not guarantee attendance, fabricate proof, or convert projections into facts. Use a one-page-style structure with an executive recommendation, decision table, campaign architecture, measurement plan, and approval checklist. Self-check every requested decision has an owner and deadline and every objective can be evaluated without unsupported causal claims.

Optional inputs: [business goal] [audience evidence] [event details] [budget] [historical results] [dependencies] [decision deadline]

2. Audience Segmentation, Personas, and Journey Design

11Evidence-Led Segment Prioritization

Use when: You need to decide which customer groups deserve attention before allocating campaign budget.

Open copy-ready prompt
Act as a senior marketing strategist helping a B2B software company prioritize audiences for a six-month demand-generation campaign. Using only the supplied research, separate observable evidence from assumptions, identify four meaningful segments, and rank them against problem urgency, reachable market size, fit with the product, buying friction, and ethical risk. Explain the scoring logic without inventing market statistics or customer claims. Present a weighted comparison table, a short rationale for each rank, and one testable campaign hypothesis per segment. Recommend which segment to address first and what evidence could overturn that choice. Before finalizing, check that every conclusion traces to an input or is clearly labeled as a hypothesis, and flag any missing data that requires primary research.

Optional inputs: [Research excerpts] [Product capabilities] [Geographic scope] [Budget] [Known exclusions]

12Jobs-to-Be-Done Persona Briefs

Use when: You want practical personas that explain customer motivations rather than relying on demographic stereotypes.

Open copy-ready prompt
Act as a customer-insight researcher translating interview notes into three jobs-to-be-done personas for a consumer service launch. For each persona, describe the situation that triggers action, desired progress, functional and emotional jobs, current workaround, barriers, decision criteria, trusted information sources, and language they may naturally use. Do not infer sensitive traits, assign identities from weak signals, or treat one interview as representative of a population. Keep quotations verbatim only when provided; otherwise label wording as synthesized. Deliver three one-page briefs followed by a cross-persona comparison and two research questions that would reduce uncertainty. Self-check for unsupported generalizations, duplicated personas, and claims that could encourage exclusionary targeting. Note where qualified privacy or research review is warranted before collection or activation.

Optional inputs: [Interview notes] [Survey findings] [Service description] [Market] [Privacy boundaries]

13Lifecycle Journey Blueprint

Use when: You need to map how an audience moves from first awareness through retention and advocacy.

Open copy-ready prompt
Act as a lifecycle marketing architect designing a journey blueprint for a subscription service. Map the customer experience across awareness, consideration, conversion, onboarding, adoption, renewal, and re-engagement. For every stage, specify the customer question, likely intent signal, useful message, preferred channel, desired next action, friction point, owner, and measurable indicator. Distinguish what is known from what must be validated, and avoid assuming that every customer follows a linear path. Format the answer as a stage-by-stage table, then add two non-linear paths and a prioritized experiment backlog. Include accessibility, consent, frequency, and opt-out considerations for each channel. Before finalizing, verify that every message serves a documented customer need and that no fabricated performance benchmark appears.

Optional inputs: [Product lifecycle] [Existing channels] [Analytics events] [Retention problem] [Consent rules]

14Persona-to-Message Matrix

Use when: You have several audience needs and need disciplined message variation without creating inconsistent brand claims.

Open copy-ready prompt
Act as an integrated campaign planner for a nonprofit education initiative with three approved audience profiles. Build a persona-to-message matrix that connects each profile’s stated need, barrier, proof requirement, core promise, supporting explanation, call to action, and objection response. Use only claims supported by the supplied source material; if proof is absent, recommend a verification step rather than inventing a statistic, outcome, testimonial, or endorsement. Provide a concise message hierarchy for the campaign, followed by sample headlines and body-copy directions for email, paid social, and landing pages. Keep the language respectful and avoid manipulative urgency or targeting based on sensitive personal information. Self-check every message for audience relevance, factual support, accessibility, and consistency with the nonprofit’s stated mission.

Optional inputs: [Approved audience profiles] [Brand voice] [Evidence library] [Channels] [Call-to-action options]

15Account-Based Buying Committee Map

Use when: You are planning account-based marketing and must address multiple roles involved in a complex B2B purchase.

Open copy-ready prompt
Act as an account-based marketing lead mapping the buying committee for a mid-market procurement of cybersecurity software. Based on the supplied account research, identify plausible economic, technical, operational, security, and user stakeholders, but do not present unverified names, reporting lines, or personal details as facts. For each role, state likely business concern, success measure, information need, influence on the decision, possible objection, appropriate content asset, and respectful engagement route. Separate evidence, working assumptions, and research questions in the output. Deliver a committee map, an influence-versus-interest matrix, and a coordinated sequence of role-specific touchpoints. Do not advise bypassing procurement, security review, or consent requirements. Before finalizing, check that recommendations do not exploit vulnerabilities, expose confidential data, or confuse a hypothesized role with a confirmed contact.

Optional inputs: [Account research] [Product documentation] [Buying process] [Known stakeholders] [Compliance constraints]

16Inclusive Audience Design Review

Use when: You want to improve segmentation and journey design while reducing exclusion, stereotyping, or accessibility barriers.

Open copy-ready prompt
Act as an inclusive marketing and accessibility reviewer assessing a proposed campaign audience model. Examine the segments, persona descriptions, channel choices, data fields, creative assumptions, and journey rules provided. Identify language that stereotypes people, proxies for sensitive characteristics, excludes users with disabilities, or creates unequal access to information or offers. Recommend neutral revisions, inclusive research questions, accessible channel alternatives, and governance checkpoints without claiming legal compliance. Preserve legitimate business objectives while explaining trade-offs in plain language. Return an issues table with severity, evidence, risk, recommended change, and owner, followed by a revised segmentation principle and a pre-launch checklist. Self-check that each recommendation is grounded in the supplied material, avoids demographic essentialism, respects consent and data minimization, and is flagged for qualified legal, privacy, or accessibility review where appropriate.

Optional inputs: [Campaign brief] [Segment definitions] [Creative samples] [Accessibility standard] [Data policy]

17Journey Experiment Portfolio

Use when: You have a mapped journey but need a rigorous set of experiments to learn where messaging or experience breaks down.

Open copy-ready prompt
Act as a growth experimentation lead creating a learning portfolio for an ecommerce journey from product discovery to repeat purchase. Select six experiments across different stages, ensuring they address distinct uncertainties rather than repeating minor copy tests. For each, define the customer problem, hypothesis, audience rule, control and variant, primary metric, guardrail metric, minimum decision rule, estimated effort, and evidence required before launch. Avoid promising uplift, manipulating vulnerable customers, or using dark patterns. Recommend how to interpret inconclusive results and when to stop an experiment. Present the portfolio in a prioritization table, then describe instrumentation and a review cadence. Before finalizing, check that metrics reflect customer value as well as conversion, audiences are consent-appropriate, and each experiment can be explained without overstating causality.

Optional inputs: [Journey map] [Analytics taxonomy] [Traffic limits] [Business goal] [Experiment constraints]

18Cross-Channel Journey Orchestration

Use when: You need coordinated channel roles and timing rather than disconnected audience-specific tactics.

Open copy-ready prompt
Act as a marketing operations architect designing a cross-channel journey for a professional training program. Coordinate organic content, email, search, paid media, webinars, sales follow-up, and post-enrollment communications across the audience’s decision process. For each stage, assign one primary channel objective, supporting channels, trigger or schedule, message theme, handoff rule, suppression rule, and measurement signal. Keep frequency reasonable, require consent where applicable, and include accessible alternatives for key information. Do not fabricate channel benchmarks or imply that tracking is harmless; identify data dependencies and privacy review points. Return a swimlane-style table in Markdown, followed by a concise operating procedure and failure scenarios. Self-check for duplicated messages, contradictory calls to action, missing opt-outs, and handoffs that rely on unverified behavioral assumptions.

Optional inputs: [Audience segments] [Channel inventory] [Consent model] [CRM fields] [Enrollment milestones]

19New-Market Persona Adaptation

Use when: You are entering a new region and need to adapt personas without copying assumptions from the current market.

Open copy-ready prompt
Act as an international marketing researcher adapting an existing set of product personas for entry into a new country. Compare the source-market persona evidence with the supplied local research, and identify which needs, barriers, decision processes, channel preferences, and trust signals can be carried forward, which require adaptation, and which must be discarded. Do not generalize a country’s population, translate idioms mechanically, or assert cultural facts without evidence. Recommend a localized research plan, including sample questions and stakeholder checks, before campaign activation. Format the response as a carry-forward/adapt/validate matrix, three provisional persona summaries, and a localization risk register. Self-check for unsupported cultural claims, inaccessible language, privacy concerns, and unverified regulatory or platform assumptions; route legal or local-specialist questions to qualified reviewers.

Optional inputs: [Existing personas] [Local research] [Product context] [Language requirements] [Market-entry timeline]

20Segment Governance and Activation Rules

Use when: You need clear, auditable rules for turning audience definitions into responsible campaign audiences.

Open copy-ready prompt
Act as a CRM governance specialist reviewing segmentation and activation rules for a multi-channel retail campaign. Convert the supplied business definitions into plain-language audience rules with inclusion criteria, exclusion criteria, refresh cadence, data owner, consent requirement, suppression logic, and expiration condition. Make every rule operationally testable, and distinguish behavioral signals from sensitive or prohibited attributes. Explain how to handle missing, stale, conflicting, or user-corrected data without making punitive assumptions. Provide a rule catalogue, a sample QA test set using fictional records, and an approval workflow involving marketing, privacy, and data stakeholders. Do not expose real personal data or recommend covert tracking. Before finalizing, test edge cases such as opt-outs, shared devices, minors, and deleted accounts, and state when qualified privacy or legal review is required.

Optional inputs: [Data dictionary] [CRM schema] [Consent policy] [Audience goals] [Refresh schedule]

3. Messaging, Copy, and Creative Direction

21Positioning-to-Message House

Use when: You need to turn a differentiated product position into a consistent campaign messaging system.

Open copy-ready prompt
Act as a senior brand strategist helping a [company type] launch [product or service] for [audience]. Using the supplied positioning notes, build a message house with one clear core promise, three supporting pillars, proof points that are explicitly labeled as provided or still needed, and audience-specific reasons to believe. Then write a 25-word elevator pitch, a homepage hero with subhead, and three campaign themes. Keep the language concrete, confident, and understandable to a non-specialist; avoid unsupported superlatives, invented statistics, and claims that imply guaranteed outcomes. Flag any wording that requires substantiation or regulatory review. Present the result in labeled sections and finish with a consistency check showing how each asset reinforces the core promise.

Optional inputs: [Positioning notes] [Audience segments] [Approved proof points] [Brand voice] [Compliance constraints]

22Multi-Channel Campaign Copy Suite

Use when: A single campaign idea must be adapted across channels without losing its strategic meaning.

Open copy-ready prompt
Act as an integrated marketing copywriter for a [campaign objective] aimed at [target audience]. Develop one central campaign idea and adapt it into a paid-social primary text and headline, a search ad pair, an email subject and preview line, a landing-page hero, and a short out-of-home line. Respect each channel’s practical space and attention limits without reducing the message to vague slogans. Use only the benefits, offers, and evidence supplied; do not invent testimonials, performance results, endorsements, or permissions. Explain the strategic role of each asset in one sentence. Return a compact channel-by-channel table, followed by two alternative tonal routes. Self-check for message continuity, audience relevance, readability, and claims that need approval.

Optional inputs: [Campaign brief] [Channel limits] [Offer details] [Approved claims] [Tone boundaries]

23Customer-Insight Message Translation

Use when: Research language is accurate but too abstract to become persuasive customer-facing copy.

Open copy-ready prompt
Act as a customer-insight strategist translating [interview excerpts, survey findings, or support themes] into messaging for [product or service]. Identify the underlying customer tension, desired progress, emotional barrier, and practical decision criterion, distinguishing direct evidence from your interpretation. Create a message map with “what customers say,” “what it may mean,” and “copy opportunity,” then write five headline directions and one 100-word value proposition. Preserve the customer’s meaning without quoting confidential or identifying details, and never turn a small or ambiguous sample into a universal claim. Mark assumptions that require validation. Finish with a short evidence audit that lists which phrases are source-grounded, which are interpretive, and what question a marketer should test next.

Optional inputs: [Anonymized research] [Audience context] [Product capability] [Known objections] [Research limitations]

24Ethical Persuasion and Claims Review

Use when: You need conversion-oriented copy checked for accuracy, fairness, and avoidable pressure.

Open copy-ready prompt
Act as an ethical conversion copy editor reviewing the draft campaign for [brand] and [audience]. Assess the provided copy for clarity, substantiation, omission of material conditions, manipulative urgency, ambiguous pricing, accessibility, and potential audience harm. Rewrite the highest-impact passages in a persuasive but transparent voice, retaining only claims supported by the supplied evidence. Separate factual claims, opinions, and calls to action, and identify every sentence that needs legal, regulatory, or subject-matter review rather than making a legal conclusion yourself. Deliver a risk-ranked table with original wording, concern, recommended revision, and evidence needed, followed by a clean revised version. Self-check that the rewrite does not add fabricated results, scarcity, testimonials, citations, or guarantees.

Optional inputs: [Draft copy] [Evidence pack] [Offer terms] [Audience vulnerabilities] [Brand voice]

25Creative Brief for a Campaign Concept

Use when: A marketing team has a business goal but needs a focused brief that creative partners can execute.

Open copy-ready prompt
Act as an agency creative director turning the following business challenge into an actionable campaign brief: [challenge]. Define the audience’s situation, single-minded objective, human insight, desired behavior, proposition, supporting reasons to believe, tone, mandatory elements, exclusions, and success signals. Propose three distinct creative territories, each with a name, central thought, sample headline, visual world, and likely execution across [channels]. Keep concepts strategically differentiated rather than offering three cosmetic variations. Do not imply results, social proof, rights, or product capabilities that are not documented. Make assumptions visible and list questions for the client before production begins. End with a feasibility and integrity check covering evidence, accessibility, brand fit, permissions, and measurement readiness.

Optional inputs: [Business challenge] [Audience research] [Product facts] [Media channels] [Brand guidelines]

26Objection-Handling Copy Framework

Use when: Prospects hesitate for predictable reasons and the campaign needs helpful answers rather than defensive persuasion.

Open copy-ready prompt
Act as a lifecycle marketing strategist for [offering], addressing prospects who hesitate because of [objections]. Classify each objection as a practical, emotional, trust, timing, or fit concern, then write a response that acknowledges the concern, supplies only verified information, and gives the reader a low-pressure next step. Produce a five-row objection matrix, plus an FAQ answer, sales-enablement paragraph, and retargeting ad for the three most important objections. Avoid shaming, false reassurance, fear tactics, and promises of certain outcomes. Where the supplied materials do not answer an objection, say so and recommend the precise evidence or policy the team should obtain. Self-check that every response respects informed choice and does not conceal material limitations or eligibility conditions.

Optional inputs: [Objection list] [Product documentation] [Policies and terms] [Audience stage] [Approved next steps]

27Brand Voice Calibration Guide

Use when: Multiple writers produce uneven copy and the brand needs practical voice rules with examples.

Open copy-ready prompt
Act as a brand voice editor for [brand], whose audience is [audience] and whose communication goal is [goal]. Based on the supplied approved examples and off-brand examples, describe four voice dimensions using plain-language “do” and “avoid” guidance. Create a vocabulary bank, sentence-pattern guidance, punctuation preferences, and examples showing how to express [key benefit], [objection], and [call to action] in the approved voice. Preserve inclusivity and readability; do not imitate a living writer or copy distinctive protected language from another brand. Clearly separate observed patterns from new recommendations. Return the guide as a one-page editorial standard followed by a before-and-after sample. Self-check each recommendation against the source examples, audience comprehension, accessibility, and the requirement to avoid unsupported claims.

Optional inputs: [Approved copy] [Off-brand copy] [Audience profile] [Brand personality] [Words to avoid]

28Launch Narrative and Content Sequence

Use when: A product launch needs a coherent story across awareness, consideration, conversion, and follow-up.

Open copy-ready prompt
Act as a launch communications lead planning a [duration]-week campaign for [product or service]. Build a narrative arc that moves [audience] from the problem context to informed action without exaggerating novelty or certainty. Provide a week-by-week sequence with the strategic job, key message, content asset, channel, call to action, and dependency for each stage. Include one launch announcement, one educational piece, one proof-oriented asset using only supplied evidence, and one post-launch learning message. Distinguish public claims from internal hypotheses and identify where customer consent, licensing, or approval is required. Use a table for the sequence and write the announcement in 120 words. Self-check for repetition, premature selling, unsupported proof, accessibility, and a clear measurement question at every stage.

Optional inputs: [Launch date] [Product facts] [Audience journey] [Evidence] [Channels] [Approval workflow]

29Visual Concept and Copy Pairing

Use when: Copy and design are being developed separately and the campaign needs stronger concept-level alignment.

Open copy-ready prompt
Act as a senior art director and copywriter collaborating on a campaign for [brand] promoting [offer] to [audience]. Create four genuinely different visual-copy concepts. For each, specify the human truth, visual premise, composition or motion idea, headline, supporting copy, call to action, accessibility description, and why the pairing should work in [primary channel]. Keep the visual ideas producible within [budget, format, and asset constraints], and use no recognizable people, logos, music, locations, or third-party materials unless permission is confirmed. Do not depict outcomes the product cannot substantiate. Present the concepts in a comparison table, then recommend one with stated trade-offs. Self-check for legibility, inclusive representation, rights requirements, platform fit, and consistency with the approved brand voice.

Optional inputs: [Offer] [Brand guidelines] [Format specifications] [Production constraints] [Approved assets] [Accessibility standard]

30Experiment Plan for Messaging Variants

Use when: You want to test meaningful message differences and learn without overstating what performance data proves.

Open copy-ready prompt
Act as a growth marketing analyst designing a messaging experiment for [campaign objective]. Formulate three testable hypotheses based on the supplied audience evidence, then create two materially different copy variants for each hypothesis across [chosen channel]. Define the primary metric, guardrail metrics, audience split, minimum run conditions, and decision rule without inventing a required sample size or promising a lift. Explain which variable changes and which elements remain controlled. Include a pre-launch review checklist for claims, tracking, consent, accessibility, and brand safety. Return a structured experiment brief, six copy variants, and a post-test interpretation template that distinguishes observed results from causal conclusions. Self-check that no variant uses fabricated proof, dark patterns, discriminatory targeting, or a conclusion unsupported by the eventual data.

Optional inputs: [Campaign objective] [Audience evidence] [Channel] [Baseline metrics] [Tracking setup] [Brand constraints]

4. Content, Social, and Community Campaigns

31Editorial Campaign Architecture

Use when: You need to turn a business objective into a coordinated, multi-channel editorial campaign without losing a clear audience promise.

Open copy-ready prompt
Act as a senior content strategist planning a six-week campaign for [brand] aimed at [audience] and supporting [business objective]. Build an editorial architecture that connects one central idea to a website feature, email sequence, LinkedIn posts, short-form video, and community discussion. Define the audience insight, campaign promise, proof points that may be used only if verified, channel roles, publishing cadence, and conversion path. Separate awareness, consideration, and action content, and identify where a human reviewer must approve claims or permissions. Present the result as a campaign map followed by a weekly schedule and measurement plan. Before finalizing, check that every asset has a distinct job, no unsupported claim appears, and the call to action matches the audience’s stage.

Optional inputs: [brand voice], [campaign dates], [channels], [approved evidence], [conversion event]

32Social Launch Narrative

Use when: You are launching a product, report, event, or feature and need a coherent social story rather than disconnected announcements.

Open copy-ready prompt
Serve as a social campaign director preparing the launch of [offer] for [audience] across [platforms]. Create a narrative in four phases: intrigue, explanation, proof, and invitation. For each phase, propose the message angle, recommended format, draft post concept, visual direction, audience question, and transition to the next phase. Adapt the language to each platform’s norms without promising reach, performance, or outcomes that have not been established. Mark any statistic, customer statement, image, music, or trademark that requires source verification or permission. Deliver a concise campaign sequence plus a platform adaptation table. Run a final quality check for repetition, accessibility, transparent sponsorship or partnership disclosure, and a credible response path for public questions.

Optional inputs: [launch date], [product facts], [platform list], [approved assets], [disclosure requirements]

33Community Engagement Program

Use when: You want to build sustained participation and trust in a community instead of optimizing for one-off impressions.

Open copy-ready prompt
Act as a community growth lead designing a ninety-day engagement program for [community] centered on [shared interest or goal]. Recommend recurring rituals, member prompts, expert sessions, peer recognition, onboarding moments, and feedback loops that encourage meaningful participation without manufacturing urgency or inflating results. Define the intended behavior for each activity, moderation owner, accessibility consideration, and signal that indicates healthy engagement. Include sample weekly prompts and a lightweight escalation protocol for harassment, misinformation, privacy concerns, or conflicts of interest. Structure the output as a ninety-day calendar, operating principles, and measurement dashboard. Self-check the plan for inclusivity, realistic staffing, consent around member content, and metrics that reward contribution quality rather than vanity counts.

Optional inputs: [community size], [platform], [moderation capacity], [member needs], [baseline metrics]

34User-Generated Content Brief

Use when: You need an ethical, practical brief for collecting and publishing customer or community content.

Open copy-ready prompt
Work as an integrated campaign manager creating a user-generated content brief for [brand] and [campaign theme]. Define the story prompt, eligible submissions, participation steps, selection criteria, incentive terms, rights and permissions process, privacy safeguards, accessibility requirements, and publication workflow. Write sample invitation copy for email and social, but do not imply that participation guarantees exposure, compensation, or a favorable outcome beyond the stated terms. Explain how to handle minors, sensitive personal information, unsolicited testimonials, and content that makes unverifiable product claims. Present the deliverable as a creator brief, a consent checklist, and a review rubric. Before delivery, confirm that every use of participant content requires appropriate permission and that the campaign can operate fairly without pressuring customers to participate.

Optional inputs: [campaign dates], [incentive], [usage channels], [brand guidelines], [jurisdictional considerations]

35Influencer Partnership Activation

Use when: You are planning a creator collaboration that needs clear deliverables, disclosure, and editorial credibility.

Open copy-ready prompt
Act as an influencer marketing strategist developing an activation plan between [brand] and [creator profile] for [campaign objective]. Recommend a partnership concept that fits the creator’s actual audience and voice, then specify deliverables, briefing points, review boundaries, disclosure language, usage rights, timeline, compensation variables, and success measures. Preserve the creator’s independence: require honest experience, prohibit scripted testimonials that are not substantiated, and distinguish paid promotion from editorial coverage. Include a negotiation-ready scope table and a risk register covering conflicts, exclusivity, brand safety, accessibility, and audience questions. Check the plan against the approved product facts and ensure no claim, audience statistic, or performance expectation is presented as verified unless it has supporting documentation.

Optional inputs: [creator profile], [offer], [budget range], [deliverables], [approved claims], [territories]

36Social Listening Response Playbook

Use when: Your team needs consistent, human responses to praise, criticism, questions, and emerging issues online.

Open copy-ready prompt
Serve as a social care and reputation manager creating a response playbook for [brand] across [channels]. Classify likely conversations into praise, product questions, service complaints, misinformation, accessibility needs, privacy-sensitive requests, and potential crises. For each category, provide a response objective, a warm example reply, escalation trigger, owner, and expected response window without promising service levels the team cannot meet. Include guidance for moving personal matters into a private, secure channel and for correcting inaccurate information without humiliating the speaker. Do not invent facts, refunds, policies, or resolutions; use clearly marked placeholders only for details the organization must supply. Deliver a decision tree and response matrix. Self-check for empathy, confidentiality, non-defensiveness, and a clear handoff to authorized staff.

Optional inputs: [brand voice], [support policy], [escalation contacts], [channel norms], [verified FAQs]

37Content Repurposing System

Use when: You have one authoritative asset and need a useful, non-repetitive distribution system across owned and social channels.

Open copy-ready prompt
Act as a content operations editor repurposing [source asset] for [audience] across [channels] over [time period]. First identify the source’s strongest verified ideas, practical examples, limitations, and unanswered questions. Then design a repurposing matrix covering a newsletter, blog update, carousel, short video, discussion prompt, quote graphic, and sales-enablement excerpt. Give each derivative a new audience benefit, recommended length, accessibility treatment, link or next step, and approval requirement. Preserve context and attribution; never convert a qualified statement into an absolute claim or present an excerpt as independent research. Format the output as an editorial matrix plus production sequence. Before finishing, compare every derivative with the source for accuracy, duplication, permissions, and a consistent but channel-appropriate call to action.

Optional inputs: [source text or URL], [audience segments], [channels], [editorial dates], [approved links]

38Social Campaign Experiment Design

Use when: You want to learn which messages or formats resonate while avoiding misleading conclusions from weak campaign tests.

Open copy-ready prompt
Work as a marketing measurement specialist designing a social content experiment for [campaign objective]. Compare [two or three message or format variants] while keeping the audience definition, budget, timing, and conversion event as consistent as practical. State the hypothesis, primary metric, guardrail metrics, sample or duration rationale, tracking method, and decision rule before results are known. Distinguish exploratory observations from reliable conclusions, and note factors such as platform delivery, seasonality, audience overlap, and privacy-safe measurement limits. Provide a test card, implementation checklist, and post-test interpretation template. Do not fabricate a benchmark or guarantee an outcome. Self-check that only one major variable changes at a time, success is not defined by a vanity metric alone, and any claim about performance will be supported by recorded campaign data.

Optional inputs: [platform], [audience], [variants], [budget], [conversion event], [test dates]

39Advocacy and Cause Campaign

Use when: You are communicating around a social issue and need participation without exploiting emotion or overstating impact.

Open copy-ready prompt
Act as an ethical cause-marketing strategist developing a campaign for [organization] around [issue] and [desired public action]. Build a message framework that explains the issue accurately, centers affected communities, identifies a specific action, and states what the organization can and cannot change. Recommend content for social, email, community partners, and a landing page, including plain-language calls to action and space for credible sources. Flag consent, compensation, safeguarding, image rights, political or charitable compliance, and partnership disclosures that require specialist review. Avoid trauma-based imagery, savior narratives, invented urgency, and unsupported impact claims. Present the output as a campaign brief, sample message set, and risk checklist. Check that affected people are not portrayed as props and that every factual assertion has an approved source.

Optional inputs: [issue area], [organization], [partners], [verified sources], [target action], [reviewers]

40Campaign Retrospective and Learning Report

Use when: A content or community campaign has ended and you need an honest record of results, lessons, and next decisions.

Open copy-ready prompt
Serve as a marketing analytics lead writing a retrospective for [campaign] using the supplied campaign records, creative files, feedback, and approved data. Summarize the objective, audience, activities, spend or effort, delivery, outcomes, qualitative signals, operational issues, and material deviations from plan. Separate observed facts, calculated metrics, interpretations, and hypotheses; cite the source record for each important number. Explain what should be repeated, revised, paused, or investigated, while avoiding causal claims that the evidence cannot support. Include an executive summary, channel scorecard, audience feedback themes, experiment findings, accessibility and moderation notes, and prioritized learning agenda. Before finalizing, reconcile totals, identify missing data, remove personal information, and ensure testimonials or claims are not treated as representative without appropriate context.

Optional inputs: [campaign brief], [analytics export], [creative links], [survey results], [moderation log], [budget record]

5. Email, CRM, and Lifecycle Campaigns

41Welcome Series Architect

Use when: You need an onboarding sequence that turns new subscribers into informed, engaged customers.

Open copy-ready prompt
Act as a lifecycle marketing strategist for a subscription language-learning app whose new users register but often do not complete a first lesson. Design a five-email welcome series over fourteen days. For each email, provide subject line, preview text, timing, objective, complete body copy, one CTA, and the behavioral signal that advances or pauses the sequence. Keep the tone encouraging, avoid unsupported performance claims, and include a plain-text alternative. Recommend one A/B test per email without inventing results. Return a campaign table, full copy, and a QA checklist covering links, personalization, unsubscribe handling, consent, rendering, and factual accuracy.

Optional inputs: [Product description] [Audience level] [Brand voice] [Onboarding events] [Activation metric]

42Abandoned-Cart Recovery Planner

Use when: You want to recover purchase intent without misleading urgency or excessive pressure.

Open copy-ready prompt
Serve as a CRM manager for an online home-goods retailer with consented email and cart-event tracking. Build a three-message abandoned-cart journey for shoppers who added a product but did not purchase within twenty-four hours. For each message, specify audience rule, delay, subject line, preview text, body copy, personalization, and exit condition. Use helpful reminders and objection handling about shipping or returns. Offer a discount only if approved; never invent scarcity, deadlines, reviews, or benefits. Present a campaign table followed by complete copy and a self-check for consent, suppression, pricing, accessibility, and claim accuracy.

Optional inputs: [Product category] [Approved offer] [Return policy] [Shipping facts] [Cart window] [Brand tone]

43Customer Re-Engagement Sequence

Use when: An opted-in audience has become inactive and needs a respectful path back to useful communication.

Open copy-ready prompt
Act as a retention strategist for a B2B analytics newsletter whose opted-in readers have not opened or clicked in ninety days. Create three re-engagement emails plus a final preference-center message. Define inactivity criteria, spacing, first-party personalization, and suppression for people who remain inactive. Write complete copy offering choices to continue, reduce frequency, change topics, or unsubscribe. Do not imply individual surveillance beyond the stated behavior or promise unverified outcomes. Organize the deliverable as a decision tree, email briefs, full copy, and a measurement plan using clicks, preference updates, unsubscribes, and complaint rates. Note privacy and tracking limitations.

Optional inputs: [Newsletter topics] [Frequency options] [Preference URL] [Inactive threshold] [Privacy language]

44Lead-Nurture Workflow Designer

Use when: Marketing and sales need a documented nurture path aligned to prospect interest and readiness.

Open copy-ready prompt
Work as a demand-generation lead for cybersecurity software sold to mid-sized businesses. Design a six-week nurture workflow for prospects who downloaded an educational guide but are not requesting sales contact. Map four email touches and two optional retargeting audiences to problem definition, risk evaluation, comparison, and next-step readiness. For every touch, provide trigger, audience criteria, message angle, copy outline, CTA, exclusion rule, and handoff condition. Use evidence-based education, avoid fear-based claims, and distinguish hypothetical examples from verified evidence. Return a stage matrix, sample copy, scoring assumptions, and a self-audit for consent, frequency, segmentation, accessibility, and sales transparency.

Optional inputs: [Guide topic] [Buyer roles] [Approved proof points] [CRM fields] [Sales criteria] [Ad channels]

45Post-Purchase Lifecycle Map

Use when: You need coordinated communications that help customers adopt a product and reach a useful first outcome.

Open copy-ready prompt
Act as a customer-lifecycle consultant for a direct-to-consumer skincare brand launching a replenishable product. Create a post-purchase map covering confirmation, shipping education, delivery follow-up, product-use guidance, review invitation, replenishment reminder, and support escalation. For each stage, define event, timing, channel, purpose, message summary, CTA, personalization, and stop conditions. Write sample copy for delivery follow-up, usage guidance, and replenishment. Do not make medical claims, guarantee results, fabricate testimonials, or pressure positive reviews. Separate transactional from promotional content and flag statements requiring qualified product or regulatory review. Return a lifecycle table, three copy blocks, and a quality checklist.

Optional inputs: [Product instructions] [Replenishment interval] [Approved claims] [Support policy] [Channels] [Milestones]

46Preference-Center Campaign Brief

Use when: Subscribers need control over topics, frequency, and channels while the brand improves engagement quality.

Open copy-ready prompt
Serve as an email operations specialist for a nonprofit with newsletters for donors, volunteers, advocates, and event attendees. Write a campaign brief inviting subscribers to update preferences without framing reduced email frequency as failure. Include audience segments, fields displayed, preference-center email, confirmation-page copy, reminder timing, and rules honoring unsubscribe and channel choices. Explain how to avoid accidental re-subscription and sensitive-attribute targeting. Recommend measurements distinguishing completed preference updates from opens and clicks, and identify issues requiring qualified privacy or legal counsel. Format the deliverable as an implementation brief with copy, field logic, test cases, and a self-check for consent, accessibility, data minimization, and respectful language.

Optional inputs: [Audience types] [Topics] [Channels] [Platform capabilities] [Jurisdictions] [Privacy URL]

47Lifecycle Experiment Backlog

Use when: A CRM team needs a prioritized, measurable backlog rather than isolated campaign ideas.

Open copy-ready prompt
Act as a growth experimentation lead for a mobile fitness service with onboarding, trial, and renewal journeys. Create twelve lifecycle experiments across subject lines, timing, framing, personalization, channel coordination, and suppression rules. For each, state hypothesis, eligible population, control, variant, primary metric, guardrails, implementation notes, and decision rule. Avoid sensitive personal data, fabricated social proof, dark patterns, and unapproved claims. Rank the backlog with a transparent planning heuristic based on impact, confidence, effort, and customer risk; label it as planning guidance, not evidence. End with a pre-launch checklist for randomization, contamination, consent, accessibility, interpretation, and rollback ownership.

Optional inputs: [Funnel metrics] [CRM platform] [Available events] [Compliance limits] [Experiment capacity] [Business objective]

48Renewal-Risk Communication Plan

Use when: A subscription business wants to reduce avoidable churn through timely, helpful renewal messages.

Open copy-ready prompt
Work as a subscription-retention manager for project-management SaaS serving small agencies. Develop an ethical renewal plan for annual customers approaching renewal, with reminders at ninety, thirty, and seven days plus post-renewal confirmation. Define audience rules, timing, channel, value message, CTA, and escalation path. Write complete copy for the thirty-day reminder and a plain-language cancellation or downgrade explanation. Do not hide terms, make unsupported savings claims, or obstruct cancellation. Use only observable account information such as plan, renewal date, and feature usage, and identify where human support may help. Return a timeline table, copy blocks, operational requirements, and a self-check for price accuracy, notice, preferences, accessibility, support routing, and campaign exit.

Optional inputs: [Plan names] [Renewal terms] [Support hours] [Approved usage data] [Cancellation process] [Segments]

49CRM Segmentation Governance Guide

Use when: A marketing organization needs useful segmentation rules without privacy, fairness, or data-quality problems.

Open copy-ready prompt
Act as a CRM data-governance advisor for a regional retailer personalizing email by product interest, purchase recency, and preferred store. Write a concise governance guide covering approved fields, prohibited or high-risk attributes, freshness expectations, consent, naming conventions, ownership, review cadence, and documentation. Include three auditable segment definitions and explain suppression when a relevant condition changes. Recommend a process for testing whether personalization is helpful rather than exclusionary, without asserting legal compliance. Structure the guide with principles, segment templates, review workflow, and a release checklist verifying source lineage, access controls, unsubscribe handling, accuracy, and qualified privacy or legal review where needed.

Optional inputs: [CRM fields] [Data sources] [Regions] [Team owners] [Naming scheme] [Review frequency]

50Lifecycle Dashboard Specification

Use when: Stakeholders need a reliable dashboard connecting CRM activity to outcomes without overstating attribution.

Open copy-ready prompt
Serve as a marketing-analytics lead for an online education company running welcome, nurture, trial-conversion, and win-back programs. Specify a weekly dashboard for executives and campaign managers. Define reporting grain, dimensions, metric formulas, attribution window, cohort logic, suppression handling, and data-quality checks. Include deliverability, engagement, conversion, retention, unsubscribe and complaint signals, and experiment results. Distinguish observed correlations from causal conclusions, and annotate campaign changes, tracking gaps, and seasonality. Present a dashboard blueprint with metric definitions, visualizations, source systems, ownership, and a weekly commentary template. Finish with a self-check for denominator consistency, duplicate events, consent-based tracking, timezones, anomalous spikes, and traceability from every claim to documented data.

Optional inputs: [CRM platform] [Analytics tools] [Conversion events] [Attribution policy] [Reporting cadence] [Stakeholder decisions]

6. Paid Media, Acquisition, and Conversion

51Paid-Media Account Diagnosis

Use when: You need a disciplined diagnosis of why a paid-media account is underperforming before changing budgets or creative.

Open copy-ready prompt
Act as a senior paid-media strategist auditing a multi-channel account for a subscription business. Review the supplied campaign, audience, creative, landing-page, attribution, and conversion data, then identify the most plausible performance constraints without assuming causation from correlation. Separate observations, hypotheses, and evidence gaps. Rank no more than five interventions by expected impact, confidence, effort, and measurement risk; do not recommend targeting people through sensitive personal attributes. Present an executive diagnosis, a channel-by-channel table, a 30-day test sequence, and the exact metrics or events needed to validate each hypothesis. Flag any claims that cannot be supported by the supplied data. Before finalizing, check that every recommendation has a measurable success criterion and that budget changes are framed as controlled tests rather than guarantees.

Optional inputs: [Account export] [Conversion definitions] [Attribution window] [Business goal] [Monthly budget]

52Incrementality Test Design

Use when: You want to determine whether advertising creates additional conversions rather than merely taking credit for existing demand.

Open copy-ready prompt
Act as a marketing measurement scientist designing an incrementality study for a regional ecommerce retailer. Using the available geographic, customer, spend, and order data, propose a feasible holdout, geo-experiment, or matched-market design, and explain why it fits the retailer’s scale and operational limits. Specify treatment and control selection, test duration, primary and guardrail metrics, minimum data requirements, contamination risks, statistical approach in plain language, and rules for pausing or extending the test. Do not promise a statistically significant result or infer causality from platform-reported conversions alone. Return a one-page study brief followed by an implementation checklist and an interpretation guide for positive, null, and ambiguous outcomes. Self-check that the design protects customer privacy and distinguishes incremental lift from attribution efficiency.

Optional inputs: [Markets] [Baseline orders] [Average order value] [Channel mix] [Available test duration]

53Search-Ad Message Matrix

Use when: You need compliant search-ad messaging that reflects different intents without inventing product benefits.

Open copy-ready prompt
Act as a performance-copy lead creating a search-ad message matrix for a verified SaaS product. Use only the documented features, proof points, pricing terms, and customer language provided below; if a benefit is unsupported, label it as a claim requiring verification instead of writing it as fact. Map five intent stages from problem discovery through high-intent comparison, and for each stage provide keyword themes, three headline directions, two description directions, a landing-page promise, and a negative-keyword consideration. Keep language clear, non-discriminatory, and free of urgency that could mislead users about availability or savings. Deliver the matrix in a concise table, then add testing priorities and a claim-verification checklist. Before finalizing, check character limits against the requested platform and ensure every material assertion can be traced to an input source.

Optional inputs: [Verified feature list] [Approved claims] [Keyword themes] [Platform character limits] [Landing-page URL]

54Paid Social Creative Testing Plan

Use when: You need a structured creative-testing system for paid social rather than a collection of disconnected ad ideas.

Open copy-ready prompt
Act as a paid-social creative director planning a six-week test program for a consumer brand with limited production capacity. Build a testing matrix that varies one meaningful dimension at a time across hook, format, proof, offer framing, creator style, and call to action. For each test cell, define the audience context, production brief, primary metric, guardrail metric, minimum run condition, and decision rule. Use the brand’s approved facts and permissions only; do not fabricate testimonials, imply guaranteed outcomes, or use personal-attribute targeting. Recommend a naming convention and a weekly learning log so results remain interpretable across platforms. Present the plan as a prioritized experiment table plus a short creative brief template. Self-check that no test confounds multiple major variables and that fatigue is monitored separately from conversion efficiency.

Optional inputs: [Brand guidelines] [Approved assets] [Audience definitions] [Spend ceiling] [Platform mix] [Historical results]

55Funnel Conversion Friction Review

Use when: You need to connect ad traffic quality with landing-page and checkout behavior before increasing acquisition spend.

Open copy-ready prompt
Act as a conversion-rate optimization consultant reviewing a paid acquisition funnel for a nonprofit donation campaign. Analyze the supplied ad, landing-page, analytics, form, and donation data from first click through completed contribution. Identify friction points by stage, distinguish technical problems from message mismatch, and recommend no more than eight changes ordered by likely impact and implementation effort. Preserve donor choice, accessibility, privacy, and transparent fee or recurring-payment language; do not use manipulative countdowns or dark patterns. Return a funnel table with observed signal, plausible explanation, proposed change, measurement event, and owner, followed by a prioritized experiment backlog. Note where sample size or tracking quality limits confidence. Before finalizing, verify that every proposed change has a clear comparison design and does not obscure consent or cancellation information.

Optional inputs: [Funnel events] [Page screenshots] [Form fields] [Donation policy] [Device breakdown] [Analytics period]

56Budget Reallocation Scenario Model

Use when: You need decision-ready budget scenarios while acknowledging uncertainty in media performance and measurement.

Open copy-ready prompt
Act as a growth planning analyst preparing three paid-media budget scenarios for a B2B services company. Use the supplied historical spend, qualified-lead, pipeline, sales-cycle, and capacity data to model conservative, base, and expansion cases. State assumptions explicitly, separate observed results from forecasts, and show how changes in conversion rate, cost per qualified lead, and sales acceptance affect outcomes. Include channel-level budget ranges, pacing controls, stop-loss rules, and a weekly monitoring dashboard; avoid presenting any forecast as guaranteed revenue or as personalized financial advice. Deliver an assumptions table, scenario table, sensitivity analysis, and an executive recommendation that explains what evidence would justify moving between scenarios. Self-check that totals reconcile, capacity constraints are respected, and platform-attributed leads are not treated as closed revenue without CRM confirmation.

Optional inputs: [Historical spend] [Qualified-lead definition] [Pipeline stages] [Sales capacity] [Target period] [Channel costs]

57Lead-Quality Feedback Loop

Use when: You need paid acquisition to optimize toward leads that sales can actually qualify and serve.

Open copy-ready prompt
Act as a revenue-operations architect improving the feedback loop between paid campaigns and a sales team. Design an operating process that connects ad identifiers, consented form data, CRM lifecycle stages, offline conversion imports, and weekly quality reviews without exposing unnecessary personal information. Define a common taxonomy for lead status, disqualification reasons, and revenue influence, then specify ownership, latency targets, data-validation checks, and escalation paths. Include a sample dashboard layout and a 45-day rollout sequence for marketing, sales, analytics, and privacy stakeholders. Do not recommend uploading sensitive data or sharing customer information beyond approved systems and permissions. Return a process map in prose, field-level requirements, and a failure-mode table. Before finalizing, check that optimization signals are based on documented business rules rather than subjective or discriminatory judgments.

Optional inputs: [CRM stages] [Consent language] [Ad platforms] [Data fields] [Sales SLA] [Privacy constraints]

58Retargeting Governance Framework

Use when: You need a useful retargeting program that respects consent, frequency, exclusions, and customer expectations.

Open copy-ready prompt
Act as a privacy-conscious lifecycle marketer creating a retargeting framework for an online education provider. Define eligible audiences based on first-party interactions and documented consent, with clear exclusions for enrolled learners, support cases, minors where applicable, recent purchasers, and users who opted out. Recommend message sequencing by engagement stage, frequency controls, lookback windows, creative rotation, and stop conditions. Explain how to handle incomplete consent, browser limitations, and cross-device uncertainty without claiming perfect identity resolution. Provide an audience-governance table, campaign sequence, QA checklist, and measurement plan covering incremental conversions, complaints, unsubscribes, and fatigue. Do not infer sensitive traits or use emotionally coercive messaging. Self-check that each audience has a lawful purpose, a retention limit, an exclusion rule, and a documented owner for review.

Optional inputs: [Consent policy] [Audience events] [Customer exclusions] [Lookback windows] [Frequency caps] [Brand tone]

59Offer and Promotion Experiment

Use when: You need to test an acquisition offer without eroding trust, margin, or long-term customer value.

Open copy-ready prompt
Act as a commercial experimentation lead designing an offer test for a direct-to-consumer product with documented pricing and margin rules. Compare two or three transparent offers, such as a modest discount, bundle, or service benefit, while keeping eligibility, expiration, shipping, and renewal terms clear. Specify randomization or audience-splitting, primary conversion metric, contribution-margin guardrail, refund and cancellation monitoring, sample considerations, and a follow-up window for repeat behavior. Use only verified pricing and inventory information; never invent scarcity, savings, or customer outcomes. Present a test charter, offer copy requirements, measurement table, and go/no-go criteria. Before finalizing, check that the test does not disadvantage protected groups, hide material terms, or optimize short-term purchases at the expense of documented customer-service and profitability thresholds.

Optional inputs: [Current price] [Offer constraints] [Unit margin] [Inventory] [Refund policy] [Repeat-purchase window]

60Acquisition Reporting Narrative

Use when: You need a trustworthy monthly paid-acquisition report that turns mixed channel data into accountable decisions.

Open copy-ready prompt
Act as a marketing analytics editor writing a monthly acquisition report for an executive team. Reconcile the supplied platform, web analytics, CRM, and finance data, identify material discrepancies, and explain performance using cautious language about attribution and causality. Organize the report into an executive summary, scorecard, channel findings, creative and audience learnings, risks, and next-month decisions. Include definitions for every headline metric, period-over-period comparisons, confidence or data-quality notes, and a short list of questions requiring owner confirmation. Do not fabricate benchmarks, citations, testimonials, or results; mark missing evidence plainly. Recommend only actions that follow from the supplied record and label forecasts as scenarios. Self-check arithmetic, date ranges, metric definitions, and whether each conclusion is supported by a named source system before presenting the final narrative.

Optional inputs: [Reporting period] [Platform exports] [CRM report] [Finance data] [Metric definitions] [Executive priorities]

7. Product Launches, Events, and Partnerships

61Launch Positioning Brief

Use when: You need a clear, evidence-based positioning brief before introducing a product to a defined market.

Open copy-ready prompt
Act as a senior product marketing strategist preparing the positioning brief for a new product launch. Using only the verified facts, customer research, and competitive notes I provide, define the primary audience, urgent problem, differentiated value proposition, proof points, likely objections, and recommended category language. Distinguish confirmed evidence from hypotheses, avoid unsupported superlatives, and flag any claim that requires legal, regulatory, or substantiation review. Organize the response into: strategic summary, audience and insight, positioning statement, message pillars, objection handling, proof-point gaps, and a 30-day validation plan. End with a claim-audit table showing each proposed claim, its source, confidence level, and approval needed. Do not invent customer results, testimonials, certifications, or market statistics.

Optional inputs: [Product description] [Target audience] [Research notes] [Competitor context] [Approved proof points] [Launch date]

62Multi-Channel Launch Calendar

Use when: You need to coordinate launch communications across owned, paid, earned, partner, and community channels.

Open copy-ready prompt
Act as an integrated marketing campaign manager building a practical launch calendar for a product release. Convert the supplied launch milestones, audience segments, channel constraints, and approved messages into a six-week schedule covering pre-launch, launch week, and post-launch momentum. For every activity, specify the date or timing, channel, audience, objective, asset required, owner, dependency, call to action, and measurement method. Sequence communications so frequency remains respectful and each channel has a distinct role rather than duplicating copy. Include an approval checkpoint for claims, permissions, accessibility, and brand compliance. Present the result as a week-by-week table followed by a risk register and a short measurement dashboard. Use placeholders only for missing operational details, never for invented facts or creative claims.

Optional inputs: [Launch milestones] [Channels] [Audience segments] [Team roles] [Approved messages] [Budget] [Time zone]

63Product Launch Event Run of Show

Use when: You are planning a launch event that must feel engaging while remaining operationally reliable and inclusive.

Open copy-ready prompt
Act as an experienced brand-events producer creating a run of show for a 60-minute product launch event. Based on the supplied agenda, speakers, product capabilities, audience, venue or platform, and technical limitations, map each minute into segments with presenter, purpose, script cue, visual or demo requirement, transition, and contingency. Build in accessibility considerations such as captions, readable visuals, interpretation, and a non-demo explanation for attendees who cannot view the screen. Separate confirmed details from decisions still pending, and avoid promising product functionality that has not been verified. Deliver: event objective, minute-by-minute table, speaker briefing notes, technical cue sheet, backup plan, audience interaction moments, and post-event follow-up triggers. Finish with a rehearsal checklist that tests timing, permissions, claims, and emergency communication.

Optional inputs: [Event duration] [Agenda] [Speaker bios] [Product facts] [Venue or platform] [Accessibility requirements] [Technical setup]

64Partner Co-Marketing Proposal

Use when: You want to present a partner with a specific, mutually valuable launch collaboration rather than a vague sponsorship request.

Open copy-ready prompt
Act as a partnership marketing director drafting a co-marketing proposal for a potential launch partner. Use the supplied partner profile, shared audience overlap, campaign objective, available assets, budget, and timing to recommend one focused collaboration. Explain the mutual value without overstating reach, results, or endorsement. Define the campaign concept, audience journey, responsibilities, contribution assumptions, content and brand approvals, data-sharing boundaries, success measures, and exit conditions. Structure the response as: executive pitch, strategic fit, proposed activation, workback schedule, responsibility matrix, measurement framework, risks, and negotiation questions. Include a section identifying which facts must be confirmed by both parties and which permissions are required for logos, quotes, customer data, or co-branded creative. End with a concise email-ready invitation that is professional and non-pressuring.

Optional inputs: [Partner profile] [Shared audience] [Campaign goal] [Assets] [Budget] [Timing] [Approval requirements]

65Influencer and Creator Launch Brief

Use when: You need a creator brief that encourages authentic product coverage while controlling disclosure, claims, and brand risk.

Open copy-ready prompt
Act as a creator partnerships manager preparing a launch brief for selected influencers or content creators. From the verified product information, creator profiles, audience fit, deliverables, compensation terms, and campaign dates, write a brief that gives creators a clear assignment without scripting false enthusiasm. Specify the audience insight, content objective, mandatory disclosures, approved factual claims, prohibited claims, demonstration boundaries, accessibility expectations, review process, usage rights, and submission deadlines. Allow room for the creator’s authentic voice and require them to disclose material relationships according to applicable rules and platform policies. Present sections for campaign overview, creative territories, guardrails, deliverables, approval workflow, measurement, and escalation contacts. End with a pre-publication checklist confirming permissions, disclosures, factual accuracy, music or image rights, and absence of fabricated testimonials.

Optional inputs: [Product facts] [Creator profiles] [Deliverables] [Compensation] [Usage rights] [Platforms] [Dates]

66Launch Webinar Conversion Plan

Use when: You need to turn an educational launch webinar into a measurable, respectful path from attendance to qualified next steps.

Open copy-ready prompt
Act as a demand-generation strategist designing the conversion plan for a product launch webinar. Use the provided audience definition, learning objective, product facts, registration data, sales process, and compliance restrictions to map the attendee journey from invitation through follow-up. Recommend an agenda that earns attention with useful education before presenting the product, plus ethical calls to action for different readiness levels. Specify registration fields, reminder sequence, live interaction, qualification signals, handoff rules, nurture branches, and reporting definitions. Separate educational content from promotional claims and mark any statement requiring substantiation or legal review. Return: funnel map, message sequence, webinar structure, lead-routing logic, follow-up templates, KPI dictionary, and experiment backlog. Conclude with a privacy and consent check covering data collection, recording notices, unsubscribe handling, and access controls.

Optional inputs: [Audience] [Learning objective] [Product facts] [Sales stages] [CRM fields] [Compliance rules] [Webinar date]

67Launch Press and Analyst Outreach Kit

Use when: You are preparing credible outreach to journalists, analysts, or industry commentators around a product announcement.

Open copy-ready prompt
Act as a technology communications lead assembling a press and analyst outreach kit for a product launch. Rely only on the supplied announcement facts, executive quotes, customer permissions, research, and media targets. Create a news angle tailored to each audience, a concise pitch, subject-line options, spokesperson briefing points, anticipated questions, and a fact sheet. Do not fabricate exclusivity, adoption, market rank, customer outcomes, analyst opinions, or embargo terms. Clearly label internal context that must not be forwarded, and flag claims requiring source documentation or approval. Organize the response into: news judgment, audience map, outreach drafts, briefing Q&A, evidence ledger, embargo and permission checklist, and follow-up cadence. End with a quality-control pass that checks every statistic, quote, name, date, link, and requested action against the supplied source materials.

Optional inputs: [Announcement facts] [Media targets] [Executive quotes] [Customer permissions] [Research sources] [Embargo terms] [Launch date]

68Pop-Up or Conference Activation Plan

Use when: You need an on-site activation that connects a product experience to measurable engagement without creating crowd, privacy, or accessibility problems.

Open copy-ready prompt
Act as a field marketing director planning a pop-up or conference activation for a product launch. Based on the supplied venue rules, audience profile, product experience, staffing, budget, footprint, and objectives, design an activation that is useful, safe, and easy to operate. Detail the visitor journey, invitation hook, demonstration script, staffing positions, materials, lead-capture choice, accessibility provisions, queue management, consent language, and follow-up path. Include alternatives for equipment failure, low attendance, restricted photography, and visitors who do not want to share contact information. Present: concept summary, floor or flow description, operating schedule, staffing matrix, asset list, measurement plan, risk controls, and post-event debrief questions. Do not imply guaranteed traffic or outcomes, and require venue, privacy, safety, and brand approvals before deployment.

Optional inputs: [Venue rules] [Footprint] [Audience] [Product experience] [Staffing] [Budget] [Lead-capture policy]

69Partnership Launch Measurement Framework

Use when: You need to evaluate a joint launch fairly across partner contributions, audience quality, and downstream outcomes.

Open copy-ready prompt
Act as a marketing analytics lead creating a measurement framework for a co-branded product launch. Use the supplied objectives, channel plan, partner commitments, tracking capabilities, privacy limits, and baseline data to define a practical scorecard. Distinguish reach, engagement, intent, qualified actions, revenue-related signals, and longer-term retention; do not claim causation where attribution is incomplete. Specify each metric’s definition, formula, source, owner, reporting cadence, comparison baseline, and interpretation rule. Include a measurement architecture for links, campaign codes, event registration, CRM handoff, and partner reporting, while respecting consent and data-minimization requirements. Return a metric dictionary, partner scorecard, attribution caveats, reporting template, and decision thresholds for continuing, adapting, or ending the activation. End by listing the five data-quality tests that must pass before results are published.

Optional inputs: [Objectives] [Partner commitments] [Channels] [Tracking setup] [Baseline metrics] [Privacy limits] [Reporting cadence]

70Launch Momentum and Post-Event Retention Plan

Use when: You want a disciplined plan to sustain interest after launch while learning from customer and partner feedback.

Open copy-ready prompt
Act as a lifecycle marketing strategist creating a 90-day post-launch momentum plan for a newly released product or partnership. Using the verified launch outcomes, audience segments, customer questions, event feedback, support capacity, and approved roadmap information, recommend sequenced follow-up programs for attendees, trial users, prospects, partners, and non-converters. Give each program a purpose, eligibility rule, message theme, channel, timing, owner, success measure, and stop condition. Prioritize helpful education, onboarding, and transparent updates over artificial urgency; never invent product availability, customer stories, or performance results. Structure the response as: learning synthesis, segment matrix, 90-day calendar, message examples, feedback loop, experiment plan, and governance checklist. Finish with a retrospective rubric covering evidence, consent, accessibility, partner commitments, unsubscribe behavior, and whether reported outcomes are reproducible.

Optional inputs: [Launch results] [Audience segments] [Customer questions] [Event feedback] [Support capacity] [Roadmap facts] [Partner obligations]

8. Measurement, Experimentation, and Optimization

71Build a Measurement Framework

Use when: You need a practical measurement plan that connects campaign activity to business outcomes without overstating attribution.

Open copy-ready prompt
Act as a senior marketing measurement strategist advising a team launching a six-week omnichannel campaign for [product or service]. Design a measurement framework that separates business outcomes, channel indicators, diagnostic metrics, and guardrail metrics. Define each metric, its calculation, data owner, reporting cadence, and decision threshold, while distinguishing observed correlation from defensible causal evidence. Account for [channels], [conversion journey], [available analytics systems], and [privacy constraints]. Present the result as a four-column table followed by a concise instrumentation checklist. Include assumptions and identify missing data that could change interpretation. Before finalizing, self-check that every proposed metric supports a stated decision, avoids vanity-only reporting, and does not imply attribution the available evidence cannot support.

Optional inputs: [Campaign objective] [Channels] [Funnel stages] [Analytics tools] [Reporting frequency] [Privacy requirements]

72Design a Controlled A/B Test

Use when: You want to test a campaign variable with a clear hypothesis, valid comparison, and pre-agreed decision rule.

Open copy-ready prompt
Act as an experimentation lead for a subscription business deciding whether to replace its current landing-page headline with a benefit-led alternative. Create a rigorous A/B test plan covering hypothesis, primary outcome, secondary outcomes, eligible audience, randomization unit, sample-size inputs, test duration, exposure rules, and stopping criteria. Use [baseline conversion rate], [minimum detectable lift], [traffic volume], and [significance standard] as planning inputs, but flag where a statistician should verify the calculation. Specify how to handle repeat visitors, bots, technical failures, and simultaneous campaigns. Return a one-page test brief with a decision tree. Self-check that only one intended variable changes, the primary metric is defined before launch, and no recommendation depends on peeking at results prematurely.

Optional inputs: [Current experience] [Variant] [Baseline rate] [Traffic] [MDE] [Test platform]

73Evaluate Incrementality

Use when: Channel-reported conversions look strong, but you need to estimate what the campaign caused beyond existing demand.

Open copy-ready prompt
Act as an independent marketing science consultant reviewing a paid social campaign for [brand]. Propose an incrementality assessment using the strongest feasible design among a randomized holdout, geo experiment, matched-market test, or calibrated observational analysis. Explain the treatment and control definitions, contamination risks, outcome window, power considerations, covariates, and limitations. Use [campaign geography], [audience size], [conversion event], [budget], and [historical demand pattern] to tailor the recommendation. Present a comparison matrix of methods, then provide a recommended protocol and an interpretation template that reports incremental conversions, uncertainty, and cost per incremental outcome. Do not invent results. Self-check that platform-attributed conversions are not treated as causal evidence and that the design includes a plan for checking pre-test balance.

Optional inputs: [Channel] [Markets] [Audience] [Conversion event] [Budget] [Historical data]

74Diagnose a Funnel Drop-Off

Use when: A campaign is generating traffic or leads, yet performance falls unexpectedly at a particular funnel stage.

Open copy-ready prompt
Act as a conversion-rate optimization analyst investigating a decline between [funnel stage A] and [funnel stage B] for [campaign]. Analyze the supplied data by segment, device, source, creative, landing page, time period, and cohort. Separate confirmed observations from hypotheses, rank likely causes by evidence and business impact, and recommend no more than five diagnostic checks before making major changes. Include an event-quality audit covering duplicate firing, missing events, consent effects, attribution-window changes, and tracking outages. Deliver a structured incident memo with an evidence table, prioritized hypotheses, validation queries or dashboard cuts, and a cautious remediation sequence. Self-check every claim against the provided fields, clearly label unknowns, and avoid blaming creative or audience quality without comparative evidence.

Optional inputs: [Funnel data] [Date range] [Segments] [Analytics definitions] [Recent changes] [Known incidents]

75Create a Marketing Dashboard Specification

Use when: Stakeholders need one reliable dashboard rather than conflicting channel reports and improvised spreadsheets.

Open copy-ready prompt
Act as a marketing operations architect specifying an executive dashboard for [business unit] across [channels]. Define the dashboard’s audience, decisions supported, metric hierarchy, filters, data sources, refresh schedule, ownership, access controls, and annotation rules. For each visual, state the question it answers, dimensions required, default date comparison, and an appropriate chart type. Include a data dictionary with canonical definitions for spend, reach, qualified lead, conversion, revenue, and return metrics, noting where definitions vary by platform. Return a build-ready specification organized into sections for overview, acquisition, conversion, retention, and data quality. Self-check that every chart has a decision purpose, definitions are consistent, and sensitive customer information is excluded or access-restricted.

Optional inputs: [Stakeholders] [Channels] [Data warehouse] [BI tool] [Business definitions] [Access policy]

76Optimize Budget Allocation

Use when: You need to recommend budget shifts while acknowledging uncertainty, saturation, and business constraints.

Open copy-ready prompt
Act as a portfolio marketing analyst allocating next month’s [total budget] across [channels] for [campaign objective]. Use the supplied historical spend, outcomes, marginal performance, seasonality, capacity limits, and confidence intervals to develop three scenarios: conservative, balanced, and growth-oriented. Explain the assumptions behind response curves or marginal-return estimates, identify where data is too sparse for a strong conclusion, and include a reserve for testing. Present a scenario table with allocation, expected directional impact, key risks, and monitoring triggers rather than fabricated point forecasts. Recommend a weekly review protocol for reallocating funds. Self-check that recommendations respect minimum and maximum spends, do not confuse average with marginal return, and are explicitly framed as decision support requiring finance and channel-owner review.

Optional inputs: [Budget] [Historical performance] [Channel limits] [Seasonality] [Objective] [Risk tolerance]

77Plan Creative Testing

Use when: A creative team has many possible messages and needs a disciplined test roadmap tied to learning priorities.

Open copy-ready prompt
Act as a creative testing director for [brand] preparing [number] campaign assets across [platforms]. Build a learning agenda that tests distinct dimensions such as promise, proof, opening, format, and call to action without confounding too many variables in one comparison. Map each test to a hypothesis, audience, placement, primary signal, minimum run conditions, and next decision. Recommend a naming convention and tagging schema so results remain analyzable across versions. Return a sequenced testing roadmap plus a compact scorecard template. Treat engagement metrics as diagnostic unless they connect to the agreed objective. Self-check that the roadmap contains genuine conceptual contrasts, preserves brand and accessibility requirements, avoids unsupported claims or unauthorized assets, and includes a process for documenting null results.

Optional inputs: [Brand] [Objective] [Platforms] [Asset inventory] [Audience] [Compliance rules]

78Analyze a Campaign Cohort

Use when: You need to understand whether campaign-acquired customers retain value beyond the initial conversion.

Open copy-ready prompt
Act as a lifecycle analytics manager comparing cohorts acquired through [campaign channels] during [acquisition periods]. Analyze retention, repeat purchase or renewal, average order value, support usage, margin contribution, and payback over [observation window], separating cohort effects from customer mix and incomplete follow-up. Define the cohort inclusion rule, censoring treatment, minimum sample sizes, and any controls needed for promotions or pricing changes. Produce a narrative findings memo with a cohort table, three evidence-backed implications, and a list of unanswered questions for the next analysis. Do not calculate lifetime value beyond the observed horizon unless clearly labeled as modeled. Self-check that the comparison uses consistent definitions, reports denominators, notes survivorship or selection bias, and avoids presenting early retention as a proven long-term outcome.

Optional inputs: [Channels] [Cohort dates] [Customer events] [Observation window] [Margins] [Promotions]

79Establish a Test-and-Learn Operating Rhythm

Use when: Campaign experimentation is ad hoc and teams need a repeatable process for learning, prioritization, and governance.

Open copy-ready prompt
Act as a marketing experimentation program manager designing a quarterly operating rhythm for [team or portfolio]. Create a process from idea intake through hypothesis review, technical QA, launch approval, monitoring, readout, and knowledge capture. Define roles using a lightweight RACI, set a prioritization score based on potential impact, confidence, effort, and strategic relevance, and specify how inconclusive or negative tests are recorded. Include meeting agendas for a weekly triage and monthly learning review, along with a concise experiment register schema. Make the process compatible with [team size], [approval requirements], and [analytics maturity]. Self-check that the workflow discourages cherry-picking, protects customer privacy, gives owners a deadline for decisions, and allows a test to be stopped for safety or data-integrity reasons.

Optional inputs: [Team size] [Experiment backlog] [Approval workflow] [Analytics maturity] [Quarter dates] [Privacy policy]

80Write an Optimization Readout

Use when: Leaders need a balanced campaign readout that turns evidence into decisions without hiding uncertainty.

Open copy-ready prompt
Act as a marketing performance lead preparing the final readout for [campaign] for an audience of [stakeholders]. Synthesize the supplied objectives, spend, reach, conversions, revenue or pipeline, experiment results, incrementality evidence, and data-quality notes. Organize the deliverable as: executive conclusion, objective-by-objective scorecard, what changed, what was learned, limitations, recommended decisions, and next measurement actions. Distinguish reported, modeled, and experimentally estimated figures, show relevant denominators and comparison periods, and use confidence ranges where available. Keep the tone candid and decision-oriented; do not manufacture benchmarks, causal claims, testimonials, or ROI. Self-check that every conclusion traces to a cited input, every recommendation has an owner and trigger, and unresolved tracking issues are prominent enough to affect approval.

Optional inputs: [Campaign brief] [Performance export] [Experiment results] [Attribution method] [Stakeholder decisions] [Known limitations]

9. Brand Governance, Accessibility, and Responsible Marketing

81Brand Governance Exception Review

Use when: A campaign team needs a consistent, evidence-based decision on whether a proposed execution may depart from established brand standards.

Open copy-ready prompt
Act as a senior brand-governance manager reviewing a proposed [campaign asset or channel] for [audience and market]. Compare the concept with the supplied brand system, including voice, visual rules, prohibited claims, approval thresholds, and local-market requirements. Identify each exception, classify it as acceptable, revisable, or requiring formal escalation, and explain the business or reputational risk without overstating certainty. Recommend precise edits that preserve the campaign idea while protecting brand consistency. Present the result as an exception register followed by an approval recommendation and unresolved questions. Do not invent policy language or assume approval authority. Before finalizing, cross-check every conclusion against the provided standards and label any missing evidence that a brand, legal, or compliance reviewer must verify.

Optional inputs: [Brand guidelines] [Campaign brief] [Asset links] [Markets] [Approval matrix]

82Accessible Campaign Asset Audit

Use when: Marketing needs a practical accessibility review of a landing page, email, social asset, or multimedia advertisement before publication.

Open copy-ready prompt
Act as an accessibility-focused marketing QA lead auditing [asset type] for [campaign and audience], using the supplied copy, design notes, and platform specifications. Check content hierarchy, color contrast evidence, readable typography, captions, audio descriptions, keyboard or screen-reader considerations where relevant, plain-language clarity, motion sensitivity, and meaningful alternative text. Separate confirmed issues from items that require testing in the live environment, and avoid claiming compliance with a standard unless the evidence supports it. Return a severity-ranked table with location, barrier, affected user experience, recommended fix, owner, and verification method, then provide revised alt text or accessible copy for the highest-priority items. Self-check that recommendations do not remove essential information and that every proposed fix remains faithful to the campaign’s factual claims.

Optional inputs: [Asset files or screenshots] [Copy] [Platform] [Brand voice] [Accessibility standard]

83Inclusive Audience and Representation Review

Use when: A campaign concept needs an expert review for inclusive representation without reducing people to stereotypes or demographic assumptions.

Open copy-ready prompt
Act as an inclusive-marketing strategist reviewing [campaign concept] for [market, product, and intended audience]. Examine imagery, casting direction, language, audience assumptions, cultural references, accessibility, and the distribution of benefits and burdens implied by the message. Flag stereotypes, tokenism, exclusionary defaults, or unsupported claims, explaining the concern in neutral, specific language. Offer alternative copy, casting principles, and creative directions that improve inclusion while preserving the campaign objective; do not prescribe identities or make decisions based on protected characteristics. Structure the response as: strengths, risks, recommended revisions, questions for community or subject-matter consultation, and a pre-launch checklist. Self-check that suggestions are grounded in the supplied materials, do not fabricate audience research, and leave final cultural or legal judgments to qualified reviewers.

Optional inputs: [Concept deck] [Script] [Visual references] [Audience research] [Markets] [Consultation budget]

84Responsible Claims and Evidence Matrix

Use when: A marketer must verify that benefit statements are supportable before they appear in ads, packaging, email, or sales materials.

Open copy-ready prompt
Act as a claims substantiation specialist assessing [campaign copy] for [product, service, and jurisdiction]. Extract every express and implied performance, comparative, environmental, health, financial, or social-impact claim. For each, create an evidence matrix showing the exact wording, claim type, required substantiation, supplied source, evidence strength, caveat, and proposed safer alternative if support is incomplete. Distinguish factual description from opinion and avoid converting internal estimates into public proof. Do not create citations, test results, certifications, customer outcomes, or regulatory approvals that were not provided. End with a release recommendation divided into publishable, revise, and hold categories. Self-check that qualifiers are prominent enough to matter and that all jurisdiction-specific questions are clearly routed to qualified legal or compliance review.

Optional inputs: [Ad copy] [Product evidence] [Competitor references] [Jurisdictions] [Certification records]

85Consent and Permission Workflow Design

Use when: A campaign uses customer stories, creator content, photography, testimonials, or personal data and needs a responsible approval process.

Open copy-ready prompt
Act as a marketing operations lead designing a permission workflow for [campaign materials] involving [customers, creators, employees, or community members]. Map the path from invitation and informed consent through content review, usage scope, storage, renewal, withdrawal, and takedown. Account for image rights, quotations, music, trademarks, personal information, minors or vulnerable participants, language access, and channel or territory limits. Produce a swimlane-style written workflow with responsible owner, required record, decision gate, and escalation path at each stage, followed by sample plain-language consent questions that do not pressure participation. Do not draft a substitute for a jurisdiction-specific release or privacy notice. Self-check that consent is specific, revocable where required, and never implied by participation; flag every point needing qualified legal or privacy review.

Optional inputs: [Campaign plan] [Participant types] [Channels] [Territories] [Existing release forms] [Data policy]

86Ethical Personalization Guardrails

Use when: A growth team is planning segmentation or personalization and needs boundaries that protect user dignity, fairness, and transparency.

Open copy-ready prompt
Act as a responsible-growth product marketer reviewing a personalization plan for [campaign or lifecycle program]. Evaluate the proposed data signals, audience segments, message variations, exclusions, timing, and measurement against purpose limitation, transparency, user expectations, sensitive inferences, and potential disparate impact. Recommend a guardrail framework that distinguishes permitted, restricted, and prohibited uses, with human review triggers and a test plan that does not expose personal data. Suggest clear user-facing explanations and an opt-out or preference path appropriate to the channel, while acknowledging that privacy and discrimination rules vary by jurisdiction. Return a decision table, implementation checklist, and monitoring indicators. Self-check that no recommendation relies on inferred protected traits, hidden vulnerability targeting, or unverified assumptions about an individual.

Optional inputs: [Data fields] [Segment definitions] [Channel] [Consent language] [Jurisdictions] [Risk tolerance]

87Sustainable Marketing Message Review

Use when: An organization is preparing environmental or social-impact messaging and wants to reduce the risk of vague, misleading, or unbalanced claims.

Open copy-ready prompt
Act as an environmental- and social-claims editor reviewing [campaign materials] for [organization, product, and market]. Test each sustainability statement for specificity, scope, time frame, comparability, lifecycle boundary, and accessible evidence. Identify vague terms such as “green,” “ethical,” or “carbon neutral” when they lack a defined basis, and recommend language that states what was measured, where, and under which methodology. Include a table of claim, evidence supplied, ambiguity, revision, and reviewer needed. Preserve material limitations rather than hiding them in fine print, and do not infer impact from a logo, aspiration, offset, or supplier assertion alone. Self-check that the revised copy neither overstates progress nor erases trade-offs, and direct unresolved environmental or legal questions to qualified specialists before release.

Optional inputs: [Sustainability claims] [Lifecycle data] [Methodology] [Certifications] [Supplier evidence] [Target markets]

88Crisis-Ready Brand Response Protocol

Use when: A brand needs a responsible communication framework for a controversy, service failure, harmful comment, or misinformation event.

Open copy-ready prompt
Act as a brand reputation and crisis-communications adviser helping [organization] prepare for [scenario]. Build a response protocol that separates verified facts, allegations, unknowns, and decisions requiring leadership or legal review. Provide a first-hour checklist, stakeholder-specific message objectives, a holding statement template using only confirmed information, escalation criteria, monitoring questions, and an update cadence. Include accessibility requirements, translation considerations, employee guidance, and a process for correcting errors without deleting legitimate criticism. Do not speculate about causes, assign blame, identify private individuals, or recommend suppressing lawful feedback. Present the protocol as an incident playbook with clear owners and stop conditions. Self-check that every sample statement is transparent about uncertainty, avoids fabricated empathy or evidence, and can be adapted without making unsupported promises.

Optional inputs: [Incident facts] [Stakeholder list] [Approval contacts] [Channels] [Existing crisis policy] [Response time target]

89Influencer and Partner Disclosure Check

Use when: A campaign relies on creators, affiliates, ambassadors, or brand partners and requires clear disclosure and content-governance controls.

Open copy-ready prompt
Act as a partnerships compliance manager reviewing [creator or affiliate campaign] across [channels and jurisdictions]. Examine the brief, compensation arrangement, product-seeding terms, disclosure instructions, review rights, exclusivity, and content examples. Identify where audiences could misunderstand the commercial relationship, where disclosures may be hidden or ambiguous, and where partner claims exceed the evidence supplied. Recommend channel-appropriate disclosure wording and a monitoring and correction process, while avoiding the claim that one label guarantees compliance everywhere. Return a partner-risk table, revised brief language, pre-publication checklist, and post-publication escalation procedure. Do not invent a creator’s experience, audience metrics, permission, or endorsement. Self-check that the partner can express an honest opinion, material connections are conspicuous, and jurisdiction-specific requirements are confirmed by qualified legal or compliance reviewers.

Optional inputs: [Partner brief] [Compensation terms] [Draft posts] [Product evidence] [Channels] [Jurisdictions]

90Campaign Accessibility and Ethics Scorecard

Use when: A cross-functional team needs a final go/no-go review that integrates brand integrity, inclusion, accessibility, evidence, privacy, and partner governance.

Open copy-ready prompt
Act as an independent campaign-governance chair evaluating [campaign] before launch. Create a scorecard covering brand consistency, factual claims, accessibility, inclusive representation, consent and permissions, privacy-aware targeting, sustainability language, partner disclosures, and crisis readiness. For each category, record evidence reviewed, status, material risk, required owner, deadline, and launch condition; use “unknown” rather than guessing. Then give a conditional recommendation with three priorities for the next review meeting and a concise decision log template. Keep the assessment proportionate to the campaign’s reach and risk, and distinguish operational fixes from matters requiring qualified legal, privacy, accessibility, or subject-matter review. Self-check that no score is based on invented data, that unresolved high-risk items block release, and that the final record is auditable.

Optional inputs: [Campaign brief] [Assets] [Evidence folder] [Risk policy] [Review team] [Launch date]

10. Budgeting, Reporting, and Marketing Leadership

91Allocate a Portfolio Budget Across Channels

Use when: You need a defensible quarterly budget split across paid, owned, and experimental marketing channels.

Open copy-ready prompt
Act as a senior performance marketing director advising a B2B software company planning a quarterly demand-generation budget. Using the supplied objectives, historical channel results, sales-cycle length, minimum test allocation, and cash limit, recommend a channel portfolio rather than simply extending last quarter’s percentages. Separate committed spend, controlled experiments, and contingency reserve. Explain the assumptions behind each allocation, identify the leading and lagging indicators to monitor, and describe what evidence would trigger a reallocation. Present the result as a budget table followed by a concise rationale and a 30-day review cadence. Do not invent benchmarks or promise outcomes; label estimates clearly. Before finalizing, check that totals reconcile exactly to the available budget and that every recommendation is traceable to an input or stated assumption.

Optional inputs: [Quarterly budget] [Business objective] [Channel history] [Target audience] [Minimum test reserve] [Sales-cycle length]

92Build an Executive Marketing Performance Report

Use when: You must turn campaign data into a concise report that helps executives make timely decisions.

Open copy-ready prompt
Act as a marketing operations lead preparing a monthly executive performance report for a multi-channel consumer campaign. Convert the supplied spend, reach, conversions, revenue, margin, and attribution notes into a decision-oriented narrative. Start with a five-line executive summary, then provide a KPI table with current period, prior period, target, variance, and interpretation. Distinguish reported facts from modeled estimates, note material data-quality limitations, and identify three decisions leadership should make this month. Include a short appendix specification for definitions, data owners, and refresh timing so the report can be reproduced. Avoid vanity metrics unless they explain a business outcome, and do not infer causality from correlation alone. Self-check that every percentage is calculated from the supplied data, currencies and periods are consistent, and no unsupported claim or fabricated citation appears.

Optional inputs: [Reporting period] [Campaign data] [Targets] [Attribution model] [Executive audience] [Data limitations]

93Design a Marketing Measurement Framework

Use when: Your team needs a shared measurement system linking campaign activity to commercial outcomes.

Open copy-ready prompt
Act as a measurement strategist designing a practical framework for a regional retail brand running awareness, consideration, and conversion campaigns. Map each business objective to a small set of primary and diagnostic metrics, data sources, owners, reporting frequency, and decision thresholds. Include both online and offline touchpoints, but flag where measurement is directional rather than causal. Recommend a test-and-learn layer, such as holdouts or matched-market comparisons, without assuming the organization has perfect tracking. Deliver a one-page measurement matrix, followed by implementation priorities for the first 60 days and questions requiring stakeholder agreement. Use plain language suitable for marketing, finance, and analytics leaders. Check that every metric has a clear decision use, that funnel stages do not overlap ambiguously, and that privacy-sensitive data is handled lawfully and minimally.

Optional inputs: [Business objectives] [Customer journey] [Available data sources] [Markets] [Tracking constraints] [Privacy requirements]

94Establish Campaign Governance and Approval Gates

Use when: Multiple teams need clear controls for approving, launching, changing, and closing campaigns.

Open copy-ready prompt
Act as a marketing governance program manager creating an approval model for a complex campaign involving brand, legal, finance, agency, sales, and regional teams. Define the lifecycle from brief through post-campaign review, including decision rights, required evidence, budget authority, escalation paths, and service-level expectations. Create a RACI-style responsibility table and four approval gates with entry criteria, approver, evidence required, and exit condition. Include a lightweight exception process for urgent changes and a record-retention expectation, while avoiding legal conclusions that require counsel. Make the model usable for both routine campaigns and high-risk claims or regulated audiences. Before presenting it, test the workflow against one ordinary launch and one urgent correction scenario, identify any deadlock, and state where qualified legal, privacy, or compliance review is mandatory.

Optional inputs: [Organization structure] [Campaign types] [Approval thresholds] [Risk categories] [Teams involved] [Launch deadline]

95Reconcile Marketing Spend and Forecast Variances

Use when: Actual campaign spending differs from plan and leadership needs an accurate explanation and revised outlook.

Open copy-ready prompt
Act as a marketing finance partner reviewing a month-end variance for a paid media and events portfolio. Reconcile the supplied approved budget, purchase orders, invoices, platform spend, accruals, commitments, and actual results. Classify each variance as timing, scope, pricing, volume, measurement, or forecast error, and separate controllable from uncontrollable causes. Produce a reconciliation table, a short management explanation, and a rolling forecast for the remaining period with confidence levels rather than false precision. Call out missing evidence and propose the minimum follow-up needed before closing the books. Do not alter source figures silently or treat platform-reported performance as audited revenue. Self-check that opening budget plus approved changes equals the revised plan, that all line items are accounted for once, and that recommendations respect the stated spending authority.

Optional inputs: [Approved budget] [Actual spend] [Commitments] [Invoices] [Accrual policy] [Remaining period] [Spend authority]

96Create a Scenario Plan for Budget Cuts or Expansion

Use when: Marketing leadership must prepare credible responses to a sudden budget change.

Open copy-ready prompt
Act as a chief marketing officer preparing three operating scenarios for a subscription business facing uncertain funding. Build a base case, a 20% budget reduction case, and a 25% expansion case using the supplied channel economics, contractual commitments, staffing limits, customer priorities, and revenue objectives. For each scenario, show what to protect, pause, scale, or renegotiate; estimate operational effects using ranges; list leading indicators; and define a decision trigger for moving between scenarios. Distinguish reversible choices from changes that create lasting capability or brand risk. Present the analysis as a comparison table followed by an executive recommendation that remains conditional on evidence. Do not promise growth or assume linear returns. Check that each scenario is internally feasible, totals reconcile, fixed obligations are honored, and uncertain assumptions are explicitly labeled for finance review.

Optional inputs: [Current budget] [Possible change] [Contractual commitments] [Channel economics] [Revenue objective] [Staffing constraints]

97Lead a Quarterly Marketing Business Review

Use when: You need a structured leadership meeting that converts campaign results into priorities and accountability.

Open copy-ready prompt
Act as a VP of marketing facilitating a quarterly business review with demand generation, brand, product marketing, sales, finance, and customer success leaders. Design a 90-minute agenda that moves from verified performance to diagnosis, decisions, and ownership rather than becoming a slide recital. Specify the pre-read contents, decision questions, timebox for each segment, evidence standard, and a decision log template. Include prompts for discussing underperformance without blame, surfacing cross-functional dependencies, and stopping activities that no longer support strategy. End with a 30-day action register containing owner, due date, expected signal, and escalation path. Keep the meeting focused on the supplied objectives and data. Self-check that every agenda segment leads to a decision or learning outcome, that no team is assigned work without authority, and that unresolved data limitations are visible.

Optional inputs: [Quarterly results] [Strategic priorities] [Attendees] [Meeting length] [Known blockers] [Decision rights]

98Evaluate Agency and Vendor Performance

Use when: You are deciding whether to renew, restructure, or replace an external marketing partner.

Open copy-ready prompt
Act as a marketing procurement and performance lead evaluating an agency supporting paid media, creative production, and reporting. Using the supplied contract, deliverables, invoices, service levels, work samples, stakeholder feedback, and campaign evidence, create a balanced scorecard covering business contribution, quality, reliability, transparency, collaboration, risk, and value for money. Separate facts, stakeholder opinions, and your interpretation. Identify obligations that need contractual review, gaps that require evidence, and three renewal options with conditions rather than a predetermined verdict. Present the scorecard, evidence register, negotiation questions, and a 30-day remediation plan. Do not claim the agency caused or failed to cause results unless the evidence supports that conclusion. Check for double-counted metrics, undisclosed conflicts, inconsistent evaluation periods, and any recommendation that would require procurement, finance, legal, or data-protection review.

Optional inputs: [Contract] [Vendor scope] [Invoices] [Performance data] [Stakeholder feedback] [Renewal date]

99Prepare a Board-Ready Marketing Investment Memo

Use when: The board needs a concise, evidence-based explanation of marketing investment and expected learning.

Open copy-ready prompt
Act as a chief marketing officer drafting a board memo for approval of a six-month integrated campaign investment. Use only the supplied strategy, budget, historical evidence, customer research, risks, and measurement plan. Structure the memo with purpose, strategic rationale, investment table, expected outcomes expressed as ranges or learning objectives, major assumptions, downside risks, governance controls, and the specific approval requested. Distinguish committed costs from discretionary spend and avoid presenting forecasts as guarantees. Include a short list of questions directors may reasonably ask and evidence-based answers, marking any answer that requires follow-up. Keep the tone candid and commercially literate, not promotional. Before delivery, reconcile all totals, ensure claims are supported by the supplied record, test whether the measurement plan can observe the stated outcomes, and flag matters requiring finance, legal, privacy, or specialist review.

Optional inputs: [Investment request] [Strategic rationale] [Historical evidence] [Forecast ranges] [Risks] [Measurement plan] [Approval authority]

100Develop a Marketing Leadership Operating System

Use when: A growing marketing organization needs a repeatable system for prioritization, resource allocation, reporting, and learning.

Open copy-ready prompt
Act as an interim chief marketing officer designing a practical operating system for a marketing department growing from six to fifteen people across brand, lifecycle, content, demand, and operations. Define the annual planning rhythm, quarterly prioritization method, weekly operating review, monthly reporting pack, budget-control process, experiment register, and escalation norms. Make responsibilities explicit without creating unnecessary bureaucracy, and include how leadership will protect strategic work from constant urgent requests. Deliver a concise operating model, recurring-meeting calendar, decision-rights table, KPI hierarchy, and a 90-day implementation sequence. Use adaptable principles rather than assuming a particular software stack or organizational culture. Self-check that each forum has a distinct purpose, each decision has an owner, reporting can be produced from available evidence, and the system includes a respectful mechanism for challenging assumptions and stopping low-value work.

Optional inputs: [Team structure] [Annual goals] [Budget process] [Current meetings] [Reporting tools] [Decision bottlenecks]

Responsible use

Do not fabricate claims, results, endorsements, or customer evidence. Apply the appropriate privacy, consent, brand, and advertising review process before publishing campaign materials.

Prompts and Agents

Business Acquisitions AI Prompts

Explore 100 detailed prompts for acquisition strategy, target evaluation, valuation preparation, diligence, financing readiness, decision governance, and post-close value creation.

How to use these prompts

Replace bracketed placeholders with verified source material and clearly label assumptions. Use the outputs to organize analysis and questions, not as a substitute for evidence, approvals, or specialist advice.

1. Acquisition Strategy, Criteria, and Market Mapping

1Define an Acquisition Thesis

Use when: You need a disciplined starting point for identifying which businesses fit a buyer’s long-term objectives.

Open copy-ready prompt
Act as a buy-side M&A strategist advising an experienced entrepreneur who wants to acquire a profitable small business. Using the buyer profile, available capital, operating strengths, preferred geography, and stated time horizon below, develop a concise acquisition thesis. Distinguish must-have criteria from preferences, identify unacceptable risks, and explain how the thesis should guide sourcing and screening. Do not recommend a specific company or make a personalized investment recommendation. Structure the response as: thesis statement, strategic rationale, target profile, exclusion rules, sourcing implications, and five screening questions. Separate assumptions from verified facts, flag missing information, and finish by checking that every criterion is observable in seller materials or independently verifiable.

Optional inputs: [buyer profile] [capital range] [geography] [industry interests] [operating capabilities] [time horizon]

2Build a Weighted Target-Selection Scorecard

Use when: You want a repeatable method for comparing acquisition opportunities before investing substantial diligence time.

Open copy-ready prompt
Act as a corporate development analyst creating a preliminary target scorecard for a search focused on established owner-operated companies. Convert the criteria supplied below into a weighted model covering strategic fit, recurring or repeat revenue, customer concentration, margins, growth quality, management dependence, market resilience, operational complexity, and diligence readiness. Propose sensible weight ranges rather than pretending that one weighting is universally correct, and explain how a buyer could calibrate them. Present a table with criterion, definition, evidence required, suggested weight, scoring guidance from 1 to 5, and disqualifying condition. Include a worked example using clearly labeled hypothetical data, not a valuation. Self-check that the weights sum to 100%, criteria do not materially overlap, and no score can replace review by qualified finance, tax, legal, and industry specialists.

Optional inputs: [industry] [buyer objectives] [capital constraints] [geography] [risk tolerance] [candidate criteria]

3Map an Attractive Market Segment

Use when: You need to understand a fragmented market and identify where acquisition opportunities may be concentrated.

Open copy-ready prompt
Act as a market-mapping consultant supporting a lower-middle-market acquisition search. Analyze the segment described below without inventing market size, growth, competitor, or transaction facts. Define the market boundary, customer groups, demand drivers, business-model variants, geographic clusters, supplier dependencies, and likely fragmentation patterns. Then propose a practical map of target archetypes, such as regional specialists, niche leaders, recurring-service providers, or under-managed businesses with succession needs. Organize the response into market definition, segmentation framework, target archetype matrix, evidence-gathering plan, and uncertainty register. Use placeholders only for facts the user must supply, and label hypotheses clearly. Conclude with a source-verification checklist requiring primary documents, reputable databases, and specialist review before any acquisition decision.

Optional inputs: [market segment] [geography] [customer types] [known competitors] [industry sources] [buyer thesis]

4Identify Attractive Subsegments

Use when: A broad industry contains too many possibilities and you need a defensible way to narrow the search.

Open copy-ready prompt
Act as an industry strategy adviser helping a buyer prioritize subsegments within a broad acquisition market. Compare the subsegments listed below against demand stability, pricing power, customer retention, capital intensity, regulatory exposure, labor availability, technology disruption, and suitability for the buyer’s capabilities. Do not assign unsupported numerical forecasts or state that any subsegment is objectively superior. Instead, create a qualitative comparison with evidence questions and confidence levels. Deliver: an executive conclusion, a comparison table, “why now” hypotheses, red flags, and a 30-day research agenda. Distinguish structural characteristics from current-cycle conditions, and note where local knowledge matters. Self-check each conclusion against the supplied evidence, identify at least three plausible counterarguments, and state that legal, tax, financial, and sector specialists must validate material assumptions.

Optional inputs: [broad industry] [subsegments] [geography] [buyer capabilities] [known risks] [research budget]

5Design a Proprietary Sourcing Plan

Use when: You want to reach suitable owners through relationships and research rather than relying only on marketed listings.

Open copy-ready prompt
Act as a proprietary-deal sourcing director for a search fund or strategic buyer. Design a twelve-week outreach and intelligence plan for finding businesses that match the acquisition criteria below. Cover referral partners, industry associations, local networks, competitor and supplier mapping, succession signals, public-record research, direct owner outreach, and respectful follow-up cadence. Include a weekly activity schedule, target-data fields, message themes, qualification gates, and a simple pipeline status taxonomy. Do not encourage scraping private data, misrepresentation, pressure tactics, or contact with people who have not consented where consent is required. Keep outreach claims accurate and distinguish public information from confidential information. Finish with a self-audit for privacy, accuracy, conflicts of interest, and documentation of each lead’s source and verification status.

Optional inputs: [target profile] [geography] [industry] [team capacity] [outreach channels] [time horizon]

6Create a Seller-Qualification Interview Guide

Use when: You have an initial owner conversation and need to learn whether a potential target merits further diligence.

Open copy-ready prompt
Act as an M&A advisor preparing a first-call interview guide for a business owner considering a sale. Build a conversational sequence that explores the owner’s objectives, timing, decision process, revenue model, customers, employees, suppliers, systems, competitive position, recent performance, liabilities, and transition expectations. Use open-ended questions first, followed by neutral clarifiers; avoid requesting unnecessary personal information or confidential third-party data. For each topic, explain what a credible answer may indicate and what requires documentary follow-up, without labeling an owner’s response as proof of quality. Structure the guide into opening script, question sequence, listening cues, follow-up document list, and call-close language. Self-check that questions are non-coercive, legally appropriate for preliminary diligence, and framed as fact-finding rather than a promise to buy or a valuation.

Optional inputs: [business type] [seller context] [buyer thesis] [call length] [known information] [transition preferences]

7Build a Geographic Expansion Map

Use when: Location affects customer density, labor, logistics, regulation, or post-acquisition operating leverage.

Open copy-ready prompt
Act as a regional expansion strategist evaluating where an acquisition search should focus. Using the supplied business model and operating requirements, create a geographic-screening framework for comparing markets rather than declaring a best location. Assess customer density, travel or delivery economics, labor availability, wage pressure, licensing and tax considerations, supplier access, competition, demographic fit, and integration distance from the buyer’s existing operations. Present a two-stage map: broad-market filters followed by city or county-level validation. Include data sources to consult, a field-research checklist, and a decision log template. Do not fabricate local statistics, imply legal conclusions, or recommend relocation without evidence. End by testing whether the framework accounts for seasonality, cross-border rules, and communities where data may be sparse; require qualified local, tax, legal, and operational review before action.

Optional inputs: [business model] [current footprint] [candidate regions] [service radius] [labor needs] [regulatory constraints]

8Analyze Competitive Position and Defensibility

Use when: You need to determine whether a target’s market position rests on durable advantages or temporary conditions.

Open copy-ready prompt
Act as a competitive-intelligence analyst reviewing a prospective acquisition in a specialized market. Based only on the evidence provided, assess the target’s customer value proposition, switching costs, reputation, contracts, proprietary know-how, channel access, geographic density, scale benefits, and exposure to substitutes. Separate verified advantages, management assertions, and hypotheses requiring testing. Produce a competitor landscape table, defensibility assessment, evidence gaps, and five diligence tests that could confirm or weaken each claimed moat. Do not infer market leadership from marketing language, fabricate competitor metrics, or use confidential information improperly. Include a short “what would change my view” section with plausible disconfirming evidence. Self-check that every conclusion has a cited source or an explicit evidence request and that the analysis does not substitute for legal, financial, or commercial diligence.

Optional inputs: [target description] [competitor list] [customer feedback] [contracts] [public sources] [management claims]

9Establish Search Funnel and Go/No-Go Gates

Use when: An acquisition search needs clear progression rules so enthusiasm does not override evidence.

Open copy-ready prompt
Act as a search-process architect designing a stage-gated acquisition funnel. Create a practical progression from market universe to sourced lead, qualified conversation, indication of interest, signed confidentiality agreement, preliminary diligence, and confirmatory diligence. For each stage, specify required evidence, owner, estimated effort, stop conditions, and questions that must be answered before advancing. Include separate gates for strategic fit, financial quality, legal or regulatory concerns, customer concentration, owner dependence, and transaction feasibility. Use qualitative thresholds or ranges only when the user supplies a basis; otherwise label them as calibration points. Format the output as a stage table followed by a weekly review agenda and exception protocol. Self-check that no gate relies solely on a seller representation and that specialist legal, tax, accounting, and financing advice is obtained where relevant.

Optional inputs: [search thesis] [team roles] [deal size range] [diligence budget] [risk limits] [decision cadence]

10Write a Market-Mapping Research Brief

Use when: You need to commission consistent research before launching a focused acquisition campaign.

Open copy-ready prompt
Act as a private-equity research manager drafting a brief for an analyst who will map a target market for acquisition. Define the research question, scope, inclusion and exclusion rules, taxonomy, required fields for each company, source hierarchy, verification standards, and deliverables. Require the analyst to capture ownership clues, headquarters, service area, customer type, business model, approximate size only when sourced, strategic fit, succession signals, and confidence level. Specify how to handle conflicting sources, missing data, inactive companies, and possible duplicates. Request a searchable company table, segment summary, map-ready dataset, source log, and limitations memo. Prohibit invented facts, unsupported revenue estimates, and copying restricted material. Finish with a quality-control checklist verifying provenance, recency, deduplication, bias disclosure, and escalation to qualified specialists for legal, tax, finance, or regulatory questions.

Optional inputs: [market definition] [geography] [company types] [research deadline] [available databases] [required fields]

2. Target Screening, Sourcing, and First Contact

11Define an Acquisition Target Profile

Use when: You need a practical screening brief before searching for acquisition candidates.

Open copy-ready prompt
Act as a corporate development director helping a buyer define an acquisition target profile for a regional commercial-services company. Translate the buyer's strategy into measurable criteria covering revenue, profitability, recurring or repeat sales, customer concentration, geography, ownership structure, management depth, regulatory exposure, and integration complexity. Separate mandatory requirements from preferences, and explain why each criterion matters. Produce a two-part document: first, a one-page target profile suitable for sharing with brokers; second, an internal screening checklist with evidence required for each criterion. Do not invent market facts or imply that an estimate is verified. Identify which items need legal, tax, accounting, or industry-specialist review. Before finalizing, test the profile against three hypothetical candidates and note where the rules produce an ambiguous result.

Optional inputs: [Buyer strategy], [Industry], [Target geography], [Revenue range], [Must-have criteria]

12Rank Targets from a Sourcing Spreadsheet

Use when: You have a preliminary target list and need a transparent order for follow-up.

Open copy-ready prompt
Act as an M&A analyst reviewing a sourcing spreadsheet containing candidate companies and uneven public information. Rank the targets against a documented scoring model using strategic fit, financial quality, recurring revenue, customer concentration, owner transition potential, geographic fit, and apparent deal complexity. Give each factor a score from one to five, assign stated weights totaling one hundred percent, and show the calculation in a readable table. Include a confidence rating for every target so incomplete evidence does not look equivalent to verified information. Provide a short explanation for the top five, a separate list of data gaps, and a recommended research sequence. Do not estimate a valuation or make an investment recommendation. Self-check that every score cites its source column or stated assumption and that no candidate is rewarded merely for having more publicly visible information.

Optional inputs: [Spreadsheet fields], [Buyer priorities], [Scoring weights], [Minimum evidence standard], [Number of targets]

13Find Proprietary Sourcing Paths

Use when: You want to build a repeatable channel strategy for finding businesses before a broad auction.

Open copy-ready prompt
Act as a lower-middle-market sourcing advisor designing a proprietary outreach plan for a buyer seeking founder-owned logistics companies. Compare direct owner outreach, accountant referrals, industry associations, commercial lenders, attorneys, trade events, local business groups, and specialized intermediaries. For each channel, describe access difficulty, likely owner profile, expected information quality, relationship-building requirements, compliance or confidentiality concerns, and a realistic first action. Present the result as a channel matrix followed by a ninety-day activity plan with weekly milestones and tracking fields. Avoid unsupported conversion-rate claims; use qualitative ranges or label estimates clearly. Include a rule for recording referrals and respecting requests not to be contacted. Self-check that the plan does not depend on unauthorized scraping, private data, misleading identities, or promises the buyer cannot honor.

Optional inputs: [Industry], [Geography], [Buyer resources], [Time horizon], [Preferred deal size]

14Research a Target’s Ownership and Succession Signals

Use when: You need to understand who controls a company and whether they might be open to a transition.

Open copy-ready prompt
Act as a business intelligence researcher mapping the ownership structure and succession signals of a privately held manufacturing company. Use public records, corporate registries, news archives, industry publications, and professional networks to identify founders, family members, key executives, board members, and any institutional investors. Look for indicators of transition readiness, such as owner age, recent leadership changes, family involvement, or stated retirement plans. Summarize the findings in a structured dossier covering ownership history, current control, key decision-makers, and potential transition triggers. Do not rely on unverified rumors or make assumptions about personal motivations. State clearly that all findings must be verified with source documents during formal due diligence. Self-check that the dossier distinguishes between confirmed facts and reasonable inferences based on public data.

Optional inputs: [Target company name], [Industry], [Known owners], [Geographic location], [Information sources]

15Draft a Direct Outreach Letter to an Owner

Use when: You want to initiate contact with a business owner directly and professionally.

Open copy-ready prompt
Act as a corporate development executive drafting a direct outreach letter to the founder of a successful regional software company. The goal is to introduce your firm, express genuine interest in their business, and request a brief introductory conversation without applying pressure. Write a concise, three-paragraph letter that highlights specific aspects of their company you admire, explains your firm's investment philosophy and track record with founder-owned businesses, and proposes a low-stakes next step. Maintain a respectful, peer-to-peer tone. Do not make premature valuation offers, demand financial information, or use aggressive sales tactics. Include a clear statement that all conversations will be kept strictly confidential. Self-check that the letter is personalized, professional, and clearly distinguishes your approach from mass-market solicitations.

Optional inputs: [Target company name], [Founder name], [Specific company achievements], [Your firm's background], [Proposed next step]

16Prepare for an Introductory Call with a Seller

Use when: You have scheduled a first conversation with a business owner and need a structured approach.

Open copy-ready prompt
Act as an M&A advisor preparing a buyer for an introductory call with the owner of a target company. Develop a comprehensive call guide that balances relationship-building with preliminary qualification. Include a brief opening script, a list of open-ended questions to understand the owner's history and goals, and specific inquiries about the business model, customer base, and competitive position. Provide guidance on how to answer common seller questions about valuation, deal structure, and post-close integration without making premature commitments. Emphasize the importance of listening and building trust. Do not include requests for sensitive financial data or proprietary information at this stage. Self-check that the guide prioritizes understanding the seller's motivations and establishing rapport over aggressive information gathering.

Optional inputs: [Target company name], [Owner background], [Buyer's strategic goals], [Key qualification criteria], [Anticipated seller concerns]

17Evaluate a Teaser Document from a Broker

Use when: You receive an anonymous summary of a business for sale and need to decide whether to request more information.

Open copy-ready prompt
Act as a private equity associate evaluating a teaser document for a potential acquisition in the healthcare services sector. Analyze the provided information, which typically includes high-level financial metrics, business description, growth opportunities, and investment highlights, without revealing the company's identity. Identify the key strengths, potential risks, and missing information that would be critical for a preliminary decision. Draft a concise review memo that summarizes the opportunity, highlights any red flags or inconsistencies in the teaser, and lists five specific questions to ask the broker before signing a non-disclosure agreement. Do not make an investment recommendation based solely on the teaser. Self-check that the memo objectively assesses the provided information and clearly identifies the gaps that need to be addressed in the next phase.

Optional inputs: [Industry], [Reported revenue], [Reported EBITDA], [Key investment highlights], [Buyer's investment criteria]

18Review a Non-Disclosure Agreement (NDA)

Use when: You need to understand the terms of a confidentiality agreement before receiving detailed information about a target.

Open copy-ready prompt
Act as a corporate development professional reviewing a standard non-disclosure agreement provided by a seller's advisor. Analyze the document to identify the definition of confidential information, the duration of the confidentiality obligations, any non-solicitation clauses regarding employees or customers, and the permitted use of the information. Highlight any unusual or overly restrictive terms that could limit your firm's future business activities or require burdensome compliance measures. Draft a summary of the key terms and potential areas for negotiation. Explicitly state that this review is for business purposes only and that the document must be reviewed by qualified legal counsel before signing. Self-check that the summary accurately reflects the business implications of the NDA without providing formal legal advice.

Optional inputs: [NDA document text], [Seller's advisor], [Buyer's standard terms], [Key areas of concern], [Jurisdiction]

19Analyze a Confidential Information Memorandum (CIM)

Use when: You have signed an NDA and received a detailed prospectus about the target company.

Open copy-ready prompt
Act as an M&A analyst reviewing a Confidential Information Memorandum for a manufacturing company. Systematically analyze the document to extract key information regarding the company's history, management team, product lines, customer concentration, market position, historical financial performance, and projected growth. Identify the primary value drivers and the key risks or challenges presented in the CIM. Draft a comprehensive summary report that synthesizes this information, highlights any discrepancies or areas requiring deeper investigation, and provides a preliminary assessment of strategic fit. Do not accept the CIM's financial projections or valuation expectations as fact; state clearly that all claims must be verified during due diligence. Self-check that the report distinguishes between the seller's representations and your objective analysis.

Optional inputs: [Industry], [Company history], [Financial summary], [Key risks], [Buyer's strategic objectives]

20Prepare a Preliminary Information Request List

Use when: You are moving from initial review to formal due diligence and need to request specific documents.

Open copy-ready prompt
Act as a due diligence coordinator preparing a preliminary information request list for a target company in the technology sector. Develop a structured checklist of documents and data required to validate the target's financial, legal, operational, and technical status. Categorize the requests logically, such as corporate records, financial statements, material contracts, employee information, intellectual property, and IT infrastructure. Prioritize the requests to focus on the most critical items first, minimizing the burden on the seller's management team. Include clear instructions on how the information should be provided and organized in a virtual data room. State that this list is preliminary and that additional requests may follow based on initial findings. Self-check that the request list is comprehensive but tailored to the specific industry and size of the target company.

Optional inputs: [Industry], [Target company size], [Key risk areas], [Due diligence phases], [Data room platform]

3. Initial Underwriting, Valuation, and Deal Economics

21Normalize the Earnings Base

Use when: You have several years of financial statements and need a defensible starting point for acquisition underwriting.

Open copy-ready prompt
Act as a lower-middle-market M&A underwriter reviewing a target company for a preliminary indication of interest. Normalize the last three fiscal years and trailing-twelve-month earnings by separating recurring operating performance from owner compensation, personal expenses, one-time items, unusual revenue, related-party charges, and accounting inconsistencies. Do not treat an adjustment as valid merely because management proposes it; classify each item as verified, partially supported, or unverified and explain the evidence required. Present a reconciliation from reported EBITDA to adjusted EBITDA, a confidence rating, and three questions that could materially change the earnings base. State that source documents must be verified and that qualified finance, tax, and legal advisers should review conclusions.

Optional inputs: [financial statements] [general ledger] [management adjustments] [owner compensation] [industry]

22Build a Scenario-Based Valuation Range

Use when: You need to estimate valuation under uncertainty without presenting an unsupported single number.

Open copy-ready prompt
Act as a transaction adviser preparing an evidence-led valuation range for a privately held acquisition target. Use the supplied operating history, forecast, comparable transactions, customer concentration, recurring-revenue mix, growth rate, margins, and risk factors to construct downside, base, and upside cases. Apply clearly explained valuation methods appropriate to the business, such as an EBITDA multiple, revenue multiple, or discounted cash flow, but do not invent market data or assert that any company has a specific value without adequate evidence. Show assumptions in a compact table, calculate sensitivities for multiple and earnings changes, and identify which diligence findings would move the range most. End with a list of evidence still needed and a reminder that specialists must validate the analysis.

Optional inputs: [historical KPIs] [forecast] [comparable transactions] [net debt] [customer concentration] [market data]

23Analyze Quality of Revenue

Use when: Reported sales look attractive, but you need to determine how durable and transferable the revenue actually is.

Open copy-ready prompt
Act as a buy-side diligence analyst assessing the quality and durability of a target’s revenue. Reconcile reported revenue to contracts, invoices, collections, deferred revenue, refunds, credits, churn, renewals, and customer-level concentration. Distinguish recurring, repeat, project-based, pass-through, related-party, and potentially non-transferable revenue. Identify timing effects, channel dependence, unusual quarter-end activity, and revenue that may not survive a change in ownership. Produce a customer and revenue-quality matrix, a concise findings memo, and a ranked request list for missing evidence. Use cautious language where data is incomplete, never fill gaps with assumptions, and include a self-check confirming that every material conclusion is traceable to a source document or explicitly labeled as unresolved.

Optional inputs: [customer ledger] [contracts] [invoices] [collections report] [churn data] [deferred revenue schedule]

24Model Working Capital and the Closing Peg

Use when: The purchase agreement will likely depend on a normalized working-capital target or closing adjustment.

Open copy-ready prompt
Act as an M&A financial analyst designing a normalized working-capital analysis for a proposed acquisition. Review monthly accounts receivable, inventory, accounts payable, accrued expenses, deferred revenue, seasonality, collection patterns, supplier terms, and any items treated inconsistently between historical accounts and the forecast. Recommend a practical closing peg methodology based on representative periods, not a mechanically favorable average. Show the calculation by month, flag unusual balances and potential leakage, and explain how the result could affect the purchase-price adjustment. Deliver an assumptions table, a proposed peg range, and targeted diligence questions. Do not provide legal drafting; state that the final definition and dispute process require qualified legal and accounting review and that source records must be verified.

Optional inputs: [monthly balance sheets] [seasonality] [aging reports] [inventory reports] [purchase agreement draft] [proposed peg period]

25Evaluate Debt Capacity and Financing Feasibility

Use when: You are comparing financing structures and need to understand repayment capacity under realistic operating stress.

Open copy-ready prompt
Act as a senior acquisition-finance analyst evaluating whether a target can support proposed debt without relying on optimistic projections. Build a sources-and-uses overview and model debt service under base, downside, and severe-but-plausible cases using verified cash flow, interest assumptions, amortization, taxes, capital expenditures, working-capital needs, and minimum liquidity. Calculate leverage, interest coverage, debt-service coverage, and covenant headroom, identifying the assumptions that drive each result. Separate lender-style analysis from an equity buyer’s broader risk assessment. Present the output as a concise credit memo with a sensitivity table and financing questions. Do not recommend a personalized investment or financing decision; require lender, tax, accounting, and legal professionals to validate terms and source data.

Optional inputs: [purchase price] [debt terms] [cash flow] [capex] [taxes] [working-capital needs] [minimum cash]

26Compare Purchase-Price Structures

Use when: A headline price alone obscures how cash, rollover equity, earn-outs, seller notes, or working-capital adjustments change economics.

Open copy-ready prompt
Act as a corporate-development analyst comparing alternative purchase-price structures for a privately held acquisition. Evaluate all-cash, seller-note, rollover-equity, earn-out, and contingent-consideration scenarios using the same operating case and clearly stated timing assumptions. Show cash at close, deferred consideration, financing burden, dilution or rollover exposure, expected value under performance outcomes, and principal execution risks. Treat earn-outs as uncertain rather than guaranteed and identify where accounting, tax, or legal treatment could alter the comparison. Present a side-by-side term matrix followed by a buyer and seller perspective on trade-offs, without advocating a transaction for a particular person. Self-check that each scenario reconciles to total consideration and that every assumption is labeled as sourced, illustrative, or unresolved.

Optional inputs: [headline price] [cash at close] [seller note] [rollover percentage] [earn-out metrics] [interest rate]

27Stress-Test the Operating Forecast

Use when: Management’s forecast is central to valuation, but you need to test whether the deal works if growth or margins disappoint.

Open copy-ready prompt
Act as a skeptical investment-committee associate reviewing management’s five-year forecast for an acquisition target. Rebuild the model from operational drivers such as customer additions, retention, pricing, utilization, headcount, gross margin, sales productivity, and capital intensity rather than accepting top-line percentages without support. Create downside cases for slower growth, lower conversion, higher churn, margin compression, delayed hiring, and working-capital pressure. Quantify effects on EBITDA, cash generation, leverage, and implied valuation, then distinguish reversible issues from thesis-breaking risks. Deliver a forecast integrity scorecard, a sensitivity chart in text-table form, and specific evidence requests. Do not fabricate benchmarks or make an investment recommendation; note that finance and operating specialists should validate the model against source data.

Optional inputs: [management forecast] [operating KPIs] [pipeline] [retention] [headcount plan] [capital-expenditure plan]

28Assess Customer Concentration Risk

Use when: One or a few customers contribute a material share of revenue, margin, or strategic credibility.

Open copy-ready prompt
Act as a buy-side diligence professional assessing customer concentration and transferability risk in a proposed acquisition. Analyze revenue, gross profit, collections, contract duration, renewal dates, termination rights, pricing concessions, relationship ownership, and historical churn for the largest customers. Quantify the effect of losing or repricing each material account under a simple sensitivity analysis, while separating contractual facts from management expectations. Consider whether a customer’s dependence on the founder, a key employee, or a change-of-control consent creates additional risk. Return a ranked concentration-risk table, an underwriting adjustment discussion, and focused diligence questions for customer references and contracts. Do not infer customer intent without evidence, and state that legal counsel should review consent and assignment provisions before conclusions are used in a transaction.

Optional inputs: [customer revenue] [gross profit by account] [contracts] [renewal calendar] [termination rights] [reference-call notes]

29Calculate Returns Under Explicit Assumptions

Use when: You need to understand potential equity outcomes while keeping assumptions, uncertainty, and downside visible.

Open copy-ready prompt
Act as a private-equity modeling associate preparing an illustrative returns analysis for an acquisition opportunity. Using only supplied or clearly labeled illustrative assumptions, calculate entry enterprise value, sources and uses, debt paydown, interim distributions, exit enterprise value, transaction fees, taxes where applicable, and sponsor or buyer equity proceeds. Show base, downside, and upside cases with holding period, exit multiple, EBITDA growth, leverage, and dilution assumptions stated separately. Report money-on-money multiple and IRR, explain which variables matter most, and include a break-even exit analysis. Present the work as an investment-committee exhibit, not a personalized investment recommendation. Perform a reconciliation check from entry sources through exit proceeds and remind readers that qualified finance, tax, and legal advisers must verify the model.

Optional inputs: [entry EV] [equity contribution] [debt schedule] [exit year] [exit multiple] [fees] [tax assumptions]

30Prepare an Initial Underwriting Memo

Use when: Decision-makers need a disciplined go/no-go discussion before spending further diligence resources.

Open copy-ready prompt
Act as the lead analyst preparing a preliminary underwriting memo for an acquisition committee. Synthesize the target’s business model, normalized earnings, revenue quality, market position, customer and supplier concentration, valuation range, financing capacity, proposed structure, key synergies, downside cases, and unresolved diligence gaps. Separate verified facts, management representations, analyst calculations, and open hypotheses. Organize the memo into executive conclusion, transaction overview, financial analysis, valuation, risks, mitigants, diligence plan, and decision gates. Use a balanced tone and avoid stating that the company is worth a particular amount unless the evidence supports a range. Include a final red-team section listing the three assumptions most likely to be wrong and the document or test that would challenge each. Require specialist review before reliance on the memo.

Optional inputs: [CIM] [financial statements] [quality-of-earnings work] [valuation cases] [debt proposal] [diligence tracker] [committee criteria]

4. Letters of Intent, Deal Structure, and Negotiation Preparation

31LOI Term-Sheet Architect

Use when: You need to turn verified preliminary deal terms into a clear, nonbinding letter of intent for specialist review.

Open copy-ready prompt
Act as an experienced lower-middle-market M&A advisor assisting a buyer after reviewing the source documents listed below. Draft a nonbinding letter of intent for acquiring the identified business. Address transaction perimeter, purchase-price framework without asserting unsupported valuation, consideration mix, working-capital or cash-free/debt-free assumptions, escrow, seller note, diligence access, exclusivity, confidentiality, conditions, closing mechanics, and which provisions are intended to bind. Use neutral language, flag every term that depends on missing evidence, and distinguish commercial assumptions from legal drafting. Present the result as a polished LOI outline followed by an “Open Issues for Counsel” table. Self-check that no promise is treated as binding unless expressly labeled and that each material figure traces to a source document.

Optional inputs: [buyer identity and authority], [target and assets included], [source documents], [indicative price], [financing assumptions], [desired exclusivity period]

32Deal-Structure Comparison Matrix

Use when: You are comparing an asset purchase, equity purchase, and merger structure before choosing a negotiation position.

Open copy-ready prompt
Act as a transaction-structure specialist preparing an evidence-based comparison for a prospective acquisition team. Using only the supplied facts and clearly labeled general principles, compare an asset purchase, equity purchase, and statutory merger for this target. Evaluate treatment of liabilities, contracts, licenses, employees, tax considerations, financing, transition complexity, third-party consents, representations, indemnities, and post-closing integration. Do not provide personalized legal or tax advice; identify questions that qualified counsel and tax advisors must answer. Deliver a decision matrix with “known,” “assumption,” and “requires confirmation” labels, then provide two defensible structures and the facts that would change the ranking. Self-check that no structure is recommended solely on tax grounds and that every conclusion is tied to an identified fact or explicit assumption.

Optional inputs: [target legal form], [asset and liability schedule], [key contracts], [licenses], [employee considerations], [jurisdiction], [tax constraints]

33Seller-Financing Scenario Planner

Use when: A seller note may bridge a financing gap or align the seller with post-closing performance.

Open copy-ready prompt
Act as a corporate-finance advisor modeling seller-financing alternatives for a small-business acquisition. Build three illustrative structures using the provided purchase-price and cash-flow information: a fully amortizing note, an interest-only period followed by amortization, and a note with a contingent earn-out component. State all assumptions, including rate, term, payment frequency, subordination, security, default treatment, and any performance metric. Show annual debt service, estimated outstanding balance, and downside implications under base, weaker, and stronger operating cases. Keep the analysis educational rather than a personalized investment recommendation, and tell the user to have counsel document enforceability and tax treatment. Present assumptions, a comparison table, and negotiation questions. Self-check that contingent consideration is not double-counted and that projections are not presented as facts.

Optional inputs: [purchase price], [buyer cash], [cash-flow history], [financing gap], [proposed rate], [term], [earn-out metric]

34Working-Capital Target Negotiation Brief

Use when: Buyer and seller disagree about the normalized working-capital peg and closing adjustment mechanism.

Open copy-ready prompt
Act as a buy-side diligence lead preparing a negotiation brief on normalized working capital. Review the supplied balance sheets, monthly schedules, seasonality data, and definitions in any draft purchase agreement. Separate operating working capital from cash, debt-like items, owner-specific balances, unusual accruals, and one-time or post-signing items. Calculate a transparent historical reference range only where the data supports it, explain normalization choices, and identify disputed line items. Recommend a process for setting the peg, preparing the closing statement, resolving disputes, and preserving access to records. Do not state a definitive legal position; flag accounting and agreement language for qualified financial and legal review. Deliver an executive position, supporting schedule, seller objections with responses, and unresolved questions. Self-check that every adjustment is reproducible from source data.

Optional inputs: [monthly balance sheets], [working-capital definition], [seasonality], [draft agreement], [proposed peg], [disputed accounts]

35Representations-and-Warranties Issue Map

Use when: You need to prepare negotiation priorities for representations, warranties, disclosure schedules, and indemnification.

Open copy-ready prompt
Act as an M&A counsel’s diligence-support analyst, not a lawyer giving legal advice. Convert the supplied diligence findings into a negotiation issue map covering corporate authority, financial statements, taxes, litigation, compliance, employment, intellectual property, data privacy, customers, suppliers, real estate, environmental matters, and undisclosed liabilities. For each topic, summarize the verified fact, cite the source document or page, assess whether the issue calls for a representation, disclosure, covenant, indemnity, escrow, or price adjustment, and assign priority based on plausible exposure and evidence quality. Use cautious language and mark all proposed drafting concepts for qualified counsel. Output a sortable table plus a short list of buyer “must-have,” “tradeable,” and “walk-away” topics. Self-check that no allegation is converted into a fact and that missing schedules are explicitly identified.

Optional inputs: [diligence report], [document index], [draft purchase agreement], [known red flags], [risk tolerance], [jurisdiction]

36Exclusivity and Process Negotiation Plan

Use when: You are preparing to negotiate exclusivity, diligence access, timing, and seller conduct during the transaction process.

Open copy-ready prompt
Act as a buyer-side deal-process strategist designing a practical negotiation plan for a live acquisition. Based on the supplied timeline and counterpart concerns, propose terms for exclusivity duration, permitted seller contacts, diligence access, management meetings, data-room updates, financing cooperation, signing and closing milestones, extension mechanics, and consequences of process slippage. Distinguish business objectives from provisions requiring legal drafting, and avoid implying that exclusivity guarantees a closing. Present a one-page negotiation brief, a sequencing plan for the conversation, likely seller objections with ethical responses, and fallback positions ranked by importance. Include a communication protocol that protects confidential information and avoids contact with employees or customers without authorization. Self-check that each requested process term has an operational owner and a measurable deadline.

Optional inputs: [transaction stage], [target timeline], [seller priorities], [diligence status], [financing timetable], [confidentiality limits]

37Earn-Out Design and Dispute Controls

Use when: Part of the consideration may depend on future revenue, EBITDA, customers, or another post-closing result.

Open copy-ready prompt
Act as an M&A integration and finance specialist designing an earn-out framework that is measurable and resistant to avoidable disputes. Use the supplied historical results, proposed metric, operating plan, and seller role to draft an analytical term sheet covering metric definitions, accounting policies, baseline, targets, measurement periods, permitted business changes, information rights, interim reporting, seller conduct, buyer operating discretion, payment timing, audit rights, and dispute resolution. Show how ambiguous choices could alter outcomes, but do not predict performance or recommend a valuation without evidence. State that qualified legal, tax, and accounting advisors must review the final arrangement. Deliver a metric dictionary, worked illustrative examples, and a risk register. Self-check that the metric cannot be changed retroactively and that ordinary integration decisions are addressed without improperly guaranteeing seller results.

Optional inputs: [historical financials], [earn-out metric], [target levels], [measurement periods], [seller responsibilities], [accounting policies]

38Negotiation Concession Ladder

Use when: You need a disciplined way to exchange deal concessions without losing sight of risk and value.

Open copy-ready prompt
Act as a seasoned acquisition negotiator coaching a buyer before a term-sheet meeting. From the verified facts and stated objectives below, create a concession ladder covering price, payment timing, seller note terms, escrow, indemnity caps and baskets, working-capital methodology, exclusivity, transition services, noncompetition terms where lawful, and closing conditions. Rank each item by buyer value, seller value, implementation cost, and evidence-supported risk; define an opening position, target, and fallback without fabricating market norms. Include “only trade for” conditions so concessions are reciprocal rather than unilateral. Provide a meeting agenda, concise language for presenting each trade, and a stop-and-escalate list for counsel or advisors. Self-check that no concession assumes enforceability, tax treatment, or regulatory approval that has not been verified.

Optional inputs: [buyer objectives], [seller objectives], [verified risks], [current terms], [approval limits], [walk-away conditions]

39Financing-Condition and Closing-Risk Review

Use when: The proposed structure depends on acquisition financing, lender approval, or conditions that could delay closing.

Open copy-ready prompt
Act as an acquisition-finance coordinator reviewing the proposed deal structure against the lender materials and transaction timeline provided. Identify each financing condition, required deliverable, approval dependency, covenant concern, collateral issue, and potential mismatch between the LOI and likely definitive documents. Map dependencies among lender underwriting, diligence, third-party consents, insurance, financial statements, and closing funds. Do not promise financing availability or advise the user to commit capital; flag decisions for qualified finance, legal, and tax professionals. Output a critical-path table, risk-ranked issues, owner and due-date assignments, and negotiation language for preserving reasonable financing and diligence conditions. Self-check that dates are labeled as proposed, every dependency has an evidence source, and no missing lender requirement is silently assumed away.

Optional inputs: [term sheet], [lender checklist], [target financials], [consent list], [proposed signing date], [closing date]

40Final Negotiation Readiness Pack

Use when: You need an integrated, evidence-based briefing before seeking approval to sign an LOI or advance to definitive documentation.

Open copy-ready prompt
Act as the lead advisor assembling a negotiation-readiness pack for an acquisition committee. Synthesize the supplied diligence summary, draft LOI, financial analysis, financing update, and stakeholder notes into a concise briefing. Include the proposed deal thesis without unsupported valuation claims, key assumptions, verified facts versus open questions, principal risks, decision rights, negotiation objectives, fallback positions, approval gates, and a prioritized list of documents still required. Make clear that source documents must be independently verified and that qualified legal, tax, finance, employment, and other specialists should review matters within their expertise. Use a two-page executive brief followed by a decision log and pre-signing checklist. Self-check for internal consistency across price, structure, timing, and conditions, and mark every conclusion that depends on an unverified assumption.

Optional inputs: [diligence materials], [draft LOI], [financial model], [financing status], [committee criteria], [advisor comments]

5. Commercial, Financial, and Operational Due Diligence

41Revenue Quality and Customer Concentration Analysis

Use when: you need to assess the sustainability and risk profile of a target company's revenue base before acquisition.

Open copy-ready prompt
You are a commercial due diligence specialist evaluating an acquisition target. Your task is to analyze the quality, concentration, and sustainability of the company's revenue streams by examining customer contracts, payment histories, and retention metrics. Verify all findings against source documents including customer lists, revenue ledgers, and contract files. Focus on identifying the top ten customers by revenue, calculating their percentage of total sales, assessing contract renewal rates, and flagging any month-to-month or at-risk relationships. Produce a structured revenue quality memo that includes a customer concentration table, churn analysis, and a risk-weighted revenue forecast for the next twelve months. Cross-check your calculations and ensure all percentages sum correctly. Note that this analysis supports decision-making but does not replace consultation with qualified financial advisors or legal counsel regarding the transaction.

Optional inputs: [Company name], [Customer list file], [Revenue ledger], [Contract terms], [Analysis period]

42Working Capital and Cash Conversion Cycle Review

Use when: you are evaluating the operational efficiency and liquidity requirements of a business acquisition target.

Open copy-ready prompt
You are a financial due diligence analyst preparing a working capital assessment. Your assignment is to calculate the target company's working capital position, cash conversion cycle, and normalized working capital requirement using the most recent twelve months of financial data. Verify all figures against audited or management-prepared financials, accounts receivable aging reports, inventory records, and accounts payable schedules. Compute days sales outstanding, days inventory outstanding, and days payable outstanding, then determine the net cash conversion cycle. Identify any seasonal patterns, one-time adjustments, or non-operating items that distort the baseline. Deliver a working capital analysis report with a summary table, trend charts for each component, and a recommended working capital peg for the purchase agreement. Reconcile all line items to source documents and flag any discrepancies. Remember that users must verify all findings with qualified accountants and transaction advisors before finalizing deal terms.

Optional inputs: [Target company name], [Financial statements], [AR aging report], [Inventory records], [AP schedule], [Analysis period]

43EBITDA Normalization and Quality of Earnings

Use when: you need to adjust reported earnings to reflect the true economic performance of an acquisition target.

Open copy-ready prompt
You are a quality of earnings consultant engaged to normalize the target's EBITDA. Your objective is to identify and quantify all non-recurring, non-operating, and owner-specific expenses that should be added back, as well as any understated costs or deferred expenses that should be deducted. Review the profit and loss statements, general ledger detail, and supporting invoices for the trailing twelve months. Common adjustments include owner compensation above market rates, personal expenses, one-time legal fees, and deferred maintenance. Produce a detailed quality of earnings schedule with line-by-line adjustments, supporting documentation references, and a bridge from reported EBITDA to normalized EBITDA. Include a confidence rating for each adjustment and a summary narrative explaining your methodology. Cross-check all figures and ensure the adjusted EBITDA reconciles to the underlying financials. This analysis informs valuation but does not constitute investment advice; users must consult qualified financial and tax professionals before proceeding.

Optional inputs: [Company name], [P&L statements], [General ledger], [Owner expenses list], [Trailing period]

44Vendor and Supplier Dependency Assessment

Use when: you need to evaluate supply chain risks and vendor concentration in a potential acquisition.

Open copy-ready prompt
You are an operational due diligence advisor analyzing vendor relationships for an acquisition target. Your task is to identify all critical suppliers, assess the company's dependency on each, and evaluate the risk of supply disruption or price increases post-transaction. Examine vendor contracts, purchase order histories, payment terms, and any exclusivity or minimum purchase agreements. Calculate the percentage of total cost of goods sold attributable to the top five vendors and determine whether alternative suppliers exist. Produce a vendor dependency matrix that ranks each supplier by criticality, contract status, relationship strength, and replaceability. Include a risk mitigation plan for high-dependency vendors and note any upcoming contract renewals or price renegotiations. Verify all data against source documents and flag any verbal agreements or undocumented arrangements. Users must confirm findings with legal and procurement specialists and conduct independent supplier due diligence before closing.

Optional inputs: [Target company], [Vendor contracts], [Purchase history], [COGS breakdown], [Industry sector]

45Employee Roster and Compensation Benchmarking

Use when: you are reviewing the target company's workforce structure and compensation practices as part of acquisition due diligence.

Open copy-ready prompt
You are a human capital due diligence consultant evaluating the target's employee base. Your assignment is to analyze the current employee roster, compensation structure, benefits packages, and turnover rates to identify retention risks and post-acquisition integration costs. Review organizational charts, payroll records, employment agreements, and benefits summaries for all employees. Compare total compensation by role against industry benchmarks for the target's geography and sector. Identify key personnel whose departure would materially impact operations, and note any change-of-control provisions, retention bonuses, or unvested equity. Deliver an employee analysis report with a headcount summary table, compensation benchmarking charts, a key person risk assessment, and estimated integration costs including any required adjustments to bring compensation in line with market rates. Ensure all data is anonymized appropriately and verify figures against source documents. This analysis must be reviewed by qualified HR and legal professionals, and users should not make employment decisions based solely on this report.

Optional inputs: [Company name], [Employee roster], [Payroll records], [Benefits summary], [Industry], [Geography]

46Customer Contract Terms and Revenue Recognition Review

Use when: you need to validate the enforceability and accounting treatment of customer contracts in an acquisition target.

Open copy-ready prompt
You are a commercial and accounting due diligence specialist reviewing customer contracts. Your task is to examine a representative sample of the target's top customer agreements to verify contract terms, revenue recognition policies, and compliance with accounting standards. Pull contracts representing at least seventy-five percent of annual revenue and check for payment terms, termination clauses, auto-renewal provisions, performance obligations, and any contingent liabilities. Assess whether the company's revenue recognition practices align with GAAP or IFRS requirements and identify any aggressive or non-standard treatments. Produce a contract terms summary table showing key provisions by customer, a revenue recognition compliance memo, and a list of any contracts requiring amendment or renegotiation post-close. Cross-reference all findings to the underlying signed agreements and note any missing or incomplete documentation. Users must have all findings reviewed by qualified accountants and legal counsel before finalizing the transaction.

Optional inputs: [Target company], [Customer contracts folder], [Revenue recognition policy], [Accounting standard], [Sample size]

47Capital Expenditure and Deferred Maintenance Analysis

Use when: you are assessing the condition of physical assets and future capital requirements for an acquisition target.

Open copy-ready prompt
You are an operational due diligence analyst evaluating capital expenditures and asset condition. Your objective is to review the target's historical capital spending, identify any deferred maintenance or upcoming replacement needs, and estimate the normalized annual capital expenditure required to sustain operations. Examine fixed asset registers, maintenance logs, recent inspection reports, and capital budgets for the past three years. Conduct site visits if possible and interview facility managers to identify equipment nearing end-of-life or requiring significant repair. Produce a capital expenditure analysis report with a historical spending table, a deferred maintenance schedule with cost estimates, and a forward-looking annual capex budget. Include photos or inspection summaries for major assets and flag any safety or regulatory compliance issues. Reconcile all figures to source documents and note any discrepancies. This analysis informs purchase price adjustments and integration planning but must be validated by qualified engineers, appraisers, and financial advisors before closing.

Optional inputs: [Company name], [Fixed asset register], [Maintenance logs], [Inspection reports], [Facility locations]

48Legal and Regulatory Compliance Audit

Use when: you need to identify legal, regulatory, and compliance risks in a business acquisition target.

Open copy-ready prompt
You are a legal due diligence consultant conducting a compliance audit. Your task is to review the target company's adherence to applicable laws, regulations, licenses, permits, and industry standards, and to identify any outstanding litigation, regulatory actions, or compliance gaps. Examine corporate records, business licenses, environmental permits, employment records, intellectual property registrations, and any correspondence with regulatory agencies. Check for pending or threatened lawsuits, government investigations, or unresolved disputes. Produce a legal and compliance risk report organized by category—corporate, employment, environmental, intellectual property, and regulatory—with a summary table of findings, risk ratings, estimated remediation costs, and recommended pre-close conditions or post-close actions. Verify all information against source documents and note any missing or expired licenses. This report supports transaction planning but does not constitute legal advice; users must engage qualified legal counsel to review all findings and advise on transaction structure and risk mitigation.

Optional inputs: [Target company], [Corporate records], [Licenses and permits], [Litigation summary], [Industry], [Jurisdiction]

49Technology Stack and IT Infrastructure Assessment

Use when: you are evaluating the technology systems and IT capabilities of an acquisition target.

Open copy-ready prompt
You are an IT due diligence specialist assessing the target's technology environment. Your assignment is to inventory all software applications, hardware assets, IT infrastructure, and technology vendors, then evaluate the scalability, security, and integration readiness of the current stack. Review software licenses, hosting agreements, IT service contracts, network diagrams, and cybersecurity policies. Identify any end-of-life systems, unsupported software, or technical debt that will require investment post-acquisition. Assess data security practices, backup and disaster recovery plans, and compliance with relevant standards such as SOC 2, ISO 27001, or GDPR. Deliver a technology assessment report with an inventory table, a risk and obsolescence matrix, estimated upgrade or replacement costs, and a prioritized IT integration roadmap. Include screenshots or architecture diagrams where helpful and verify all license counts and contract terms against source documents. Users must have this analysis reviewed by qualified IT and cybersecurity professionals and should conduct independent security assessments before closing.

Optional inputs: [Company name], [Software inventory], [IT contracts], [Network diagram], [Security policies], [Compliance requirements]

50Integration Planning and Synergy Validation

Use when: you need to develop a post-acquisition integration plan and validate projected cost synergies or revenue opportunities.

Open copy-ready prompt
You are a post-merger integration consultant preparing an integration roadmap. Your task is to outline the key workstreams, timelines, and resource requirements for integrating the target company, and to validate the feasibility of any cost synergies or revenue synergies projected in the investment thesis. Review the acquisition rationale, organizational structures, operational processes, technology systems, and vendor contracts for both the acquirer and target. Identify overlapping functions, redundant systems, and consolidation opportunities, then estimate achievable savings with supporting assumptions. Develop a detailed integration plan organized by functional area—finance, operations, sales, IT, HR—with milestones, owners, dependencies, and success metrics. Include a synergy validation table showing projected savings by category, confidence levels, implementation costs, and net benefit. Cross-check all assumptions against due diligence findings and note any execution risks or dependencies. This plan supports transaction approval and post-close execution but must be reviewed by qualified integration specialists, and users should adjust projections based on actual post-close conditions.

Optional inputs: [Acquirer name], [Target name], [Investment thesis], [Org charts], [Synergy projections], [Integration timeline]

6. Customer, Market, and Management Diligence

51Customer Concentration Risk Assessment

Use when: you need to evaluate revenue dependency on a small number of customers and assess the stability of the acquisition target's customer base.

Open copy-ready prompt
You are a business acquisition analyst conducting customer concentration risk analysis for a potential acquisition. You have received a customer revenue breakdown showing the top 20 customers by revenue contribution over the past three fiscal years. Your task is to calculate concentration ratios (top 5, top 10, and top 20 customers as a percentage of total revenue), identify any customers representing more than 10% of annual revenue, assess year-over-year retention of major accounts, and flag any recent losses of significant customers. Present your findings in a risk matrix that categorizes concentration risk as low, moderate, high, or critical based on industry benchmarks. Include specific recommendations for customer diversification strategies and contract renegotiation priorities. Before finalizing, verify that your concentration calculations account for any parent-subsidiary relationships among listed customers and that your risk assessment considers typical concentration levels for the target's industry sector.

Optional inputs: [Customer revenue data], [Industry sector], [Fiscal years analyzed], [Contract terms]

52Market Position and Competitive Landscape Analysis

Use when: you are evaluating the target company's competitive standing, market share, and differentiation within its industry.

Open copy-ready prompt
You are a market research consultant supporting an acquisition due diligence team. You have been provided with the target company's market positioning materials, competitor intelligence, and industry reports. Your assignment is to map the competitive landscape by identifying direct and indirect competitors, estimate the target's market share within its primary segments, analyze competitive advantages and vulnerabilities, and assess barriers to entry that protect or threaten the target's position. Deliver a competitive positioning report that includes a visual competitive matrix, SWOT analysis specific to market dynamics, and a narrative assessment of the target's defensibility against competitive pressure. Your report must distinguish between the target's self-reported market position and your independent verification through third-party sources. Confirm that your market share estimates are supported by credible industry data and that you have disclosed any gaps in available competitive intelligence.

Optional inputs: [Target company materials], [Industry reports], [Competitor list], [Market segment definitions]

53Customer Satisfaction and Retention Analysis

Use when: you need to assess the quality of customer relationships and predict future revenue stability based on satisfaction metrics.

Open copy-ready prompt
You are a customer experience analyst engaged in acquisition due diligence. You have access to customer satisfaction surveys, Net Promoter Score (NPS) data, churn rates, customer support ticket histories, and renewal rates for the past 24 months. Your objective is to analyze trends in customer satisfaction, calculate cohort-based retention rates, identify common complaint themes and resolution effectiveness, and correlate satisfaction metrics with revenue retention. Produce a customer health scorecard that segments customers by satisfaction level, tenure, and revenue contribution, and highlights any red flags such as declining NPS, rising churn among high-value accounts, or unresolved systemic issues. Your analysis must separate voluntary churn from involuntary churn and account for seasonal patterns. Double-check that your retention calculations exclude one-time purchasers where ongoing relationships are not expected and that your findings are based on actual data rather than management assertions.

Optional inputs: [NPS data], [Churn rates], [Survey results], [Support ticket data], [Analysis period]

54Management Team Capability and Succession Planning Review

Use when: you are assessing the strength, stability, and depth of the target company's leadership team as part of acquisition diligence.

Open copy-ready prompt
You are an organizational development consultant conducting management assessment for an acquisition. You have been given organizational charts, executive biographies, compensation structures, employment agreements, and recent performance reviews for the senior leadership team. Your task is to evaluate each key executive's qualifications, tenure, performance track record, and retention risk post-acquisition. Assess the depth of the management bench by identifying critical roles with and without clear successors, and review any existing succession plans for completeness and realism. Deliver a management capability report that includes individual executive profiles, an organizational depth analysis, identified single points of failure, and recommendations for retention incentives or leadership transitions. You must verify executive credentials and employment history through independent sources where possible and consult qualified legal counsel regarding the enforceability of non-compete and retention agreements. Ensure your assessment distinguishes between documented capabilities and unverified claims.

Optional inputs: [Organizational charts], [Executive bios], [Employment agreements], [Performance reviews], [Succession plans]

55Sales Pipeline and Revenue Predictability Evaluation

Use when: you need to validate the target's forward revenue projections by examining the quality and conversion rates of its sales pipeline.

Open copy-ready prompt
You are a sales operations analyst supporting acquisition due diligence. You have received CRM exports showing the current sales pipeline, including opportunity stages, deal sizes, probability weightings, expected close dates, and historical win rates by stage and sales representative. Your assignment is to assess pipeline quality by analyzing stage progression velocity, comparing weighted pipeline to historical conversion rates, identifying stalled or aging opportunities, and validating the realism of probability assignments. Create a pipeline health report that forecasts near-term revenue based on your independent probability assessment, highlights any discrepancies between management projections and pipeline support, and identifies risks to revenue achievement. Your analysis should segment pipeline by product line, customer segment, and sales channel. Before finalizing, confirm that your conversion rate assumptions are based on at least 12 months of historical data and that you have adjusted for any known changes in sales strategy or market conditions.

Optional inputs: [CRM pipeline data], [Historical win rates], [Sales team structure], [Product lines], [Forecast period]

56Customer Contract Terms and Revenue Quality Analysis

Use when: you are reviewing the legal and financial terms of customer agreements to assess revenue stability and identify unfavorable obligations.

Open copy-ready prompt
You are a commercial contracts analyst conducting due diligence on customer agreements for a potential acquisition. You have been provided with a representative sample of customer contracts covering at least 70% of annual recurring revenue. Your task is to extract and analyze key terms including contract duration, renewal provisions, pricing escalation clauses, termination rights, service level commitments, penalty provisions, and any unusual customer-favorable terms. Produce a contract terms summary matrix that categorizes contracts by risk level, identifies contracts with below-market pricing or unfavorable termination rights, calculates weighted average contract duration, and flags any contracts requiring consent for change of control. Your analysis must quantify revenue at risk from contracts with near-term expirations or broad termination rights. You must verify your findings against actual contract language rather than relying on summaries, and you must consult qualified legal counsel to interpret any ambiguous or complex provisions before finalizing your risk assessment.

Optional inputs: [Customer contracts], [Revenue data], [Contract sample criteria], [Industry benchmarks]

57Market Trends and Growth Opportunity Assessment

Use when: you need to validate the target's growth projections by analyzing broader market trends and expansion opportunities.

Open copy-ready prompt
You are an industry analyst conducting market opportunity assessment for an acquisition target. You have access to industry research reports, market size estimates, growth forecasts, regulatory trend analyses, and the target's strategic growth plans. Your objective is to evaluate the realism of the target's projected growth by assessing overall market growth rates, the target's ability to gain share, adjacency expansion opportunities, and potential headwinds from regulatory, technological, or competitive changes. Deliver a market opportunity report that includes total addressable market (TAM) sizing for current and planned offerings, a bottoms-up growth scenario analysis, identification of growth enablers and inhibitors, and a comparison of the target's growth assumptions to industry benchmarks. Your analysis must distinguish between organic growth potential and growth requiring significant additional investment. Verify that your market size estimates are derived from credible third-party sources and that you have disclosed the range of uncertainty in your projections rather than presenting single-point estimates as fact.

Optional inputs: [Industry reports], [Target growth plans], [Market segments], [Regulatory environment], [Projection period]

58Key Customer Relationship and Dependency Mapping

Use when: you need to understand the depth and stability of relationships with the target's most important customers through direct engagement or reference checks.

Open copy-ready prompt
You are a business development consultant facilitating customer reference interviews as part of acquisition due diligence. You have identified the target's top 15 customers by revenue and have been authorized to conduct confidential reference discussions with a subset of these accounts. Your task is to prepare a structured interview guide covering customer satisfaction, relationship strength, purchasing decision factors, awareness of alternatives, likelihood of continued partnership post-acquisition, and any unmet needs or concerns. Following the interviews, synthesize your findings into a customer relationship report that assesses the strength and transferability of key relationships, identifies any personal dependencies on target company personnel, and evaluates the risk of customer attrition following ownership change. Your report must protect customer confidentiality and present findings in aggregate where individual attribution would breach trust. Before conducting interviews, confirm that appropriate non-disclosure agreements are in place and that you have obtained proper authorization from both the target company and the prospective customers.

Optional inputs: [Top customer list], [Interview authorization], [NDA status], [Relationship history], [Interview guide template]

59Pricing Strategy and Margin Sustainability Review

Use when: you are analyzing whether the target's current pricing is sustainable and competitive, or whether margin pressure is likely post-acquisition.

Open copy-ready prompt
You are a pricing strategy consultant engaged in acquisition due diligence. You have received the target's pricing policies, discount matrices, historical pricing trends, competitor pricing intelligence, and gross margin data by product line and customer segment. Your assignment is to assess whether current pricing is at, above, or below market rates, analyze discount patterns for consistency and rationale, identify any unprofitable customer relationships or product lines, and evaluate the sustainability of gross margins under various competitive scenarios. Produce a pricing analysis report that includes competitive price positioning by product category, discount utilization and effectiveness metrics, margin bridge analysis showing key drivers of margin change over time, and recommendations for pricing optimization opportunities or risks. Your analysis must account for differences in product mix, customer size, and contract terms when comparing pricing across segments. Verify that your competitive pricing comparisons are based on like-for-like product specifications and that you have consulted qualified finance professionals to validate your margin calculations and assumptions.

Optional inputs: [Pricing policies], [Competitor pricing data], [Margin analysis], [Product categories], [Customer segments]

60Management Interviews and Cultural Fit Assessment

Use when: you need to evaluate the target's leadership team through direct interaction and assess cultural compatibility with the acquiring organization.

Open copy-ready prompt
You are an executive assessment consultant conducting management interviews for an acquisition. You have scheduled structured interviews with the CEO, CFO, and other key executives of the target company. Your task is to assess each leader's strategic thinking, operational capabilities, communication style, alignment with the acquisition thesis, and cultural fit with the acquiring organization. Prepare interview guides tailored to each role that probe decision-making approaches, handling of past challenges, vision for the business, and openness to integration. Following the interviews, deliver individual executive assessments and an overall management team evaluation that addresses leadership quality, team cohesion, retention risk, and cultural integration challenges. Your assessment must be based on observable behaviors and specific examples rather than subjective impressions, and you must identify any areas requiring further verification through reference checks or background investigations. Ensure that your interview approach complies with employment law and that you have coordinated with qualified HR and legal advisors regarding permissible questions and assessment criteria.

Optional inputs: [Interview schedule], [Executive roles], [Acquiring company culture profile], [Interview guide templates], [Assessment criteria]

7. Financing Readiness, Lender Materials, and Closing Coordination

61Lender-Ready Financing Readiness Assessment

Use when: You need to determine whether an acquisition package is sufficiently organized and supportable before approaching lenders.

Open copy-ready prompt
Act as a senior acquisition-finance analyst helping a buyer prepare for lender outreach on a proposed small-business acquisition. Review the supplied financial statements, tax returns, debt schedule, seller materials, and transaction assumptions. Assess financing readiness without recommending a personal investment decision or asserting a valuation. Identify missing evidence, inconsistent figures, add-backs requiring support, debt-service concerns, collateral questions, and items likely to trigger lender follow-up. Organize the response into: readiness rating with rationale, verified facts, open questions, document gaps, lender-facing risks, and a prioritized 14-day preparation list. Separate source-documented facts from assumptions. Self-check that every concern points to a specific document or calculation and that legal, tax, and financing conclusions are flagged for qualified professional review.

Optional inputs: [financial statements] [tax returns] [debt schedule] [purchase structure] [seller add-backs] [target lender criteria]

62Acquisition Financing Request Summary

Use when: You want a concise, evidence-based financing brief that a lender can review before receiving the full diligence file.

Open copy-ready prompt
Act as a commercial lending relationship manager drafting a preliminary financing request for a buyer acquiring an operating company. Using only the provided records, prepare a two-page-style lender summary covering borrower and sponsor background, target business, proposed transaction, requested facility, sources and uses, historical performance, normalized cash flow, repayment source, collateral described in the records, and key risks with mitigants. Do not invent credit scores, collateral values, management experience, lender appetite, or approval odds. Mark each figure as reported, calculated, or unverified, and show the period for every financial metric. Return an executive snapshot, sources-and-uses table, repayment narrative, diligence questions, and document index. Self-check that sources equal uses and that no unsupported claim is presented as a fact; recommend finance and legal review before circulation.

Optional inputs: [buyer profile] [target financials] [requested loan amount] [equity contribution] [sources and uses] [collateral records]

63Sources-and-Uses and Capital Stack Reconciliation

Use when: Transaction funding assumptions are spread across proposals, term sheets, and spreadsheets and need one reconciled view.

Open copy-ready prompt
Act as a transaction finance associate reconciling the proposed capital stack for a business acquisition. Compare the purchase agreement, lender term sheet, seller note terms, equity plan, rollover amount, fees, working-capital funding, and closing-cost estimates supplied in the source files. Build a sources-and-uses schedule, identify arithmetic or definition mismatches, distinguish committed funds from indicative proposals, and calculate the residual funding gap only when the underlying figures permit it. Do not fill gaps with market-standard assumptions or recommend leverage. Present the result as a reconciliation table followed by discrepancy notes, required confirmations, and scenario sensitivities for clearly labeled changes in purchase consideration or fees. Self-check that every line has a source, units and timing are consistent, and total sources equal total uses under each scenario.

Optional inputs: [purchase price] [loan term sheet] [seller note] [buyer equity] [rollover equity] [fees] [working-capital reserve]

64Quality of Earnings Evidence Pack for Lenders

Use when: A lender needs a disciplined explanation of normalized earnings and the evidence supporting proposed adjustments.

Open copy-ready prompt
Act as a quality-of-earnings professional preparing a lender support memorandum for an acquisition. Analyze the supplied income statements, general-ledger extracts, bank records, tax filings, and management explanations. For each proposed normalization, state the amount, period, accounting treatment, business rationale, supporting evidence, recurrence risk, and whether the adjustment is fully supported, partially supported, or unsupported. Reconcile reported EBITDA to the proposed lender-adjusted figure without presenting the adjustment as accepted by a lender. Use sections for scope and limitations, bridge table, adjustment-by-adjustment findings, unresolved requests, and questions for management. Avoid inventing industry benchmarks or treating seller assertions as proof. Self-check every adjustment against at least one cited source and explicitly flag issues requiring CPA, tax, or lender confirmation.

Optional inputs: [P&L] [general ledger] [bank statements] [tax returns] [management explanations] [proposed adjustments]

65Debt-Service Capacity Scenario Memo

Use when: You need to show how documented operating results behave under transparent repayment scenarios without predicting approval.

Open copy-ready prompt
Act as a financial modeling specialist preparing a debt-service scenario memo for an acquisition financing file. Using the supplied historical results, documented adjustments, proposed debt terms, taxes, capital expenditures, working-capital needs, and owner compensation assumptions, construct clearly labeled base, downside, and stress cases. Show the formulas and period definitions for cash flow available for debt service, scheduled principal and interest, and coverage metrics; identify which inputs are verified and which are assumptions. Do not declare the transaction affordable, safe, or suitable for the buyer, and do not substitute generic lender thresholds for the lender’s actual criteria. Present an assumptions register, scenario table, interpretation, sensitivities, and questions requiring confirmation. Self-check that debt service follows the stated amortization and that no metric uses mixed annual and monthly periods.

Optional inputs: [historical cash flow] [loan amount] [interest rate] [amortization] [tax assumptions] [capex] [working-capital needs]

66Lender Due-Diligence Data Room Index

Use when: You are assembling a lender data room and want a practical index that exposes missing or stale materials early.

Open copy-ready prompt
Act as a lender diligence coordinator designing a secure data-room index for a small-business acquisition. Based on the transaction facts and files provided, create a categorized checklist covering borrower documents, ownership and organizational records, target financials, tax materials, debt and liens, contracts, leases, insurance, employees and benefits, intellectual property, litigation, environmental or regulatory items where relevant, collateral, purchase documents, and closing deliverables. For each item, include an owner, requested date range, status, acceptable evidence, confidentiality level, and escalation note. Do not request unnecessary personal data or expose account numbers, passwords, or other secrets; recommend redaction and permission controls. Return the index as a table plus a short sequencing note. Self-check that every lender question maps to an indexed item and that sensitive documents have a handling instruction.

Optional inputs: [lender checklist] [transaction structure] [existing data-room index] [entity chart] [closing timetable] [privacy requirements]

67Term Sheet Comparison and Confirmation Matrix

Use when: Multiple financing proposals contain different economics, covenants, conditions, or timing assumptions that must be compared accurately.

Open copy-ready prompt
Act as an acquisition attorney’s finance-side analyst comparing the supplied lender term sheets and financing emails. Extract and normalize facility type, principal, pricing, fees, amortization, maturity, prepayment terms, guarantees, collateral, covenants, reporting duties, conditions precedent, exclusivity, expiration dates, and funding timing. Preserve each lender’s wording where ambiguity matters, distinguish binding provisions from non-binding indications, and never infer missing terms. Produce a side-by-side comparison, a list of material differences, clarification questions in lender-ready language, and a confirmation log for buyer and counsel. Do not recommend a lender or provide personalized legal or financial advice. Self-check every extracted term against its source document and flag calculations that depend on variable rates, dates, or definitions for qualified finance and legal review.

Optional inputs: [term sheets] [commitment letters] [lender emails] [purchase agreement] [buyer priorities] [target closing date]

68Closing Conditions and Funds-Flow Tracker

Use when: Closing depends on many lender, seller, buyer, and third-party deliverables with different owners and deadlines.

Open copy-ready prompt
Act as a closing project manager coordinating an acquisition involving senior debt, seller financing, and buyer equity. Convert the supplied purchase agreement, lender commitment, escrow instructions, organizational documents, payoff letters, insurance requirements, and counsel checklists into a single conditions-and-funds-flow tracker. Include each deliverable, responsible party, dependency, due date, evidence of completion, approval authority, status, and escalation path. Separately map the expected movement of funds without requesting or reproducing bank credentials or full account numbers. Highlight conditions that appear inconsistent, expired, or unsupported, but do not declare legal sufficiency or closing certainty. Return a tracker table, critical-path narrative, 48-hour verification checklist, and unresolved issues list. Self-check that every payment has an authorized source and destination description and that counsel and lender sign-offs are explicitly identified.

Optional inputs: [purchase agreement] [commitment letter] [escrow instructions] [payoff letters] [funds-flow draft] [closing calendar]

69Financing Contingency and Extension Negotiation Brief

Use when: Financing approval or documentation is delayed and the buyer needs a fact-based brief for discussing timing protections with counsel and the seller.

Open copy-ready prompt
Act as a transaction coordinator preparing a neutral briefing note about a financing-contingency deadline. Review the purchase agreement, amendments, lender status updates, outstanding conditions, appraisal or diligence dependencies, and proposed closing dates. Summarize what the documents actually require, identify dates that need confirmation, distinguish lender-controlled delays from buyer or seller obligations, and lay out possible discussion points for counsel, such as an extension request, revised milestone schedule, or evidence package. Do not draft a deceptive excuse, threaten a counterparty, guarantee financing, or give personalized legal advice. Present the brief in four parts: documented timeline, current blockers, factual questions, and options for counsel to evaluate with risks and trade-offs. Self-check every date against a source and label all proposed language as subject to attorney review.

Optional inputs: [purchase agreement] [financing contingency] [lender updates] [open conditions] [appraisal status] [desired extension date]

70Post-Closing Financing Handoff and Compliance Calendar

Use when: A completed acquisition needs a reliable handoff from closing execution to ongoing lender, tax, and corporate compliance.

Open copy-ready prompt
Act as a post-closing integration and finance coordinator creating a 12-month compliance calendar for an acquired business. Use the executed loan documents, purchase agreement, organizational records, insurance policies, tax requirements, employee transition plan, and closing statement supplied. Catalog recurring lender reporting, covenant-testing inputs, payment dates, insurance renewals, tax filings, entity registrations, notice obligations, integration milestones, and document-retention requirements. For each entry, specify owner, source clause or document, lead time, evidence to retain, escalation trigger, and confidentiality handling. Do not interpret ambiguous covenants as settled or provide legal, tax, or investment advice; route those items to qualified counsel, accountants, or finance professionals. Return a calendar table, first-30-days checklist, responsibility matrix, and ambiguity log. Self-check that every obligation is tied to an executed source and that deadlines are calculated from the correct closing date.

Optional inputs: [executed loan documents] [closing statement] [purchase agreement] [insurance schedule] [tax calendar] [team responsibilities] [closing date]

8. Risk Review, Specialist Workstreams, and Decision Governance

71Triage Diligence Red Flags

Use when: A buyer needs to prioritize a large set of diligence findings before assigning specialist time.

Open copy-ready prompt
Act as a senior M&A diligence lead reviewing the supplied acquisition records. Identify material red flags across financial, legal, tax, commercial, operational, technology, insurance, and people matters. Classify each as critical, high, medium, or low using documented impact, likelihood, reversibility, and timing. Separate verified facts, management representations, and unanswered questions, and cite each finding to its document and page or section. Present a triage matrix, the five issues controlling the next gate, an owner, a deadline, and an evidence request for each. Do not infer valuation or recommend proceeding. Self-check that every conclusion is source-linked, conflicting evidence is visible, and missing records are not treated as negative findings.

Optional inputs: [CIM] [financial statements] [data-room index] [risk appetite] [deal timetable]

72Coordinate Specialist Workstreams

Use when: A transaction requires several advisers to work in parallel under a fixed diligence timetable.

Open copy-ready prompt
Serve as an acquisition project director creating a four-week specialist workstream plan. Cover legal, tax, quality of earnings, insurance, cybersecurity, IT, HR, environmental, commercial, and operations reviews. For each stream, specify objective, evidence required, lead specialist, dependencies, management interviews, deliverable, decision relevance, and escalation trigger. Distinguish document review from work requiring site access, third-party confirmation, or professional judgment. Present a week-by-week schedule, dependency table, and meeting cadence. Do not assume an adviser’s conclusion or provide legal, tax, finance, or investment advice. Self-check that every material risk category has an accountable owner, a dated deliverable, a defined evidence path, and a backup plan if access or specialist availability changes.

Optional inputs: [target industry] [transaction structure] [adviser roster] [closing date] [data-room contents]

73Test Quality of Earnings Adjustments

Use when: Reported EBITDA includes add-backs or normalization items that may influence financing and deal interpretation.

Open copy-ready prompt
Act as an independent quality-of-earnings reviewer assessing proposed EBITDA adjustments. Reconcile each adjustment to the general ledger, statements, contracts, payroll records, or other cited evidence. For every item, describe rationale, recurrence risk, cash impact, timing, documented tax treatment, and whether it is supported, partially supported, or unverified. Show reported EBITDA, the adjustment schedule, evidence ratings, and clearly labeled sensitivity scenarios rather than one normalized answer. Flag double counting, forward-looking synergies, personal expenses, and costs likely to return after closing. Do not calculate valuation or recommend a price. Self-check that totals tie to source statements, periods align, and unsupported management estimates remain visibly separate from verified results.

Optional inputs: [monthly P&L] [GL export] [add-back schedule] [customer contracts] [payroll detail]

74Review Change-of-Control Consents

Use when: Contracts, licenses, financing, leases, or key relationships may be affected by the proposed transaction.

Open copy-ready prompt
Work as a transaction-counsel diligence analyst, subject to qualified legal counsel’s final interpretation. Examine supplied agreements for change-of-control, assignment, consent, termination, exclusivity, minimum-volume, price-reset, guarantee, licensing, and notice provisions. For each relevant clause, provide document, section, counterparty, required action, deadline, consequence described in the agreement, and confidence level. Separate express language from questions requiring legal judgment, and show dependencies among customer, lender, landlord, supplier, and regulator consents. Present a consent matrix and closing-readiness checklist. Do not claim enforceability or advise evasion. Self-check that every obligation is traceable to source text, missing agreements are recorded as gaps, and no approval is assumed merely because management expects cooperation.

Optional inputs: [material contracts] [debt documents] [leases] [licenses] [jurisdictions] [deal structure]

75Map Tax and Structure Unknowns

Use when: Asset-versus-equity structure and jurisdictional facts remain unresolved before adviser review.

Open copy-ready prompt
Act as a transaction-tax workstream coordinator, not a tax adviser. Using only supplied facts and documents, identify questions concerning asset versus equity structure, historical tax exposure, sales and use tax, payroll tax, nexus, net operating losses, withholding, transfer taxes, and post-close integration. For each issue, state known fact, missing evidence, possible relevance, specialist needed, and question to resolve; label each observation verified, management-reported, or unverified. Organize the output into a tax diligence table, document-request list, and structure questions for qualified tax counsel. Avoid predicting tax outcomes, savings, or liability amounts. Self-check that no jurisdiction, entity, filing position, or tax attribute is assumed without documentary support and that counsel, not the analyst, determines the legal or tax conclusion.

Optional inputs: [entity chart] [tax returns] [state footprint] [draft LOI] [asset list] [tax adviser comments]

76Assess Cybersecurity Risk Acceptance

Use when: A target handles sensitive data or relies on systems whose weaknesses could affect continuity or integration.

Open copy-ready prompt
Serve as a cybersecurity diligence manager preparing a risk-acceptance memo for an acquisition committee. Evaluate supplied evidence on identity access, backups, incidents, vulnerability management, vendors, data classification, privacy obligations, continuity, and integration readiness. Do not request, reproduce, or expose passwords, tokens, personal data, or other secrets. Rank findings by business impact and evidence strength, distinguish confirmed incidents from unverified statements, and define pre-close condition, post-close remediation, monitoring, or explicit acceptance for each item. Present an executive decision table, a 30/60/90-day control plan, and questions for qualified privacy and security counsel. Do not provide exploit steps or unauthorized-access instructions. Self-check that recommendations are proportionate to evidence and residual risk has a named decision owner.

Optional inputs: [security questionnaire] [SOC reports] [incident log] [system inventory] [privacy notices] [integration plan]

77Assess Key-Person Continuity

Use when: Revenue, customer relationships, technical knowledge, or operations depend heavily on founders or a small workforce.

Open copy-ready prompt
Act as an HR diligence specialist supporting an acquisition while preserving employee confidentiality and avoiding discriminatory conclusions. Using anonymized or appropriately authorized information, map critical roles, single points of failure, succession coverage, incentive arrangements, employment status, contractor reliance, and communication needs. Separate documented facts from management perceptions and do not infer risk from protected characteristics, age, health, family status, or other sensitive attributes. Provide a role-criticality matrix, evidence gaps, lawful retention questions for qualified HR and legal review, and a transition-risk register with owner and timing. Do not recommend terminating or disadvantaging individuals. Self-check that identifiers are minimized, confidentiality controls are stated, and every proposed action is framed for specialist validation rather than employment advice.

Optional inputs: [anonymized org chart] [key-person list] [employment agreements] [succession notes] [retention budget] [integration timeline]

78Build an Investment-Committee Decision Gate

Use when: Diligence findings must become a transparent approval, pause, renegotiation, or escalation discussion.

Open copy-ready prompt
Act as an investment-committee secretary preparing a decision-gate pack for a proposed acquisition. Synthesize the verified record into transaction facts, unresolved risks, mitigants and conditions, and decision alternatives. For every material issue, show source, owner, confidence, downside scenario, timing, and whether resolution is required before signing, closing, or post-close. Present a one-page dashboard, evidence log, and questions the committee must answer. Do not issue a personalized investment recommendation, assert company valuation, or turn uncertainty into a false probability. State that legal, tax, finance, insurance, HR, and operational specialists must review their domains. Self-check that every dashboard item links to evidence, conditions are measurable, and dissenting views are retained in the decision record.

Optional inputs: [diligence reports] [LOI] [risk register] [committee criteria] [proposed conditions]

79Create a Reps-and-Indemnity Issue List

Use when: Diligence findings may require disclosure, contractual protection, escrow treatment, or a closing condition.

Open copy-ready prompt
Work as a buyer-side transaction-risk analyst preparing an issue list for qualified M&A counsel. Convert documented findings into potential disclosure, representation, warranty, indemnity, escrow, insurance, or closing-condition topics without drafting enforceable legal language. For each item, identify factual basis, affected entity or contract, documented exposure, evidence gap, counsel question, and urgency. Separate historical liability from future integration risk and ordinary uncertainty from a possible breach indicator. Include unresolved seller questions and matters that should not be characterized beyond the evidence. Do not invent coverage, caps, survival periods, or legal conclusions. Self-check that every issue cites a source document, duplicates are consolidated, and counsel controls wording and negotiation advice; state where legal, tax, finance, or insurance specialists must validate a related exposure.

Optional inputs: [diligence findings] [draft purchase agreement] [insurance proposal] [disclosure schedules] [escrow concept]

80Run a Pre-Signing Risk Challenge

Use when: The deal team needs an adversarial review to expose confirmation bias before signing or final approval.

Open copy-ready prompt
Act as an independent acquisition red-team facilitator leading a pre-signing risk challenge. Review the supplied deal thesis, diligence findings, management presentations, and proposed mitigants, then formulate the strongest evidence-based case for and against proceeding. Test assumptions about customer concentration, recurring revenue, working capital, owner dependence, regulatory exposure, technology resilience, integration capacity, and downside liquidity without inventing facts. Structure the output as thesis assumptions, challenge questions, contradictory evidence, missing tests, conditions precedent, post-close controls, and escalation items. Assign each question to a responsible specialist and specify what evidence would resolve it. Do not recommend a transaction outcome, state a valuation, or substitute for professional advice. Self-check that challenges are material, source-linked, non-repetitive, fair to the seller, and explicit about uncertainty.

Optional inputs: [investment thesis] [management deck] [diligence register] [base-case model] [approval criteria] [specialist reports]

9. Integration Planning, Day-One Readiness, and Value Creation

81Build a 100-Day Integration Blueprint

Use when: You have signed or are preparing to close an acquisition and need a sequenced integration plan that protects continuity while pursuing measurable synergies.

Open copy-ready prompt
Act as a post-merger integration director advising the buyer of a small, founder-led services company. Using the supplied deal documents and management notes, build a 100-day integration blueprint covering Day One, weeks 2–4, days 31–60, and days 61–100. Separate actions into people, customers, finance, technology, operations, compliance, and communications. For each action, name an accountable owner, dependency, decision deadline, evidence of completion, and risk if delayed. Distinguish confirmed facts from assumptions and identify items requiring legal, tax, finance, HR, or other specialist review. Present the result as a practical workplan followed by the five highest integration risks. Self-check that every recommendation traces to an input or is clearly labeled as a hypothesis.

Optional inputs: [CIM] [purchase agreement summary] [organization chart] [operating procedures] [closing date] [buyer integration capacity]

82Prepare a Day-One Readiness Checklist

Use when: Leadership needs a concise operational checklist to ensure the acquired business can function safely and professionally on the first day after closing.

Open copy-ready prompt
Serve as a transaction-readiness manager for an acquisition of a regional distribution business. Create a Day-One checklist organized by “must be complete before close,” “first morning,” “first week,” and “escalate immediately.” Cover authority to operate, payroll continuity, banking access, customer and supplier communications, insurance, licenses, cybersecurity, data access, inventory controls, employee questions, and records retention. Include a responsible owner, verification method, status field, and fallback action for each item. Do not assume that contracts, permissions, systems, or benefits transfer automatically; flag those requiring confirmation from qualified legal, tax, HR, insurance, or IT professionals. Return a table plus a short executive escalation protocol. Self-check for missing dependencies, duplicate tasks, and any step that could interrupt customer service.

Optional inputs: [closing checklist] [critical contracts] [system inventory] [benefits summary] [license register] [key contact list]

83Design the Integration Governance Model

Use when: Multiple executives and functional teams need clear decision rights, escalation paths, and meeting rhythms during post-close integration.

Open copy-ready prompt
Act as a PMI governance adviser for a buyer integrating a specialty manufacturing company into a larger operating group. Design a lightweight governance model with an executive steering committee, integration management office, functional workstreams, and site-level owners. Define each group’s mandate, membership by role, decision rights, meeting cadence, required inputs, escalation thresholds, and documentation standard. Include a RACI-style decision matrix for staffing changes, customer commitments, system migration, capital spending, supplier changes, and policy adoption. Preserve acquired-company expertise and require confidential handling of employee and commercial information. Mark decisions that need qualified legal, tax, finance, HR, safety, or regulatory review. Format the answer as a governance charter followed by a first-30-days calendar. Self-check that no decision has two conflicting accountable roles.

Optional inputs: [buyer operating model] [target organization chart] [integration objectives] [delegation-of-authority policy] [regulatory environment]

84Map Customer and Revenue Retention Risks

Use when: The acquisition depends on recurring customers, referrals, or key accounts that could react negatively to ownership or service changes.

Open copy-ready prompt
Work as a customer-retention strategist supporting the acquisition of a B2B software and implementation firm. Analyze the provided customer concentration, renewal calendar, service-level commitments, account notes, and transition concerns. Produce a risk-ranked account map with customer importance, relationship owner, renewal or milestone date, likely concern, evidence, recommended contact sequence, approved message theme, and contingency action. Do not invent customer sentiment, contract terms, churn probabilities, or testimonials; label unknowns and request source verification. Separate actions that can be taken before closing from those requiring consent or specialist legal review. Present a one-page leadership summary and an account-level action register. Self-check that the plan addresses the top concentrated accounts, upcoming renewals, change-of-control provisions, and continuity of support.

Optional inputs: [customer list] [ARR or revenue by account] [renewal dates] [contracts] [CRM notes] [support metrics]

85Translate the Deal Thesis into a Synergy Scorecard

Use when: The buyer needs to convert broad value-creation claims into measurable, owned, and time-bound integration outcomes.

Open copy-ready prompt
Act as a value-creation office lead reviewing an acquisition thesis for a multi-location professional-services business. Convert documented value levers into a synergy scorecard covering revenue growth, cost efficiency, working capital, capability expansion, and risk reduction. For each lever, state the baseline, target, timing, owner, calculation method, required data, one-time implementation cost, confidence level, and principal execution risk. Keep revenue synergies separate from cost synergies and distinguish gross opportunity from expected realization. Do not assert a valuation, return, or savings figure without source evidence; identify where finance validation is required. Return a scorecard table, definitions for each metric, and a monthly review agenda. Self-check that every target has a baseline, a date, an accountable owner, and a verifiable data source.

Optional inputs: [investment thesis] [quality-of-earnings report] [budget] [headcount data] [customer pipeline] [working-capital analysis]

86Plan Technology and Data Integration Safely

Use when: Two organizations must connect systems and data without creating avoidable security, privacy, continuity, or compliance failures.

Open copy-ready prompt
Serve as an integration architect for an acquisition involving a healthcare-adjacent service provider, where sensitive business and personal data require careful handling. Build a phased technology and data integration plan covering identity and access, endpoint management, applications, interfaces, backups, logging, data classification, retention, vendor access, incident response, and migration testing. Recommend a coexistence period where justified, with entry and exit criteria for each phase. Do not request, display, or copy secrets, credentials, or unnecessary personal data, and do not prescribe unauthorized access or destructive cutovers. Flag every assumption and identify controls requiring qualified cybersecurity, privacy, legal, compliance, or IT review. Present the plan as phases with controls, owners, dependencies, rollback criteria, and evidence. Self-check that business continuity and least-privilege access are addressed before migration.

Optional inputs: [application inventory] [data map] [security policies] [vendor contracts] [recovery objectives] [regulatory obligations]

87Create a Workforce Transition and Communication Plan

Use when: Employees need clarity about reporting lines, roles, policies, retention, and support during a sensitive ownership transition.

Open copy-ready prompt
Act as a change-management lead partnering with qualified HR and employment counsel on the acquisition of a 75-person logistics company. Draft a workforce transition plan that covers leader alignment, employee announcement sequencing, manager talking points, listening channels, role and reporting-line decisions, retention considerations, benefits questions, training, and a 30-60-90-day communication calendar. Protect confidential personnel information, avoid discriminatory criteria, and distinguish business planning from employment advice. Do not recommend termination, compensation, or classification decisions without appropriate HR and legal review. Return a stakeholder map, message architecture, manager FAQ themes, and escalation rules for rumors or employee relations issues. Self-check that communications are accurate, accessible, consistent with approved transaction facts, and explicit about what is not yet decided.

Optional inputs: [employee census] [organization charts] [benefits overview] [approved transaction messages] [retention priorities] [jurisdiction list]

88Establish a Post-Close Operating Cadence

Use when: The combined business needs repeatable management routines to stabilize operations and surface integration problems early.

Open copy-ready prompt
Act as an operating-model consultant for a buyer combining two field-service businesses with overlapping territories. Design a post-close cadence for daily huddles, weekly workstream reviews, monthly operating reviews, and quarterly value-creation reviews. For each forum, specify participants by role, purpose, agenda, metrics, decision rights, pre-read requirements, action-log standard, and escalation route. Include a short list of leading indicators for customer service, safety, staffing, cash conversion, backlog, system reliability, and synergy delivery. Keep the cadence proportional to the company’s size and avoid meetings that duplicate one another. Require source-based reporting and note where finance, HR, legal, safety, or other specialist validation is needed. Present the answer as a calendar and meeting-charter table. Self-check that each metric has an owner and a defined response threshold.

Optional inputs: [operating KPIs] [existing meeting schedule] [site map] [integration workstreams] [reporting systems] [leadership availability]

89Build a 12-Month Value-Creation Roadmap

Use when: The integration team must prioritize initiatives beyond stabilization and sequence investments against capacity, risk, and measurable benefits.

Open copy-ready prompt
Work as a value-creation adviser for an acquired industrial maintenance company whose thesis includes cross-selling, procurement discipline, scheduling improvements, and selective automation. Build a 12-month roadmap that ranks initiatives by strategic value, evidence strength, implementation effort, cash requirement, customer or workforce impact, dependency, and downside risk. Divide initiatives into stabilize, improve, and scale horizons, and show the earliest credible benefit date rather than an optimistic promise. Include decision gates, owners, baseline metrics, monthly milestones, and stop-or-revise triggers. Do not fabricate savings, growth, or payback; require finance validation and specialist review where tax, labor, safety, regulatory, or capital-expenditure issues arise. Return a prioritized roadmap plus a risk-adjusted benefits register. Self-check that sequencing respects operational capacity and does not compromise service quality.

Optional inputs: [deal thesis] [management capacity] [capex plan] [baseline KPIs] [customer commitments] [initiative estimates]

90Conduct a 90-Day Integration Health Check

Use when: The first post-close quarter has ended and leaders need an evidence-based assessment of progress, friction, and corrective priorities.

Open copy-ready prompt
Act as an independent integration-review partner assessing a company 90 days after acquisition. Using the supplied workplan, KPI extracts, interview notes, issue log, customer feedback, and financial reports, produce a health check across continuity, people, customers, operations, technology, controls, and value creation. Rate each area using a clearly defined evidence-based scale, cite the underlying source or mark the finding unverified, and distinguish symptoms from root causes. Recommend no more than eight corrective priorities, each with an owner, next decision, deadline, and success measure. Treat financial results as management information rather than proof of causation, and identify matters requiring qualified legal, tax, finance, HR, cybersecurity, or regulatory review. Format the output as an executive brief, scorecard, and 30-day corrective-action register. Self-check every red or amber rating for documented evidence.

Optional inputs: [integration plan] [KPI dashboard] [issue log] [interview summaries] [customer feedback] [monthly financials]

10. Portfolio Oversight, Post-Close Review, and Exit Preparation

91Build a Post-Close Performance Review

Use when: You need a disciplined 30-, 60-, or 90-day review of an acquired company’s operational and financial performance.

Open copy-ready prompt
Act as a post-merger integration director reviewing an acquired small or mid-sized business after its first 90 days under new ownership. Using the supplied source documents, compare actual results with the acquisition case and the approved integration plan across revenue, gross margin, cash conversion, customer retention, staffing, and critical operating milestones. Separate verified facts, management explanations, and unresolved discrepancies; do not infer missing results. Produce an executive summary, a KPI variance table, root-cause findings, immediate decisions, and a 30-day follow-up register with owners and dates. Flag issues requiring qualified finance, tax, legal, or operational review. Before finalizing, reconcile every reported figure to a cited source document and identify any metric whose definition changed after closing.

Optional inputs: [Closing date] [Review period] [Investment case] [Integration plan] [Actual financials] [KPI definitions] [Management commentary]

92Establish a Portfolio Company Health Dashboard

Use when: You want a repeatable dashboard for monitoring several acquired companies without hiding material risks behind blended portfolio averages.

Open copy-ready prompt
Act as a private-equity operating partner designing a monthly portfolio health dashboard for multiple acquired businesses. Convert the supplied company-level data into a consistent framework covering financial performance, liquidity, commercial momentum, customer concentration, people risk, compliance, technology resilience, and integration progress. Preserve each company’s original currency, period, and metric definition, and show consolidated views only when aggregation is methodologically sound. Deliver a dashboard specification with metric definitions, thresholds, data owners, reporting cadence, RAG rules, and an exceptions log; include a short narrative for each company explaining the three most important movements. Do not invent benchmarks. Self-check that every threshold is sourced, every metric has an owner, and no red flag is diluted by portfolio-level averaging.

Optional inputs: [Company list] [Monthly data] [Currencies] [Existing KPIs] [Risk appetite] [Reporting calendar] [Data owners]

93Diagnose Post-Close Synergy Realization

Use when: Management reports that acquisition synergies are delayed, overstated, or difficult to trace to the original deal thesis.

Open copy-ready prompt
Act as a transaction value-creation specialist auditing synergy realization six months after an acquisition. Map each synergy promised in the investment committee materials to an accountable owner, baseline, implementation action, timing assumption, and observed financial or operational result. Distinguish recurring run-rate benefits from one-time savings, revenue opportunities from cost reductions, and gross benefits from implementation costs or customer harm. Present a traceability matrix, quantified bridge from baseline to current run rate, confidence rating, and recovery actions for missed items. Use only documented evidence and label management estimates clearly. Recommend qualified finance and legal review where accounting treatment, employment changes, contracts, or customer commitments may be affected. Self-check that no benefit is counted twice and that all claimed figures tie to source records.

Optional inputs: [Deal thesis] [Synergy case] [Baseline period] [Actual results] [Implementation costs] [Owner interviews] [Supporting contracts]

94Review Governance and Board Materials

Use when: A portfolio company’s board pack needs a rigorous post-close review that highlights decisions rather than merely presenting activity.

Open copy-ready prompt
Act as an experienced portfolio-company board secretary and operating adviser. Review the supplied monthly reporting pack, minutes, financial statements, risk register, and management updates for an acquired business. Identify missing information, inconsistent definitions, overdue actions, conflicts between narrative and numbers, and decisions that require board attention. Then draft a concise board agenda and reporting blueprint organized around performance, liquidity, strategic initiatives, people, compliance, technology, and decisions requested. Preserve confidentiality, avoid repeating sensitive personal data unnecessarily, and do not treat management assertions as verified facts. Include a source-and-confidence note for each material issue and mark matters needing legal, tax, accounting, or specialist advice. Self-check that each proposed agenda item has a decision, discussion, or information purpose and an accountable presenter.

Optional inputs: [Reporting pack] [Board minutes] [Risk register] [Financial statements] [Strategy] [Known governance calendar]

95Prepare a 100-Day Stabilization Plan

Use when: An acquired company requires focused stabilization before broader growth initiatives or a potential exit process.

Open copy-ready prompt
Act as an interim chief operating officer taking responsibility for a recently acquired company with uneven execution and limited management bandwidth. Based on the supplied evidence, create a 100-day stabilization plan that prioritizes cash protection, customer continuity, operational reliability, talent retention, compliance, and accurate reporting. Rank initiatives by urgency, impact, reversibility, dependency, and resource requirement; distinguish actions the team can take immediately from those needing owner, board, lender, or specialist approval. Provide weekly milestones, named accountable roles, leading indicators, escalation triggers, and a short communication plan for employees and key customers. Do not promise outcomes unsupported by evidence or recommend unlawful employment, accounting, or contractual actions. Self-check that the plan fits stated capacity, protects confidential information, and includes a verification method for every milestone.

Optional inputs: [Acquisition date] [Current issues] [Cash position] [Staffing] [Customer risks] [Compliance obligations] [Available resources]

96Conduct an Exit Readiness Assessment

Use when: You need to determine whether a portfolio company is operationally, financially, and documentarily ready for a sale process.

Open copy-ready prompt
Act as an M&A sell-side readiness adviser assessing an acquired company twelve months before a potential exit. Examine the supplied financial records, contracts, customer data, organizational chart, intellectual-property materials, compliance files, technology documentation, and prior diligence findings. Score readiness across earnings quality, forecast reliability, customer and supplier concentration, legal title, management depth, systems, cybersecurity, tax, and data-room completeness. Deliver a readiness scorecard, evidence gaps, risk-ranked remediation register, suggested owner and timing for each item, and questions a buyer is likely to ask. Do not state or imply a valuation; explain that market pricing requires current evidence and qualified advisers. Self-check that every score cites evidence, every gap has a verification path, and sensitive data is recommended for controlled disclosure only.

Optional inputs: [Target exit window] [Financial package] [Material contracts] [IP records] [Org chart] [Compliance files] [Data-room index]

97Normalize Earnings for an Exit Process

Use when: Reported earnings contain one-time, owner-specific, or non-operating items that require careful review before presenting them to buyers.

Open copy-ready prompt
Act as a transaction-quality-of-earnings analyst preparing a preliminary earnings normalization schedule for a portfolio company. Review the supplied trial balances, general ledger extracts, management accounts, owner compensation details, unusual transactions, and supporting invoices. Classify each proposed adjustment as recurring, non-recurring, owner-specific, non-operating, timing-related, or unsupported; show the reported amount, adjustment, rationale, evidence, tax or cash effect where known, and confidence level. Produce a reconciliation from reported EBITDA to an evidence-supported adjusted view, followed by open questions and items requiring independent accounting or tax review. Do not manufacture add-backs or assume buyer acceptance. Self-check arithmetic, period consistency, double-counting, and whether each adjustment has documentary support and a clear treatment rationale.

Optional inputs: [Fiscal periods] [Trial balance] [General ledger] [Adjustment list] [Owner compensation] [Invoices] [Accounting policies]

98Plan Management Succession Before Exit

Use when: Buyer confidence depends on reducing key-person dependence and demonstrating credible leadership continuity.

Open copy-ready prompt
Act as an organizational adviser supporting an owner preparing a portfolio company for a future sale. Assess the supplied role descriptions, reporting lines, retention arrangements, performance data, succession notes, and management interviews to identify key-person dependencies and leadership continuity risks. Develop a succession plan for critical roles with readiness levels, capability gaps, interim coverage, development actions, retention considerations, and evidence a buyer could reasonably review. Avoid discriminatory assumptions, protect confidential employee information, and recommend qualified HR or legal review for employment, compensation, equity, or termination matters. Present the result as a risk-ranked table plus a 12-month implementation timeline and communication principles. Self-check that recommendations are based on role requirements and documented evidence rather than protected characteristics or unsupported judgments.

Optional inputs: [Org chart] [Critical roles] [Employment terms] [Retention budget] [Succession candidates] [Performance data] [Exit timeline]

99Assemble a Buyer Data-Room Readiness Checklist

Use when: You need to turn scattered portfolio-company records into a controlled, reviewable data room before approaching prospective buyers.

Open copy-ready prompt
Act as an M&A data-room manager preparing a controlled buyer diligence workspace for an acquired business. Using the supplied document inventory and transaction context, organize required materials into logical folders covering corporate, financial, tax, legal, commercial, people, operations, technology, cybersecurity, insurance, and environmental matters where relevant. For each item, specify status, period covered, responsible owner, confidentiality level, source location, quality concern, and whether redaction or specialist review is needed. Identify contradictions, missing approvals, expired documents, and duplicate versions without resolving them through guesswork. Deliver a prioritized checklist, index template, and disclosure-risk log, while noting that qualified legal, tax, finance, HR, and technical advisers should review their areas. Self-check that permissions are least-privilege, version control is explicit, and no personal or secret data is exposed unnecessarily.

Optional inputs: [Document inventory] [Folder convention] [Reporting periods] [Confidentiality rules] [Known diligence requests] [Adviser responsibilities]

100Compare Exit Pathways and Decision Gates

Use when: Owners must compare a strategic sale, sponsor sale, recapitalization, or continued hold without receiving an unsupported personal investment recommendation.

Open copy-ready prompt
Act as an independent corporate-finance adviser preparing a decision framework for a portfolio company’s possible exit or recapitalization. Compare the supplied alternatives—strategic sale, financial buyer sale, partial sale, dividend recapitalization, or continued ownership—against objectives, timing, execution complexity, financing needs, governance effects, management continuity, tax considerations, confidentiality, and downside risks. Do not recommend a path for a specific person and do not assert valuation or proceeds without evidence; identify the data needed for scenario analysis instead. Deliver an options matrix, key assumptions, diligence questions, decision gates, and a 90-day preparation sequence. State clearly where qualified legal, tax, finance, and lender advice is required. Self-check that alternatives use comparable criteria, assumptions are labeled, and irreversible actions are separated from exploratory steps.

Optional inputs: [Owner objectives] [Debt terms] [Financial projections] [Tax jurisdiction] [Management preferences] [Potential buyer types] [Target timing]

Responsible use

Verify all facts against source documents and involve qualified legal, tax, finance, accounting, industry, and other specialists where appropriate. These prompts support research and process preparation only; they do not provide personalized investment, legal, or tax advice.