SKILL.md
Run UAT
Purpose
Execute end-to-end User Acceptance Testing by posting a feature-specific artifact and the comprehensive demo to a real PR on GitHub or Azure DevOps, then validating the rendered output.
Hard Rules
Must
- Provide at least one
--report/--instructionspair (feature-specific report and test instructions). - The comprehensive demo is appended automatically — do NOT add it as a
--report. - Artifacts must be up-to-date (generated from current branch code). Run
scripts/generate-demo-artifacts.shif needed. - Leave the UAT PRs open when you finish creating them. Completing the UAT Tester's
stage is what opens the Maintainer's approval gate, and the gate asks them to look at those PRs — closing them first makes the gate unanswerable.
- Cleanup happens after the decision is recorded, and belongs to the Release
Manager, not the UAT Tester.
- Report platform-specific rendering issues clearly.
Must Not
- Post a minimal or simulation artifact (reject files containing "minimal" or "simulation" in the name).
- Pass the comprehensive demo as a
--reportargument (added automatically). - Leave UAT PRs open after testing completes.
- Modify any source code during UAT.
Pre-requisites
- Git submodules initialized:
git submodule update --init --recursive - GitHub UAT: Authentication is automatic for coding agents (uses
GHUATTOKEN). For local dev:gh auth login. - Azure DevOps UAT: Authentication is automatic for coding agents (uses
AZDOUATTOKEN→AZUREDEVOPSEXTPAT). For local dev: setAZUREDEVOPSEXTPAT.
Recommended: Single Wrapper Command
# Minimum: one feature-specific report with test instructions
scripts/uat-run.sh \
--report artifacts/<feature-specific-report>.md \
--instructions "In azurerm_key_vault_secret.audit_policy, verify key_vault_id displays as 'Key Vault \`kv-name\` in resource group \`rg-name\`' instead of full /subscriptions/ path"
# Multiple feature-specific reports (all with instructions):
scripts/uat-run.sh \
--report artifacts/feature-a.md \
--instructions "Verify feature A renders correctly" \
--report artifacts/feature-b.md \
--instructions "Verify feature B renders correctly"
# GitHub only:
scripts/uat-run.sh \
--report artifacts/<feature>.md \
--instructions "..." \
--platform github
# Create PRs without polling (for manual review workflow):
scripts/uat-run.sh \
--report artifacts/<feature>.md \
--instructions "..." \
--create-only
# After the Maintainer records the gate decision, the Release Manager cleans up:
scripts/uat-run.sh --cleanup-last
What the Script Does
- Validates that all provided artifacts are up-to-date (built from current branch code)
- Auto-configures GitHub/AzDO authentication for coding agent environments
- Creates a unique UAT branch in the UAT repos
- Creates UAT PR(s) on GitHub and/or Azure DevOps
- Posts each feature report as a PR comment with the format:
``` ## Test Instructions <instructions you provided>
## Report <artifact content> ```
- Automatically appends
artifacts/comprehensive-demo-simple-diff.md(GitHub) andartifacts/comprehensive-demo.md(AzDO) as the final regression test comment - Polls for approval (unless
--create-only) - Cleans up PRs and branches on approval
0. Rebase on Latest Main
Before running UAT, ensure your branch is up to date to avoid testing against stale base changes. Use the git-rebase-main skill.
1. Generate Fresh Artifacts (if needed)
# If script fails with "Artifact is outdated":
scripts/generate-demo-artifacts.sh
# For feature-specific artifacts:
dotnet run --project src/Oocx.TfPlan2Md/Oocx.TfPlan2Md.csproj -- \
[your args] --output artifacts/<feature-specific>.md
Troubleshooting
| Issue | Solution |
|---|---|
| "Artifact is outdated" | Run scripts/generate-demo-artifacts.sh to regenerate all demo artifacts |
| "At least one --report/--instructions pair is required" | Provide --report <file> --instructions "<text>" |
| "Each --report must have a corresponding --instructions" | Check that --report and --instructions are properly paired |
| "GHUATTOKEN is not set" | Export it in your shell: export GHUATTOKEN=... |
| "AZDOUATTOKEN not set" | Export it in your shell: export AZDOUATTOKEN=... |
| Submodule not initialized | Run git submodule update --init --recursive |
| "Branch already exists" | Old UAT branch still present; run scripts/uat-run.sh --cleanup-last |