qa-manual-istqb
ISTQB Foundation Level (CTFL) aligned QA toolkit for manual and automated testing. Use when asked to create test plans, test strategies, test conditions, test cases, bug reports, defect logs, regression suites, traceability matrices, or exploratory charters. Supports risk-based testing, test design techniques (equivalence partitioning, boundary value analysis, decision tables, state transitions), test estimation, static testing reviews, and test process management. Includes Playwright automation guidance for test implementation.
What this skill does
# ISTQB Manual & Automation QA Toolkit Complete ISTQB Foundation Level (CTFL) aligned workflow for QA test engineers covering: **Test Planning → Test Analysis → Test Design → Test Implementation → Test Execution → Test Completion** ## When to Use This Skill - Creating or reviewing **test plans** and **test strategies** - Generating **test conditions** and **test cases** from requirements - Applying **test design techniques** (EP, BVA, decision tables, state transitions, use cases) - Writing **bug reports** and managing **defect lifecycle** - Building **regression suites** with risk-based selection - Creating **traceability matrices** (requirements ↔ tests ↔ defects) - Conducting **exploratory testing** sessions with charters - Estimating test effort using ISTQB techniques - Reviewing testware through **static testing** practices - Implementing automation with **Playwright** (TypeScript) ## Prerequisites | Requirement | Notes | | ----------- | ----------------------------------------------- | | Node.js 18+ | Required for CLI script and Playwright | | Playwright | `npm init playwright@latest` for automation | | Text editor | For creating/editing markdown and CSV artifacts | | Git | Recommended for testware version control | ## Quick Start (choose one) - Create a test plan: use `templates/test-plan.md` as a starting point. - Create a test summary report: use `templates/test-summary-report.md`. - Generate test cases: use `templates/test-cases.csv` and fill it from the test basis (requirements, user stories, acceptance criteria). - Create a bug report: use `templates/bug-report.md`. - Create a bug log: use `templates/bug-log.csv`. - Create traceability: use `templates/traceability-matrix.csv`. - Build a regression suite definition: use `templates/regression-suite.md`. - Scaffold Playwright tests: use `templates/playwright-spec.ts` and adapt to the system under test. - Run exploratory testing: use `templates/exploratory-charter.md` to timebox and capture outcomes. If running locally, generate artifacts with the bundled CLI: ```bash node scripts/qa_artifacts.mjs list node scripts/qa_artifacts.mjs create test-plan --out specs --project "My App" --release "R1" node scripts/qa_artifacts.mjs create test-cases --out specs --feature "Checkout" node scripts/qa_artifacts.mjs create bug-report --out specs/bugs --title "Search returns 500" ``` ## Inputs to collect (ask if missing) - **Test basis**: requirements, user stories, acceptance criteria, designs, risk register, defect history. - **Scope**: in-scope/out-of-scope features, target platforms/browsers/devices, locales, accessibility, integrations. - **Quality risks**: what can fail, impact, likelihood, regulatory/compliance, critical user journeys. - **Constraints**: deadlines, environments, data availability, tooling, access/roles, CI/CD expectations. - **Definitions**: severity vs priority scale, test levels and test types to cover, entry/exit criteria. ## Workflows ### 1) Create a test plan (and/or test strategy) 1. Identify test objectives, scope, assumptions, and constraints from the test basis. 2. Define test levels and types (functional + change-related + key non-functional, as applicable). 3. Choose test design techniques per area (see `references/test-design-techniques.md`). 4. Specify environments, test data, tooling, and configuration management needs. 5. Define entry/exit criteria, deliverables, and reporting cadence/metrics. 6. Add a risk matrix and mitigation actions; prioritize testing accordingly (risk-based testing). Use: `templates/test-plan.md` (detailed sections + checklists). ### 2) Generate test conditions and test cases 1. Convert the test basis into **test conditions** (what to test) before writing step-by-step cases. 2. For each condition, pick a technique: - Equivalence partitions and boundary values for inputs/validation. - Decision tables for rule combinations. - State transitions for lifecycle/flows. - Use-case/scenario tests for end-to-end journeys. - Exploratory testing sessions to learn quickly (see `templates/exploratory-charter.md`). 3. Write test cases that are atomic, unambiguous, and traceable to requirement/user story IDs. 4. Add expected results that are observable and measurable (define the test oracle). 5. Add priority and risk tags to support risk-based regression selection. 6. Mark automation candidates using stability + value criteria (see `references/automation-playwright-best-practices.md`). Use: `templates/test-cases.csv`. ### 3) Implement automation test scripts (Playwright-first) 1. Keep tests readable and aligned with test cases (include test case IDs in titles). 2. Prefer stable locators (e.g., `getByTestId`) over brittle selectors. 3. Avoid arbitrary sleeps; rely on Playwright auto-waits and explicit assertions. 4. Make tests independent (setup preconditions explicitly; avoid order dependencies). 5. Use tagging in test titles (e.g., `@smoke`, `@regression`) so suites are runnable via `--grep`. 6. Capture artifacts for triage (screenshots/video/trace) when debugging failures. Use: `templates/playwright-spec.ts` and `references/automation-playwright-best-practices.md`. ### 4) Build and maintain regression suites 1. Define suite tiers (example): smoke (critical paths), sanity (build verification), regression (broad), full (release). 2. Select tests using risk + frequency + criticality + defect history (not only coverage). 3. Tag tests consistently and document selection rules and ownership. 4. Review the suite regularly: remove obsolete coverage, add coverage for escaped defects and high-risk changes. Use: `templates/regression-suite.md` and `references/regression-suite-strategy.md`. ### 5) Create bug reports and document bugs effectively 1. Reproduce reliably; reduce to minimal steps; note variability (frequency) and scope. 2. Capture environment details (build/app version, OS, browser/device, account/role, data conditions). 3. Describe expected vs actual behavior; include impact; set severity and priority consistently. 4. Attach evidence (screenshots, console logs, network traces, Playwright trace) and link related tests/requirements. 5. Track lifecycle: triage notes, owner, fix version, verification steps and results, closure criteria. Use: `templates/bug-report.md` and `references/bug-report-quality.md`. ### 6) Conduct static testing (reviews) 1. Schedule reviews early (shift-left): requirements, designs, test plans, test cases. 2. Use checklists for consistency (see `references/static-testing.md`). 3. Document findings with severity and actionability. 4. Track defects found in static testing separately (prevention vs detection). Use: `references/static-testing.md` for review checklists and techniques. ### 7) Estimate test effort 1. Identify factors: scope, complexity, risk, team experience, tool maturity. 2. Apply estimation techniques (see `references/test-estimation.md`): - Expert judgment / historical data - Test point analysis - Work breakdown structure 3. Add contingency for risks and unknowns. 4. Review and refine estimates as the project progresses. Use: `references/test-estimation.md` for techniques and formulas. ### 8) Monitor test progress and metrics 1. Track execution metrics: planned vs executed vs passed vs failed vs blocked. 2. Monitor defect metrics: found vs fixed vs open, by severity/priority. 3. Calculate test coverage: requirements covered, risk areas tested. 4. Report status regularly and escalate blockers early. Use: `references/test-monitoring-metrics.md` for metrics definitions and dashboards. ## Quality Gates (self-check) - **Test plan** includes scope, approach, risks, environments, entry/exit criteria, deliverables, and metrics. - **Test cases** are traceable, atomic, deterministic, and include clear oracles and data. - **Automation** is maintainable (stable locators, minimal flake, independent tests
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.