analyze-dependencies
Analyze project dependencies and evaluate architectural health. Trigger with "analyze dependencies", "detect circular dependencies", "architecture issues?",…
Verify information accuracy against codebase and documentation. Trigger with "is this correct?", "fact check", "verify this", "is this accurate?".
$ npx -y skills add wasabeef/claude-code-cookbook --skill check-fact --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/check-factContext preview
The summary Claude sees to decide when to auto-load this skill.
Verify information accuracy against codebase and documentation. Trigger with "is this correct?", "fact check", "verify this", "is this accurate?".
description: 'Verify information accuracy against codebase and documentation. Trigger with "is this correct?", "fact check", "verify this", "is this accurate?".' allowed-tools: - Read - Grep - Glob - WebSearch - WebFetch
Verifies 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"
1. **Where I Look (in order)**
2. **What You'll See**
3. **Proof 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"A collection of commands, roles, and automation scripts for Claude Code. Automate your workflow without unnecessary confirmations, allowing you to focus on what matters.
Repo: wasabeef/claude-code-cookbook
Analyze project dependencies and evaluate architectural health. Trigger with "analyze dependencies", "detect circular dependencies", "architecture issues?",…
Performance analysis based on Core Web Vitals with UX scoring. Trigger with "analyze performance", "improve speed", "check Core Web Vitals", "page speed",…
Evaluate and improve AI prompt quality. Trigger with "check this prompt", "evaluate prompt quality", "improve this prompt".
Generate commit messages from staged changes. Trigger with "suggest commit message", "generate commit message", "what should the commit say?", "write commit…
Search technical documentation via Context7 MCP. Trigger with "check the docs", "look up documentation", "how to use this library?", "API reference".
Suggest design patterns and evaluate SOLID principles. Trigger with "suggest design patterns", "which patterns apply?", "check SOLID principles", "detect…