From srnnkls-tropos
Evidence-based completion claims. Use before claiming work is complete, fixed, or passing - requires running verification commands and confirming output before any success claims.
npx claudepluginhub joshuarweaver/cascade-code-general-misc-2 --plugin srnnkls-troposThis skill uses the workspace's default tool permissions.
Claiming work is complete without verification is dishonesty, not efficiency.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Claiming work is complete without verification is dishonesty, not efficiency.
Core principle: Evidence before claims, always.
NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE
If you haven't run the verification command in this message, you cannot claim it passes.
BEFORE claiming any status:
1. IDENTIFY: What command proves this claim?
2. RUN: Execute the FULL command (fresh, complete)
3. READ: Full output, check exit code, count failures
4. VERIFY: Does output confirm the claim?
- If NO: State actual status with evidence
- If YES: State claim WITH evidence
5. ONLY THEN: Make the claim
Skip any step = lying, not verifying
| Claim | Requires | Not Sufficient |
|---|---|---|
| Tests pass | Test output: 0 failures | Previous run, "should pass" |
| Linter clean | Linter output: 0 errors | Partial check |
| Build succeeds | Build command: exit 0 | Linter passing |
| Bug fixed | Test symptom: passes | Code changed |
| Regression test | Red-green verified | Test passes once |
| Agent completed | VCS diff shows changes | Agent reports "success" |
| Requirements met | Line-by-line checklist | Tests passing |
Tests:
DO: [Run test] [See: 34/34 pass] "All tests pass"
DON'T: "Should pass now" / "Looks correct"
Regression tests (TDD Red-Green):
DO: Write -> Run (pass) -> Revert fix -> Run (MUST FAIL) -> Restore -> Run (pass)
DON'T: "I've written a regression test" (without red-green)
Build:
DO: [Run build] [See: exit 0] "Build passes"
DON'T: "Linter passed" (linter != compiler)
Requirements:
DO: Re-read plan -> Create checklist -> Verify each -> Report
DON'T: "Tests pass, phase complete"
Agent delegation:
DO: Agent reports -> Check VCS diff -> Verify changes -> Report
DON'T: Trust agent report
| Excuse | Reality |
|---|---|
| "Should work now" | RUN the verification |
| "I'm confident" | Confidence != evidence |
| "Just this once" | No exceptions |
| "Linter passed" | Linter != compiler |
| "Agent said success" | Verify independently |
| "Partial check is enough" | Partial proves nothing |
ALWAYS before:
Use with:
code-test - Run tests before claiming they passcode-debug - Verify fix before claiming bug resolvedtask-dispatch - Verify each task before marking completegit-worktree-use - Verify baseline before and after