用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/oimiragieo/agent-studio --skill uat-verify命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
Agent frontmatter enhancements — disallowedTools, mcpServers scoping, fork_eligible field
Context management — pre-compact persistence, threshold alignment, microcompact/circuit breaker detection
Hook enhancements — updatedInput for bash safety prefixes, suppressOutput for verbose blocks, denial-based routing feedback
正在显示 SKILL.md
| name | uat-verify |
| description | Verify completed work against acceptance criteria, collect evidence, and produce a PASS/FAIL UAT report |
| version | 1.0.0 |
| tools | ["Read","Bash","Grep","Glob","TaskUpdate"] |
| source | builtin |
| trust_score | 100 |
| provenance_sha | be9f7b3ee10b09d8 |
Systematically verify that a completed feature or task satisfies every acceptance criterion before marking work done. Produces a structured PASS/FAIL report with concrete evidence.
Skill({ skill: 'uat-verify' })
Invoke when:
Read the task, plan, or user story:
# Read task details
TaskGet({ taskId: '<id>' })
# or read plan file
Read('.claude/context/plans/<feature>-plan.md')
Extract all acceptance criteria into a numbered list. Look for:
For each criterion, execute verification steps:
# Run automated tests
node --test tests/path/to/feature.test.cjs
# Execute feature and capture output
Bash({ command: '<command that exercises the feature>' })
# Inspect implementation
Read('<path/to/implementation/file>')
# Search for required patterns
Grep({ pattern: '<pattern>', path: '<directory>' })
Tag every output to the criterion it evidences.
For each criterion:
Use the UAT results template:
Read('.claude/templates/uat-results.md')
Fill in all placeholders. Write the completed report to:
.claude/context/reports/backend/uat-{feature}-{YYYY-MM-DD}.md
Then call:
TaskUpdate({
taskId: '<id>',
status: 'completed',
metadata: {
summary: 'UAT complete: PASS/FAIL — N/M criteria satisfied',
reportPath: '.claude/context/reports/backend/uat-{feature}-{YYYY-MM-DD}.md',
},
});
.claude/workflows/enterprise/verify-phase-uat.md — detailed 5-phase workflow.claude/templates/uat-results.md — report template