Add stop-manual-testing: machine-checkable verification system for AI agent projects - #74
Open
Kaiji-Z wants to merge 2 commits into
Open
Add stop-manual-testing: machine-checkable verification system for AI agent projects#74Kaiji-Z wants to merge 2 commits into
Kaiji-Z wants to merge 2 commits into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this skill do?
Agent developers spend ~90% of dev time manually testing their agent: clicking through the UI, watching the run step by step, judging by gut feel whether it got better or worse. This skill attacks that pain directly.
stop-manual-testing has two phases:
Diagnosis (read-only): a 7-step audit of the project's verifiability — can the agent system run without the UI (ACI audit)? are intermediate states logged? are interfaces programmatic? what test infra exists? Outputs a priority-sorted gap list (P0/P1/P2) and updates the project's AGENTS.md.
Verification system build: helps stand up a machine-checkable verification system — regression suite built from happy paths, a two-layer judge (deterministic assertions + a clean-context LLM supervisor that scores but never judges), flag-based A/B regression runs, and a GATE (Declare-Verify-Enforce) mechanism that makes agent compliance visible and checkable. Orchestrates existing eval tools (DeepEval / LangSmith / pytest) rather than reinventing.
Design notes
Skill contents
stop-manual-testing/SKILL.md— entry point (announce + wait semantics)stop-manual-testing/references/VERIFICATION.md— protocol body (7-step diagnosis, GATE, two-layer judge, red lines, tool orchestration)No scripts, no runtime dependencies — pure instruction skill, MIT-licensed upstream (https://github.com/Kaiji-Z/stop-manual-testing).
Checklist
testing-strategy(that one covers writing unit/integration tests for project code; this one builds a verification system for the AI agent system itself)