maintain-verification-skill

Audits and corrects a project's verification skill and feature map against live application behavior.

Updated Aug 28, 2026
One-click install
npx skills add https://github.com/jeremybrasher/grokbot-skills --skill maintain-verification-skill-jeremybrasher
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: maintain-verification-skill
Source: https://github.com/jeremybrasher/grokbot-skills/tree/main/collections/pstack/skills/maintain-verification-skill
Command: npx skills add https://github.com/jeremybrasher/grokbot-skills --skill maintain-verification-skill-jeremybrasher

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Feature maps and verification skills drift out of sync with the application as code changes, leaving documentation that describes behavior the app no longer has. This Skill runs a periodic upkeep pass that re-verifies every documented feature from source and live execution, then ships at most one PR of proven corrections. ## Core Features & Use Cases - Parallel source review: Launches one read-only subagent per feature file to explain how each feature works from source and flag likely documentation drift with citations. - Mandatory live verification: Drives every feature in a real session (server, UI, or CLI) with health-check, evidence-preservation, and cleanup invariants, even when the source review looks clean. - Scoped, honest outcomes: Edits only the verification skill's own directory, never product code, and reports one of three outcomes: clean, changed (one PR of proven fixes), or blocked with the exact cause. - Use Case: After a month of product changes, run the pass to confirm the verify skill's feature map still matches reality, fix drifted docs and broken harness scripts, and ship a single corrections PR. ## Quick Start Ask the agent to run /maintain-verification-skill to audit the project's verification skill against the current application.

Frequently Asked Questions about maintain-verification-skill

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

FAQPage Schema
How do I keep a verification feature map up to date?▼

Run a periodic maintenance pass that reads every feature file from source, exercises each feature live in the app, and fixes confirmed drift. This Skill automates that loop and ships at most one PR of proven corrections.

How to detect documentation drift in a project?▼

Launch one read-only subagent per feature file to explain the feature from source and flag likely drift with citations, then confirm findings by driving the feature live. Spot-check cited drift rather than re-proving clean claims.

Does this skill modify product code during an audit?▼

No. Edit scope is limited to the verification skill's own directory: its SKILL.md, feature files, and harness scripts. Broken app behavior is recorded as a product gap for the user, never patched over in docs.

What happens if a feature cannot be reached during live verification?▼

It is marked verified-unreachable only with the concrete prerequisite (auth, entitlement, OS, external state) and the route attempted. If the map omits that prerequisite, the omission itself is treated as documentation drift.

When should I not run a verification-skill maintenance pass?▼

Do not run it when required inputs or write authority are missing, when no verification skill exists yet (use /create-verification-skill first), or when multiple candidate skills exist and the target is ambiguous.