npx claudepluginhub r3dlex/oh-my-auggie --plugin oh-my-auggieThis skill uses the workspace's default tool permissions.
<Purpose>
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Guides root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Writes implementation plans from specs for multi-step tasks, mapping files and breaking into TDD bite-sized steps before coding.
Share bugs, ideas, or general feedback.
<Use_When>
<Do_Not_Use_When>
<Why_This_Exists> "Looks good" is not verification. Many failed implementations passed because someone declared them complete without running fresh evidence. Verify requires that every claim be tested before it's accepted. </Why_This_Exists>
<Execution_Policy>
Extract the specific assertion to verify:
Claim: "<the exact statement being verified>"
For the claim, determine:
Run the verification command and capture output:
$ <verification command>
<actual output>
## Verification: <claim>
**Evidence:**
<quoted relevant output>
**Verdict:** [PASS — claim confirmed | FAIL — claim disproved | UNCERTAIN — insufficient evidence]
**Explanation:** <brief interpretation of what the evidence shows>
Present the verdict with the evidence citation. If UNCERTAIN, state what additional evidence is needed.
<Tool_Usage>
Bash to run verification commandsRead to examine file contents as evidenceGrep to trace code pathsmcp__plugin_oh-my-claudecode_t__lsp_diagnostics for type-check verification
</Tool_Usage>Evidence: $ cd plugins/oma && npx tsc --noEmit [no output — exit code 0]
Verdict: PASS — claim confirmed. tsc exited with code 0, no errors in output.
</Good>
<Bad>
"TypeScript should compile since we just fixed the types."
Why bad: "Should" is not evidence. Run tsc and cite the actual output.
</Bad>
</Examples>
<Final_Checklist>
- [ ] Claim parsed and stated explicitly
- [ ] Verification command executed
- [ ] Actual output captured and quoted
- [ ] Verdict is evidence-based, not assumption-based
- [ ] If fail/disprove: the evidence is stated alongside the verdict
</Final_Checklist>