Test Strategy Brief
Scaffolds an agent brief for producing a comprehensive test strategy. The rendered brief instructs an agent to analyze a codebase, identify critical paths, recommend tooling, define coverage targets, and produce a layered test strategy document organized by test type and priority.
| Name | brief-test-strategy |
| Version | 0.1.0 |
| Category | qa |
| License | Apache-2.0 |
| Persona | qa |
| Tags | brief, testing, strategy, qa, coverage |
| Source | templates/brief-test-strategy |
Render it
Three front doors, one catalog. Pick whichever suits the caller.
# CLI
npx @nanohype/sdk render brief-test-strategy --out ./my-app
# SDK
import { LocalSource, renderTemplate } from "@nanohype/sdk";
const result = await renderTemplate(source, "brief-test-strategy", variables);
# MCP — from an agent
get_template({ name: "brief-test-strategy" })Variables
Required
ProjectNamestring- Name of the project to define a test strategy for
Optional
Languagestring — defaults totypescript- Primary programming language of the codebase
TestingGoalstring — defaults tocomprehensive coverage- High-level objective for the test strategy
CriticalPathsstring — defaults to- Comma-separated list of critical user or system paths to prioritize
What it produces
1 files. Placeholder names such as __APP_NAME__ are what the renderer substitutes into.
brief.mdComposes with
- Pairs with
test-plan - Pairs with
test-automation - Pairs with
eval-harness - Nests inside
monorepo