test-planning

test-planning is a skill for Claude Code from latestaiagents/agent-skills. It costs 51 tokens per session (1,412 once invoked), scanned A, original, MIT.

A guide for creating test strategies and plans for software projects, new features, and releases. It covers scope, objectives, test levels, coverage, environments, risks, resources, and release conditions.

In plain words
What is it for?
Use it to define a testing approach, estimate effort, assign responsibilities, document risks, and prepare release testing.
Why use it?
It helps teams decide in advance what quality checks are needed and how to measure whether testing is complete.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the qa-testing plugin — 6 skills, 3 commands shipped together

Good fit Use it to define a testing approach, estimate effort, assign responsibilities, document risks, and prepare release testing.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/latestaiagents/agent-skills/test-planning
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add latestaiagents/agent-skills --skill test-planning
Clone the repo
git clone --depth 1 https://github.com/latestaiagents/agent-skills

Made for: Claude Code.

Or install qa-testing, the plugin that ships this one along with the rest of its 6 skills, 3 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for test-planning

README.md
[![agentmods](https://agentmods.dev/badge/skills/latestaiagents/agent-skills/test-planning/github.svg)](https://agentmods.dev/skills/latestaiagents/agent-skills/test-planning)
Your own site
<a href="https://agentmods.dev/skills/latestaiagents/agent-skills/test-planning"><img src="https://agentmods.dev/badge/skills/latestaiagents/agent-skills/test-planning/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for test-planning

Your own site · 80×15
<a href="https://agentmods.dev/skills/latestaiagents/agent-skills/test-planning"><img src="https://agentmods.dev/badge/skills/latestaiagents/agent-skills/test-planning.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 51 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,412 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00051 $0.01412
Opus 5 $0.00026 $0.00706
Sonnet 5 $0.00010 $0.00282
Haiku 4.5 $0.00005 $0.00141

Measured 5d ago against content hash 129eefbadeea, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

test-planning scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/qa-testing/skills/test-strategy/test-planning/SKILL.md · 232 lines

How it starts

The opening of the file, as written. The whole thing — 232 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Test Planning

Create comprehensive test strategies that ensure quality and coverage.

When to Use

  • Planning testing for a new feature or release
  • Creating a test strategy document
  • Defining test coverage requirements
  • Estimating testing effort
  • Setting up QA processes for a new project

Test Strategy Document Template

# Test Strategy: [Project/Feature Name]

**Version:** 1.0
**Author:** [Name]
**Date:** [Date]
**Status:** Draft / In Review / Approved

## 1. Introduction

### 1.1 Purpose
[Brief description of what this test strategy covers]

### 1.2 Scope
**In Scope:**
- [Feature/component 1]
- [Feature/component 2]

**Out of Scope:**
- [Explicitly excluded items]

### 1.3 References
- PRD: [link]
- Technical Design: [link]
- API Specs: [link]

## 2. Test Objectives

- Verify [functional requirement 1]
- Validate [performance requirement]
- Ensure [security requirement]
- Confirm [compatibility requirement]

## 3. Test Approach

### 3.1 Test Levels

| Level | Scope | Owner | Tools |
|-------|-------|-------|-------|
| Unit | Individual functions | Dev | Jest, pytest |
| Integration | API contracts | Dev/QA | Postman, SuperTest |
| E2E | User workflows | QA | Playwright, Cypress |
| Performance | Load/stress | QA | k6, Artillery |

### 3.2 Test Types

- [ ] Functional testing
- [ ] Regression testing
- [ ] Smoke testing
- [ ] Integration testing
- [ ] Performance testing
- [ ] Security testing
- [ ] Accessibility testing
- [ ] Compatibility testing

## 4. Test Environment

| Environment | Purpose | Data |
|-------------|---------|------|
| Dev | Unit/Integration | Mocked |
| Staging | E2E/Regression | Sanitized prod |
| Pre-prod | Performance/Security | Prod-like |

## 5. Test Data

### Requirements
- [Data requirement 1]
- [Data requirement 2]

### Sources
- Test data generators
- Sanitized production data
- Synthetic data sets

## 6. Entry/Exit Criteria

### Entry Criteria
- [ ] Code complete and merged
- [ ] Unit tests passing (>80% coverage)
- [ ] Environment deployed and stable
- [ ] Test data prepared

### Exit Criteria
- [ ] All critical test cases passed
- [ ] No P0/P1 bugs open
- [ ] Performance benchmarks met
- [ ] Security scan passed
- [ ] Sign-off from stakeholders

## 7. Risk Assessment

| Risk | Likelihood | Impact | Mitigation |
|------|------------|--------|------------|
| [Risk 1] | High/Med/Low | High/Med/Low | [Action] |
| [Risk 2] | | | |

## 8. Schedule

| Phase | Start | End | Owner |
|-------|-------|-----|-------|
| Test Planning | | | |
| Test Case Design | | | |
| Test Execution | | | |
| Bug Fixing | | | |
| Regression | | | |
| Sign-off | | | |

## 9. Deliverables

- [ ] Test cases in [TestRail/Xray]
- [ ] Automated test suite
- [ ] Test execution report
- [ ] Bug report summary
- [ ] Sign-off document

Read the full file on GitHub · 232 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 232 lines · 51 tokens per session scan A 129eefbadeea

Subscribe to this mod's changes

test-planning is a skill published in the GitHub repository latestaiagents/agent-skills (5 stars, last pushed 4mo ago), licensed MIT. It adds 51 tokens to every session and 1,412 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.