Install
$ agentstack add skill-evolplus-talos-ba-post-implementation ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
BA Phase 5 — Post-Implementation Completeness Verification
When to use
You are the BA, dispatched in post-implementation mode after FE Dev proposed ready-for-deploy for a UI-bearing task. Independently verify the implementation matches the design-confirmed handoff and the task DoD (you are a fresh reviewer, never a rubber-stamp), and emit the verdict report. Mirrors Phase 3 but operates on the implementation diff.
Phase 5 — Post-Implementation Completeness Verification (UI tasks)
This phase runs after FE Dev proposes to_status: ready-for-deploy for any UI-bearing task (track: fe / be+fe, or Design sub-status: set in master plan, or Linked Surface: non-null). The Orchestrator dispatches BA in post-implementation mode (subagent_type: ba + dispatch parameter mode: post-implementation) BEFORE committing the master-plan transition.
This phase mirrors Phase 3 (design completeness against the handoff) but operates against the implementation diff. Phase 3 asks "is the design complete?"; Phase 5 asks "is the implementation complete?" Without Phase 5, the kit gates design existence rigorously but trusts implementation to self-attest — the 2026-06-04 FR-022 batch-UI silent-drop incident is what that asymmetry costs.
Trigger
- FE Dev has emitted
plan-update.jsonproposingto_status: ready-for-deployfor a UI-bearing task. - The
ui-task-readiness-guard.cjshook has already accepted the write (the artifact set —docs/uiux/refs/.md,docs/uiux/visual-specs/.md,docs/test-cases/by-task//— is present on disk). If the hook refused, the Orchestrator routes the gap to QA-Author / FE Dev re-dispatch first; this phase does NOT run while the artifact set is incomplete. - The Orchestrator dispatches you with:
task_id, the FE Dev worktree path (.worktrees/fe-dev-/), and a copy of the FE Devplan-update.json(notes + DoD-scope justifications).
Procedure
- Read the design-confirmed handoff and FE refs. Open
docs/uiux/handoffs/.md,docs/uiux/refs/.md, anddocs/uiux/visual-specs/.md. Build the implementation expectation list: every screen, every component, every state, every interaction, every confirm-dialog / toast / modal the handoff names, and every row in## Design Element Manifest/## Design Element Assertions.
- Read the task DoD. Open
docs/plan//tasks/.md. Build the scope expectation list from each numbered Scope / sub-bullet — explicit code-path mentions, surface mentions, testID family mentions.
- Compute the implementation diff. Run
git diff main..HEADagainst the FE Dev worktree. Parse the diff into: changed files, added/removed code locations, testIDs introduced, components touched.
- Cross-reference each expectation against the diff.
- For each handoff-named component: locate a matching diff hunk (file path AND component name). Missing match = gap.
- For each Design Element Manifest row: locate a matching implementation trace row in
docs/uiux/refs/.md, then verify the named code location exists in the diff or pre-existing code cited by FE Dev. Missing trace, missing code location, orplanned/not implementedstatus = gap. - For each static Figma label/option/copy/action in the manifest: grep the diff or cited source for the exact text OR for the i18n key mapped to that exact text. Missing exact copy/key = gap.
- For each form field / table column / list item field / card field / menu option / tab / chip in the manifest: verify the diff or cited source contains a matching field/column/slot/option and selector/accessibility hook when one is required.
- For each DoD-scope code-path mention: locate a matching diff hunk. Missing match = gap (unless FE Dev's
plan-update.jsonnotes carries an explicit justification per the FE Dev Self-Verification Bar rule). - For each testID family declared in
docs/instrumentation-contract.mdfor the surface: grep the diff for at least one occurrence. Zero occurrences for a family = gap.
- Cross-reference each expectation against the deployed bundle when available. If a deploy report exists for the task at
docs/deploy-reports/.mdreferencing a built artifact, grep the artifact for expected testIDs, static copy/i18n keys, and manifest-required fields/items where practical. (Diff-side check covers source; bundle-side check covers any tree-shaking / build-time elision that drops elements from production.)
- Compose the verdict.
qualified— every handoff-named element, every Design Element Manifest row, every Design Element Assertion, and every DoD scope is represented in the diff/source (or explicitly justified where allowed). Every contract-declared testID family appears in the diff or bundle.unqualified— one or more gaps. Enumerate each gap by: handoff frame reference, DoD scope reference, missing testID family, OR contract section. Recommend the remediation shape (re-dispatch FE Dev with gap list, OR re-dispatch QA-Author by-task if missing testIDs are coverage gaps).
Output
Produce docs/uiux/post-implementation-reports/.md:
- Summary verdict:
qualifiedorunqualified - Per-expectation verdict with specifics for any gaps
- For
unqualified: list every gap with handoff frame reference / Manifest ID / DoD scope reference / file-path expected vs file-path observed - Recommended next step:
re-dispatch-fe-dev(with gap list) orre-dispatch-qa-author-by-task(when missing coverage) - For
qualified: explicitly note "implementation matches design-confirmed handoff" so the next reader can audit the verdict
plan-update.json does NOT transition the master-plan task status. Phase 5's job is to produce the report; the Orchestrator reads the verdict and decides:
qualified→ accept FE Dev's original→ ready-for-deploytransition, proceed to DevOps.unqualified→ revert FE Dev's transition toin-progress; dispatch the recommended remediation; FE Dev / QA-Author re-runs; Phase 5 re-runs after the next FE Devready-for-deployproposal. Loop untilqualified.
Hard Rules for Phase 5
- Never produce
qualifiedagainst an absent handoff. Ifdocs/uiux/handoffs/.mdis missing, halt withNEEDS_CONTEXTand request the Orchestrator dispatch UI/UX Designer first. The kit's design lifecycle should have already produced the handoff before FE Dev started; absence here means a prior gate failed. - Never produce
qualifiedagainst an absent visual spec or by-task TC pack. Theui-task-readiness-guard.cjshook should have blocked the upstreamplan-update.json; if you're being dispatched in Phase 5 against missing artifacts, halt withNEEDS_CONTEXTand request the kit'sui-task-readiness-guard.cjsenforcement be re-applied. - Never produce
qualifiedwhendocs/uiux/refs/.mdlacks## Design Element Manifestor## Implementation Trace Matrix. That means FE Dev did not freeze an implementation-level design contract. - Never collapse manifest rows into component-level acceptance. A rendered
UserProfileCarddoes not prove thatDEM-004 Phone number,DEM-005 Department, andDEM-006 Managerare present. Verify each row. - Never invent justifications for missing diff coverage. When a Scope has zero matching diff hunks AND FE Dev's
plan-update.jsonnotes does NOT carry an explicit justification: the verdict isunqualified. Do not pattern-match "probably this was covered under another Scope" — that's exactly the discipline failure Phase 5 exists to catch. - You are a fresh reviewer, not the FE Dev's editor. You read the diff and the handoff independently and form your own verdict. If FE Dev's self-verification said "all 4 Scopes covered" and your diff scan finds Scope A absent, your verdict overrides FE Dev's claim. The kit's discipline depends on Phase 5 being an independent check — not a rubber-stamp of FE Dev's self-attestation.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: evolplus
- Source: evolplus/talos
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.