Verifies if a statement is true by checking your project's code and documentation.
Verifies statements against your actual codebase and docs. Use it to fact-check technical details before writing specs, updating clients, or presenting project information.
/plugin marketplace add wasabeef/claude-code-cookbook/plugin install cook-en@claude-code-cookbookVerifies if a statement is true by checking your project's code and documentation.
# Basic usage
/check-fact "The Flutter app uses Riverpod"
# Check multiple facts at once
/check-fact "This project uses GraphQL and manages routing with auto_route"
# Check technical details
/check-fact "JWT is used for authentication, and Firebase Auth is not used"
Where I Look (in order)
What You'll See
✅ Correct - Statement matches the code exactly❌ Incorrect - Statement is wrong⚠️ Partially correct - Some parts are right, some aren't❓ Cannot determine - Not enough info to checkProof I Provide
## Fact Check Results
### What You Asked
"[Your statement]"
### Verdict
[✅/❌/⚠️/❓] [True/False/Partial/Unknown]
### Evidence
- **File**: `path/to/file.dart:123`
- **Code**: [The actual code]
- **Note**: [Why this proves it]
### Details
[If wrong, here's what's actually true]
[If partial, here's what's missing]
[If unknown, here's what I'd need to check]
# Check the tech stack
/check-fact "This app is built with Flutter + Riverpod + GraphQL"
# Check if a feature exists
/check-fact "Dark mode is implemented and can be switched from user settings"
# Check architecture choices
/check-fact "All state management is done with Riverpod, BLoC is not used"
# Check security setup
/check-fact "Authentication tokens are encrypted and stored in secure storage"
# Check dependencies
ls -la && find . -name "pubspec.yaml" -exec cat {} \;
/check-fact "The main dependencies used in this project are..."
# Check how something is built
grep -r "authentication" . --include="*.dart"
/check-fact "Authentication is custom built, not using third-party auth"
# Check if docs match reality
cat README.md
/check-fact "Everything in the README is actually implemented"