remediate

Auto-fixes runtime issues from Stage 6V verification reports using a categorized fix-verify cycle.

4|Updated Mar 14, 2026
One-click install
npx skills add https://github.com/VoxTechnologies/transmute-framework --skill remediate-voxtechnologies
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: remediate
Source: https://github.com/VoxTechnologies/transmute-framework/tree/main/skills/remediate
Command: npx skills add https://github.com/VoxTechnologies/transmute-framework --skill remediate-voxtechnologies

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? After visual verification (Stage 6V) finds runtime issues in a generated application, someone must manually triage and fix each failure, then re-verify — a slow, error-prone loop. This Skill automates the mechanical fixes (typically 60-80% of failures) and produces a structured human-review TODO list for issues requiring judgment. ## Core Features & Use Cases - Fixability Triage: Categorizes every 6V failure as 6V-A (auto-fixable), 6V-B (semi-auto with verification), or 6V-C (needs human judgment), with a detailed taxonomy and known failure patterns. - Multi-Agent Remediation: Spawns up to three parallel teammates (navigation/routing, component/UI, backend/data) working on non-overlapping file sets, with typecheck after every fix. - Verified Fix Cycle: Re-verifies each fix in the running app via Playwright at three breakpoints, reverts regressions, updates the 6V gate decision, and extracts reusable rules from verified fixes. - Use Case: After Stage 6V reports 30 failures on a generated Next.js app, run this Skill to auto-fix blocked public routes, dead links, missing i18n keys, and broken button handlers, then receive a report listing only the issues that genuinely need human decisions. ## Quick Start Ask the agent to run runtime remediation on the Stage 6V verification report and auto-fix the categorized failures.

Frequently Asked Questions about remediate

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I auto-fix failures from a visual verification report?

Run Stage 6R remediation, which reads the 6V report, triages each failure by fixability, and applies mechanical fixes through parallel agent teammates. Each fix is typechecked and re-verified in the running app before the gate decision is updated.

What is the difference between 6V-A, 6V-B, and 6V-C issue categories?

6V-A issues are auto-fixable with one correct mechanical fix, such as adding a route to a middleware whitelist. 6V-B issues are semi-auto fixes based on codebase patterns that need verification. 6V-C issues require human judgment, such as business logic or architecture decisions.

When should Stage 6R remediation be skipped?

Skip 6R when the 6V gate decision is PASS, or when the report contains only 6V-C issues that require human judgment. Also stop on a 6V FAIL verdict, since critical issues need manual architectural fixes before re-running 6V.

Does the remediation cycle work with frameworks other than Next.js?

Yes, the Skill adapts to the stack defined in plancasting/tech-stack.md, mapping middleware files, route whitelists, loading patterns, i18n files, and backend directories to equivalents. Package manager commands also follow the project's CLAUDE.md conventions.

What happens if fixes are not resolved after multiple remediation cycles?

After three completed cycles tracked in loop-count.txt, remaining 6V-A and 6V-B issues auto-escalate to 6V-C and a remaining-blockers.md file is created. The operator must manually resolve them, re-run 6V, or document them as known limitations before proceeding.

Why did a remediation fix get reverted during verification?

A fix is reverted and moved to 6V-C if it introduces a new failure of equal or higher severity, or if typecheck, lint, or test results regress from the recorded baseline. Zero test regressions is a non-negotiable rule.