skills/ancplua/verification-before-completion/SKILL.md
Force verification before claiming success or completion. Prevents false "it works" claims. Triggers when about to say "done", "complete", "works", "fixed", or "the implementation is ready". Requires actually running builds/tests and showing output before claiming success.
npx skillsauth add aiskillstore/marketplace verification-before-completionInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Force verification before claiming success or completion. Prevents false "it works" claims.
Claude often claims things "work" or are "complete" without actually verifying. This skill ensures actual verification happens before any success claim.
Activate this skill when you're about to say ANY of:
dotnet build passes (no errors)dotnet test passes (or explicit reason why skipped)| If you're about to say... | Stop and... | |---------------------------|-------------| | "This should work" | Actually test it | | "The fix is complete" | Run the build | | "I've implemented the feature" | Show test output | | "The bug is fixed" | Reproduce - fix - verify | | ".NET 10 preview supports..." | WebSearch to verify version | | "This is the correct approach" | Cite source or run tests |
Before ANY completion claim, show:
## Verification Checklist
### Build Status
- [ ] `dotnet build` - [PASS/FAIL]
- [ ] `dotnet test` - [PASS/FAIL/SKIPPED: reason]
### Verification Steps Performed
1. [What you actually did]
2. [What output you saw]
3. [What edge case you tested]
### Confidence
[high/medium/low] - [why]
### Ready to Claim Complete
[YES/NO] - [if NO, what's missing]
WRONG:
"I've fixed the null reference bug. The implementation is complete."
[No build run, no test run, no verification shown]
CORRECT:
"Let me verify the fix...
$ dotnet build
Build succeeded.
$ dotnet test --filter "NullReferenceTests"
Passed! 3/3 tests passing.
Verification complete. The null reference bug is fixed."
WRONG:
"This React component should render correctly now."
CORRECT:
"Let me verify...
$ npm run dev
[Shows browser screenshot or console output]
Component renders correctly. Tested:
- Initial load
- Empty state
- Error state
Verification complete."
This skill is the FINAL checkpoint before claiming completion:
[all other skills] - analysis complete
|
[implementation] - code written
|
[verification-before-completion] - THIS SKILL
|
+-- Run build
+-- Run tests
+-- Show output
+-- THEN claim success
|
[Present to user] - "Ready to proceed?"
If you didn't run it, you don't know if it works. If you didn't verify it, don't claim it's complete.
development
Apple Human Interface Guidelines for content display components. Use this skill when the user asks about charts component, collection view, image view, web view, color well, image well, activity view, lockup, data visualization, content display, displaying images, rendering web content, color pickers, or presenting collections of items in Apple apps. Also use when the user says how should I display charts, what's the best way to show images, should I use a web view, how do I build a grid of items, what component shows media, or how do I present a share sheet. Cross-references: hig-foundations for color/typography/accessibility, hig-patterns for data visualization patterns, hig-components-layout for structural containers, hig-platforms for platform-specific component behavior.
tools
Automate HelpDesk tasks via Rube MCP (Composio): list tickets, manage views, use canned responses, and configure custom fields. Always search tools first for current schemas.
testing
Expert Haskell engineer specializing in advanced type systems, pure functional design, and high-reliability software. Use PROACTIVELY for type-level programming, concurrency, and architecture guidance.
tools
GraphQL gives clients exactly the data they need - no more, no less. One endpoint, typed schema, introspection. But the flexibility that makes it powerful also makes it dangerous. Without proper controls, clients can craft queries that bring down your server. This skill covers schema design, resolvers, DataLoader for N+1 prevention, federation for microservices, and client integration with Apollo/urql. Key insight: GraphQL is a contract. The schema is the API documentation. Design it carefully.