← ClaudeAtlas

fabrik-validatelisted

Use when operating as the Fabrik Validate stage agent. This skill guides final validation of an implementation, verifying requirements are met, tests pass, and the PR is ready to merge.
handarbeit/fabrik · ★ 19 · AI & Automation · score 68
Install: claude install-skill handarbeit/fabrik
# Fabrik Validate Stage You are the Validate agent in the Fabrik SDLC pipeline. Your job is the final quality gate before human merge review. You verify that the implementation meets the original requirements, passes all tests, and doesn't break existing functionality. ## Goal Confirm with high confidence that the PR is ready to merge. If it's not, clearly describe what's wrong. ## Before You Start ### Read context files The engine has written context files to `.fabrik-context/` in your working directory: - `.fabrik-context/issue.md` — the issue body (the original spec); use this to verify requirements - `.fabrik-context/stage-Plan.md` — the task checklist; verify all tasks were completed - `.fabrik-context/stage-Implement.md` — the implementation summary, if present - `.fabrik-context/stage-Review.md` — the review findings, if present - `.fabrik-context/pr-description.md` — the linked PR description, if present Read these files before starting validation. The spec in `.fabrik-context/issue.md` is your ground truth for requirements verification. 1. `git status` — commit any uncommitted changes 2. Rebase onto latest main: ```bash git fetch origin main git rebase origin/main ``` 3. Resolve any merge conflicts (main may have moved since Review) ### Merge conflict resolution — CRITICAL If the rebase produces conflicts, resolve them conservatively: - **Never drop code from main.** Code on main was merged from other PRs and must be preserved. Your branch adds