mirror of
https://github.com/complexcaresolutions/cms.c2sgmbh.git
synced 2026-03-17 15:04:14 +00:00
- Add .claude/ configuration (agents, commands, hooks, get-shit-done workflows) - Add prompts/ directory with development planning documents - Add scripts/setup-tenants/ with tenant configuration - Add docs/screenshots/ - Remove obsolete phase2.2-corrections-report.md - Update pnpm-lock.yaml - Update detect-secrets.sh to ignore setup.sh (env var usage, not secrets) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
6 KiB
6 KiB
UAT Template
Template for .planning/phases/XX-name/{phase}-UAT.md — persistent UAT session tracking.
File Template
---
status: testing | complete | diagnosed
phase: XX-name
source: [list of SUMMARY.md files tested]
started: [ISO timestamp]
updated: [ISO timestamp]
---
## Current Test
<!-- OVERWRITE each test - shows where we are -->
number: [N]
name: [test name]
expected: |
[what user should observe]
awaiting: user response
## Tests
### 1. [Test Name]
expected: [observable behavior - what user should see]
result: [pending]
### 2. [Test Name]
expected: [observable behavior]
result: pass
### 3. [Test Name]
expected: [observable behavior]
result: issue
reported: "[verbatim user response]"
severity: major
### 4. [Test Name]
expected: [observable behavior]
result: skipped
reason: [why skipped]
...
## Summary
total: [N]
passed: [N]
issues: [N]
pending: [N]
skipped: [N]
## Gaps
<!-- YAML format for plan-phase --gaps consumption -->
- truth: "[expected behavior from test]"
status: failed
reason: "User reported: [verbatim response]"
severity: blocker | major | minor | cosmetic
test: [N]
root_cause: "" # Filled by diagnosis
artifacts: [] # Filled by diagnosis
missing: [] # Filled by diagnosis
debug_session: "" # Filled by diagnosis
<section_rules>
Frontmatter:
status: OVERWRITE - "testing" or "complete"phase: IMMUTABLE - set on creationsource: IMMUTABLE - SUMMARY files being testedstarted: IMMUTABLE - set on creationupdated: OVERWRITE - update on every change
Current Test:
- OVERWRITE entirely on each test transition
- Shows which test is active and what's awaited
- On completion: "[testing complete]"
Tests:
- Each test: OVERWRITE result field when user responds
resultvalues: [pending], pass, issue, skipped- If issue: add
reported(verbatim) andseverity(inferred) - If skipped: add
reasonif provided
Summary:
- OVERWRITE counts after each response
- Tracks: total, passed, issues, pending, skipped
Gaps:
- APPEND only when issue found (YAML format)
- After diagnosis: fill
root_cause,artifacts,missing,debug_session - This section feeds directly into /gsd:plan-phase --gaps
</section_rules>
<diagnosis_lifecycle>
After testing complete (status: complete), if gaps exist:
- User runs diagnosis (from verify-work offer or manually)
- diagnose-issues workflow spawns parallel debug agents
- Each agent investigates one gap, returns root cause
- UAT.md Gaps section updated with diagnosis:
- Each gap gets
root_cause,artifacts,missing,debug_sessionfilled
- Each gap gets
- status → "diagnosed"
- Ready for /gsd:plan-phase --gaps with root causes
After diagnosis:
## Gaps
- truth: "Comment appears immediately after submission"
status: failed
reason: "User reported: works but doesn't show until I refresh the page"
severity: major
test: 2
root_cause: "useEffect in CommentList.tsx missing commentCount dependency"
artifacts:
- path: "src/components/CommentList.tsx"
issue: "useEffect missing dependency"
missing:
- "Add commentCount to useEffect dependency array"
debug_session: ".planning/debug/comment-not-refreshing.md"
</diagnosis_lifecycle>
Creation: When /gsd:verify-work starts new session
- Extract tests from SUMMARY.md files
- Set status to "testing"
- Current Test points to test 1
- All tests have result: [pending]
During testing:
- Present test from Current Test section
- User responds with pass confirmation or issue description
- Update test result (pass/issue/skipped)
- Update Summary counts
- If issue: append to Gaps section (YAML format), infer severity
- Move Current Test to next pending test
On completion:
- status → "complete"
- Current Test → "[testing complete]"
- Commit file
- Present summary with next steps
Resume after /clear:
- Read frontmatter → know phase and status
- Read Current Test → know where we are
- Find first [pending] result → continue from there
- Summary shows progress so far
<severity_guide>
Severity is INFERRED from user's natural language, never asked.
| User describes | Infer |
|---|---|
| Crash, error, exception, fails completely, unusable | blocker |
| Doesn't work, nothing happens, wrong behavior, missing | major |
| Works but..., slow, weird, minor, small issue | minor |
| Color, font, spacing, alignment, visual, looks off | cosmetic |
Default: major (safe default, user can clarify if wrong)
</severity_guide>
<good_example>
---
status: diagnosed
phase: 04-comments
source: 04-01-SUMMARY.md, 04-02-SUMMARY.md
started: 2025-01-15T10:30:00Z
updated: 2025-01-15T10:45:00Z
---
## Current Test
[testing complete]
## Tests
### 1. View Comments on Post
expected: Comments section expands, shows count and comment list
result: pass
### 2. Create Top-Level Comment
expected: Submit comment via rich text editor, appears in list with author info
result: issue
reported: "works but doesn't show until I refresh the page"
severity: major
### 3. Reply to a Comment
expected: Click Reply, inline composer appears, submit shows nested reply
result: pass
### 4. Visual Nesting
expected: 3+ level thread shows indentation, left borders, caps at reasonable depth
result: pass
### 5. Delete Own Comment
expected: Click delete on own comment, removed or shows [deleted] if has replies
result: pass
### 6. Comment Count
expected: Post shows accurate count, increments when adding comment
result: pass
## Summary
total: 6
passed: 5
issues: 1
pending: 0
skipped: 0
## Gaps
- truth: "Comment appears immediately after submission in list"
status: failed
reason: "User reported: works but doesn't show until I refresh the page"
severity: major
test: 2
root_cause: "useEffect in CommentList.tsx missing commentCount dependency"
artifacts:
- path: "src/components/CommentList.tsx"
issue: "useEffect missing dependency"
missing:
- "Add commentCount to useEffect dependency array"
debug_session: ".planning/debug/comment-not-refreshing.md"
</good_example>