# analyze > Run a full cognitive analysis on your Claude Code usage - Author: hugoguerra - Repository: hugoguerrap/cognitive-cloner - Version: 20260123211049 - Stars: 3 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/hugoguerrap/cognitive-cloner - Web: https://mule.run/skillshub/@@hugoguerrap/cognitive-cloner~analyze:20260123211049 --- --- description: Run a full cognitive analysis on your Claude Code usage allowed-tools: Bash, Read, Write, Glob --- # ClaudeIQ Analysis Runs a comprehensive analysis of your Claude Code conversations to calculate your IQ score. ## Instructions 1. First, verify the plugin is configured: ```bash "${CLAUDE_PLUGIN_ROOT}/scripts/check_setup.sh" || exit 1 ``` 2. Detect the project and count conversations: ```bash PROJECT_PATH=$(pwd | sed 's|/|-|g' | sed 's|^-||') CLAUDE_PROJECT="$HOME/.claude/projects/-$PROJECT_PATH" if [ -d "$CLAUDE_PROJECT" ]; then COUNT=$(ls -1 "$CLAUDE_PROJECT"/*.jsonl 2>/dev/null | wc -l | tr -d ' ') echo "Found $COUNT conversations to analyze" else echo "No Claude Code conversations found for this project" exit 1 fi ``` 3. Run the analysis: ```bash cd "${CLAUDE_PLUGIN_ROOT}" && source .venv/bin/activate && python main.py analyze -p "$CLAUDE_PROJECT" --verbose 2>&1 | grep -v "^$" | tail -50 ``` 4. Display results with HONEST feedback: - **Overall IQ Score** with percentile ranking - **Sub-scores** with brutally honest labels - **Top 3 Weaknesses** - what you're doing WRONG - **Top 3 Strengths** - what's actually working - **Achievements unlocked** 5. Show trends if previous analyses exist. ## Output Format Present results in a shareable scorecard: ``` ╔═══════════════════════════════════════════════════════════╗ ║ 🧠 ClaudeIQ: XX/100 (Top XX%) ║ ╠═══════════════════════════════════════════════════════════╣ ║ 📝 Prompt Quality: XX/100 "Label" ║ ║ 🎯 Context Efficiency: XX/100 "Label" ║ ║ 🔄 Iteration Speed: XX/100 "Label" ║ ║ 🤝 Delegation: XX/100 "Label" ║ ╠═══════════════════════════════════════════════════════════╣ ║ 💸 Tokens wasted: ~XX,XXX (~$X.XX) ║ ║ ⏱️ Time lost: ~X.X hours in extra iterations ║ ╠═══════════════════════════════════════════════════════════╣ ║ ❌ WEAKNESSES: ║ ║ 1. ... ║ ║ 2. ... ║ ║ ✅ STRENGTHS: ║ ║ 1. ... ║ ║ 2. ... ║ ╠═══════════════════════════════════════════════════════════╣ ║ 🏆 Achievements: X/17 unlocked ║ ╚═══════════════════════════════════════════════════════════╝ ``` ## Score Labels (Be Honest!) - 90-100: Elite (Top 1%) - "You're in the top tier" - 80-89: Advanced (Top 10%) - "Better than most" - 70-79: Competent (Top 35%) - "Average. Room for improvement." - 60-69: Below Average (Bottom 30%) - "You're wasting tokens" - 50-59: Poor (Bottom 10%) - "Significant inefficiencies" - <50: Inefficient - "You're burning money"