ワンクリックで
write-test-docs
Use when test docs are missing or outdated. Generates test plan and manual QA checklist from PRD and user stories.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when test docs are missing or outdated. Generates test plan and manual QA checklist from PRD and user stories.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use when adding a feature to a production project. Full cycle: brainstorm, plan, implement, docs.
Use when fixing a bug in a production project. Full cycle: diagnose, fix, regression test, review, docs.
Use to batch-validate all skills in this plugin. Runs deterministic repo-wide static checks (frontmatter, command delegation, cross-references, Architect model= rule, orphan references, README<->MemPalace sync) and reports pass/fail per skill.
Use when creating a new project. Bare AI shell by default; interactive menu adds docs / backend-infra / agents on demand.
Use after init-project to fill docs/product/start-project.md with AI research on competitors, monetization, valuation, and marketing.
Use when unsure which skill to use. Lists all vladyslav skills, workflow, and integration.
| name | write-test-docs |
| description | Use when test docs are missing or outdated. Generates test plan and manual QA checklist from PRD and user stories. |
Type: Engineer (light)
Generate docs/testing/test-plan.md and docs/testing/manual-qa.md — the automated test plan and the manual QA checklist that QA runs before each release.
This was a Heavy Engineer skill until v3.1.0 (inline in Opus). v4.2.0 fans the two independent files out to parallel sonnet subagents — the Opus main session keeps pre-flight, the coverage-target semantics, and the merge. See _shared/references/orchestration-conventions.md.
Read CLAUDE.md from pwd. If missing → STOP: "No CLAUDE.md found — are you in the right project?" and extract the project name and stack.
Verify input files:
docs/product/prd.md, docs/product/user-stories.mddocs/architecture/api.md, existing docs/testing/test-plan.md, existing docs/testing/manual-qa.md (preserve user-edited sections)For each missing required file, ask the user:
"Required input
<path>is missing. Options: (a) run/vladyslav:write-user-storiesfirst / (b) create stub and continue / (c) abort"
Read the FULL content of every available input file. Optionally also peek at the test runner config (pytest.ini / pyproject.toml / package.json test script / xcodeproj scheme) to align the plan with the actual stack.
The test plan and the manual-QA checklist are independent — both read the same inputs but neither uses the other's output. Dispatch them as two Agent calls in a single message (concurrent), each model: "sonnet". Give each subagent the Step 1 inputs, its structure block below, the stack-specific rules, and the preserve-on-update rule; each writes its own file. The Opus main session validates coverage-target semantics and renders the summary after both return.
docs/testing/test-plan.md)Write docs/testing/test-plan.md. If it exists, preserve user-edited sections and merge.
Structure:
# Test Plan
## Coverage targets
| Layer | Target | Current | Owner |
|-------|--------|---------|-------|
| Unit | 70% | TBD | <stack-specific runner> |
| Integration | core flows covered | TBD | — |
| E2E | smoke path only | TBD | — |
## Test categories
### Unit
- [feature area] — [what to cover]
### Integration
- [feature area] — [what to cover]
### E2E (smoke)
- [critical user path 1]
- [critical user path 2]
## Stack notes
- Test runner: `<command>` (e.g. `pytest`, `go test ./...`, `xcodebuild test`)
- CI hook: <how tests run in CI, or "not yet wired">
- Fixtures location: <path>
Derive each category's contents from the user-stories file. Every ✅ Done story gets at least one entry in either Unit or Integration. Every 🚧 Partial story gets a [ ] task.
docs/testing/manual-qa.md)Write docs/testing/manual-qa.md. Same preserve-on-update behaviour.
Structure:
# Manual QA Checklist
> Run before every release. Each item is a happy-path or edge-case verification that a human performs in the running app.
## Pre-flight
- [ ] Latest build is installed on the test device / running locally
- [ ] Test data is seeded
- [ ] Logs are visible (Console.app / docker logs / browser devtools)
## [Feature Area 1]
### Happy path
- [ ] [Specific user action] → [expected observable result]
### Edge cases
- [ ] [Edge case action] → [expected result]
- [ ] Empty state — [what to verify]
## [Feature Area 2]
...
## Cross-cutting
- [ ] Dark mode renders correctly on every screen (iOS / web)
- [ ] Dynamic type / browser zoom up to 200% does not break layout
- [ ] VoiceOver / screen reader reaches every interactive element
- [ ] All user-facing strings have translations (if multi-language)
- [ ] No console errors during the happy path
Cross-cutting checks adapt to the stack (iOS: Dark Mode + VoiceOver; web: zoom + screen reader; backend-only: skip cross-cutting).
Render:
✓ write-test-docs complete
Files: docs/testing/test-plan.md, docs/testing/manual-qa.md
Action: <created | updated> (per file)
Coverage targets: <"set" | "kept stub — please fill manually">
Next: /vladyslav:pre-release-check — verify the release before deployment
sonnet subagents — ~2× faster wall-clock, cheaper than two opus passes, no contract boilerplate.docs/testing/test-plan.mddocs/testing/manual-qa.md