diff --git a/CHANGELOG.md b/CHANGELOG.md index b3693b2..f815a85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +## [2.9.5] - 2026-01-12 + +### Added +- **README.md** - Deep Audit section with one-liner commands + - New row in "Not Sure Where to Start?" table + - `πŸ”¬ Deep Audit` section with two options: + - Quick Version (~10 sec): Single curl pipe to Claude + - Full Audit (~30 sec): Downloads YAML reference + scan for comprehensive analysis + - Outputs: Health score, prioritized findings, CLAUDE.md template, suggested extensions + +### Stats +- 1 file modified (README.md, ~35 lines added) +- Focus on one-command personalized audit experience + ## [2.9.4] - 2026-01-12 ### Added diff --git a/README.md b/README.md index 3c1bb77..f8aa24b 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,7 @@ claude | Need to evaluate/approve adoption | [PM Path](#-by-role-tailored-learning-paths) | 20 min | | Want to check your current setup | [Audit Your Setup](#-audit-your-setup) | 2 sec | | Want AI assistants to know Claude Code | [LLM Reference](#-llm-reference) | 1 curl | +| Want personalized recommendations | [Deep Audit](#-deep-audit-personalized-recommendations) | 30 sec | ### ⚑ Audit Your Setup @@ -90,6 +91,38 @@ curl -sL https://raw.githubusercontent.com/FlorianBruniaux/claude-code-ultimate- **What's inside**: Decision trees, command reference, context zones, MCP servers, agent templates, troubleshootingβ€”optimized for machine consumption. Points to line numbers in the [full guide](./english-ultimate-claude-code-guide.md) for deep dives. +### πŸ”¬ Deep Audit (Personalized Recommendations) + +Get a comprehensive audit with health score, prioritized findings, and custom templates for your project: + +**Quick Version** (~10 sec): +```bash +curl -sL https://raw.githubusercontent.com/FlorianBruniaux/claude-code-ultimate-guide/main/examples/scripts/audit-scan.sh | bash -s -- --json | claude -p "Analyze this Claude Code setup. Give: 1) Health score 0-100 2) Top 3 quick wins 3) CLAUDE.md template for detected stack. Be concise." +``` + +**Full Audit** (~30 sec, recommended): +```bash +# Copy entire block +REF=$(curl -sL https://raw.githubusercontent.com/FlorianBruniaux/claude-code-ultimate-guide/main/claude-code-reference.yaml) +SCAN=$(curl -sL https://raw.githubusercontent.com/FlorianBruniaux/claude-code-ultimate-guide/main/examples/scripts/audit-scan.sh | bash -s -- --json 2>/dev/null) +claude -p "Reference: +$REF + +My setup: +$SCAN + +Audit my Claude Code setup. Output: +1. Health Score (0-100) with priority breakdown +2. Findings table: Priority|Element|Status|Action +3. Top 3 quick wins (<5 min) +4. CLAUDE.md template (~60 lines) for my stack +5. Suggested agents/commands/hooks for my project type" +``` + +**What you get**: Health score, prioritized findings, stack-specific CLAUDE.md template, suggested extensions + +**Want maximum depth?** Use [claude-setup-audit-prompt.md](./claude-setup-audit-prompt.md) with `claude --ultrathink` + ### 🎯 By Role (Tailored Learning Paths) @@ -329,7 +362,7 @@ If this guide saved you time, helped you master Claude Code, or inspired your wo --- -*Version 2.9.4 | January 2026 | Crafted with Claude* +*Version 2.9.5 | January 2026 | Crafted with Claude*