vertti/se-cove-claude-plugin
19 stars · Last commit 2026-01-27
SE-CoVe: Software Engineering Chain-of-Verification plugin for Claude Code
README preview
# SE-CoVe: Software Engineering Chain-of-Verification A Claude Code plugin that catches bugs in AI-generated code by verifying against requirements, not implementation. ## Why This Works When you ask an AI to review its own code, it's biased toward its solution. Meta's [Chain-of-Verification research](https://arxiv.org/abs/2309.11495) showed that **independent verification improves accuracy by 28%** - because the verifier checks against requirements, not the (possibly flawed) implementation. SE-CoVe applies this to code: the verifier never sees the draft solution. It answers verification questions by checking docs, searching your codebase, and reasoning about requirements - then a synthesizer compares findings and corrects errors. ## Built for Software Engineering Unlike general-purpose verification, SE-CoVe is designed specifically for code. Each agent understands **35+ software engineering claim categories** across three domains: ### Correctness Behaviors, logic flow, boundary conditions, error handling, API usage patterns ### Security Input validation, authentication, authorization, injection prevention, data exposure