Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Testing Playbook

ASecurity

This skill should be used when the user asks to "create a test plan", "test strategy", "write test cases", "test automation", "acceptance testing", "quality assurance", "QA", "testing approach", "risk-based testing", "regression testing", "performance testing", "test management", or mentions testing work. Guides developers and QA through testing tasks using SFIA 9 framework with a 5-phase workflow (Discover → Plan → Execute → Evaluate → Improve), inline coaching, and testing competency assess...

4 stars
0 votes
0 copies
0 views
Added 5/28/2026
ai-agentstestingci/cdperformance

Security Analysis

A100/100

Scanned 5/28/2026

Install to Claude Code

$npx -y skills add baodq97/open-plugin --skill testing-playbook --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Testing Playbook?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Testing Playbook
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/baodq97-testing-playbook/badge)](https://www.skillsdirectory.com/skills/baodq97-testing-playbook)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: testing-playbook
description: |
  This skill should be used when the user asks to "create a test plan",
  "test strategy", "write test cases", "test automation",
  "acceptance testing", "quality assurance", "QA",
  "testing approach", "risk-based testing", "regression testing",
  "performance testing", "test management",
  or mentions testing work. Guides developers and QA
  through testing tasks using SFIA 9 framework with a 5-phase workflow
  (Discover → Plan → Execute → Evaluate → Improve), inline coaching,
  and testing competency assessment.
  Do NOT use for: code-level unit test implementation, CI/CD pipeline setup,
  or infrastructure provisioning.
---

# Testing Playbook v1.0

Guides developers and QA through Testing tasks using the SFIA 9 framework. Combines a phase-based workflow with inline coaching to build testing competency from SFIA level 4 (Enable) toward level 5-6.

## Core Principles

1. **Hybrid guidance** — Walk through testing phases together, not just instruct. Recommend approaches, draft artifacts collaboratively, and help complete the task.
2. **SFIA-mapped coaching** — Every activity maps to a SFIA skill and level. Inline coaching explains what skill is being practiced and how to level up.
3. **Flexible phases** — 5 phases provide structure, but skip or jump as context demands. No forced quality gates.
4. **Artifacts over theory** — Each phase produces concrete deliverables (test strategies, test plans, defect reports), not just checklists.
5. **Risk-based testing** — Prioritize testing by risk and impact, not by coverage metrics alone.
6. **Testing does not own the release decision** — Testing provides risk assessment, release decision is made by delivery/product.

## Testing Workflow — 5 Phases

| # | Phase | Purpose | Key SFIA Skills | Key Artifacts |
|---|-------|---------|-----------------|---------------|
| 1 | **Discover** | Understand test context, requirements, stakeholders, risks | BUSA, REQM, TEST | Test context doc, Risk assessment, Stakeholder map |
| 2 | **Plan** | Design test strategy, select approaches, plan resources | TEST, QUAS, METL | Test strategy, Test plan, Environment requirements |
| 3 | **Execute** | Create and run tests, report defects | TEST, BPTS, PENT | Test cases, Test scripts, Defect reports, Test execution log |
| 4 | **Evaluate** | Analyze results, assess quality, determine readiness | QUAS, BURM, MEAS | Test summary report, Quality assessment, Risk report, Release recommendation |
| 5 | **Improve** | Retrospective, optimize processes, share learnings | METL, QUAS, BPRE | Test retrospective, Process improvement plan, Lessons learned |

For detailed phase activities, coaching prompts, and artifact guidance, consult `references/testing-phases.md`.

## Session Management

### Starting a Session

When the user initiates a testing task:

1. Generate session ID: `TEST-{PROJECT}-{YYYYMMDD}-{SEQ}` (derive PROJECT from directory name)
2. Create workspace: `.testing-playbook/sessions/{session_id}/`
3. Initialize `state.yaml` with phase tracking
4. Begin at the appropriate phase (default: Discover)

### State File

```yaml
session_id: TEST-{PROJECT}-{YYYYMMDD}-{SEQ}
current_phase: discover
phases:
  discover: { status: in_progress, artifacts: [] }
  plan: { status: not_started, artifacts: [] }
  execute: { status: not_started, artifacts: [] }
  evaluate: { status: not_started, artifacts: [] }
  improve: { status: not_started, artifacts: [] }
coaching_log: []
```

### Workspace Structure

```
.testing-playbook/sessions/{session_id}/
├── state.yaml
├── discover/
├── plan/
├── execute/
├── evaluate/
└── improve/
```

### Phase Navigation

- **Skip**: If requirements already exist, skip Discover and start at Plan
- **Jump back**: Return to any previous phase to refine artifacts
- **Resume**: Read `state.yaml` to continue where left off

## Inline Coaching

At key moments (artifact completion, testing decisions, phase transitions), provide coaching:

```
> **Testing Coach** (TEST L4 → L5)
> [Observation about current work]
> [Tip for next-level performance]
```

Coaching guidelines:
- Map each activity to its SFIA skill code and level
- Show what the current level requires AND what the next level looks like
- Coach at meaningful moments, not every step
- Keep coaching concise (2-3 sentences)

For coaching prompt templates by skill and level, consult `references/coaching-prompts.md`.

## Testing Competency Assessment

When reviewing a testing document (via `/testing:assess` or during a session):

1. Read the document
2. Evaluate against SFIA criteria for each relevant skill
3. Score on 4 dimensions: **Completeness**, **Depth**, **Communication**, **Decision quality**
4. Report estimated SFIA level per skill, strengths, gaps, and recommendations

For the full assessment rubric, consult `references/assessment-criteria.md`.

## SFIA Skill Reference

The primary SFIA skills for testing work and their phase mapping:

| Skill | Code | Primary Phases |
|-------|------|---------------|
| Functional testing | TEST | Discover, Plan, Execute |
| Quality assurance | QUAS | Plan, Evaluate, Improve |
| User acceptance testing | BPTS | Execute |
| Methods and tools | METL | Plan, Improve |
| User experience evaluation | USEV | Execute, Evaluate |
| Penetration testing | PENT | Execute |
| Risk management | BURM | Discover, Evaluate |
| Specialist advice | TECH | All phases |

For full SFIA skill descriptions at each level, consult `references/sfia-skill-map.md`.

## Artifact Templates

When creating artifacts, use the templates in `references/artifact-templates.md`. Templates include:
- Test context document
- Test strategy
- Test plan
- Risk-based test prioritization matrix
- Test case template
- Defect report template
- Test execution log
- Test summary report
- Release readiness recommendation
- Test retrospective template

## Testing Patterns

When selecting testing approaches, consult `references/testing-patterns.md` for common patterns with trade-off analysis:
- Test strategy: Risk-based vs Coverage-based vs Exploratory-first
- Automation: Full automation vs Selective automation vs Manual-first
- Environment: Shared vs Dedicated vs Containerized
- Test data: Production clone vs Synthetic vs Hybrid
- Regression: Full suite vs Risk-based selection vs Change-impact

## Level Progression

Target audience: Dev/QA → Test Analyst/Test Architect (SFIA Level 4), with growth path:

- **Level 4 (Enable)** — Select testing approaches, develop comprehensive test plans, manage automated frameworks, report on test activities
- **Level 5 (Ensure, advise)** — Lead testing efforts, provide authoritative advice on methods, improve efficiency and reliability, contribute to organizational policies
- **Level 6 (Initiate, influence)** — Develop organizational testing policies, lead complex testing initiatives, drive quality culture

## Additional Resources

### Reference Files

- **`references/testing-phases.md`** — Detailed phase activities, conversation guides, artifact checklists
- **`references/sfia-skill-map.md`** — Full SFIA skill descriptions for testing-relevant skills at each level
- **`references/coaching-prompts.md`** — Coaching templates organized by skill and level transition
- **`references/artifact-templates.md`** — Ready-to-use templates for all testing artifacts
- **`references/assessment-criteria.md`** — Full rubric for testing competency assessment scoring
- **`references/testing-patterns.md`** — Common testing patterns with risk-based trade-off analysis

Attribution

baodq97baodq97
View sourceMore from baodq97 →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1066601 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

686011 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

651 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →