From 3968c13aa275babce193ca7938e9ac782699e9a7 Mon Sep 17 00:00:00 2001 From: Florian BRUNIAUX Date: Mon, 19 Jan 2026 17:41:56 +0100 Subject: [PATCH] docs: sync README badges + fix template count methodology MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update Lines badge: 10,900+ → 11,100+ (Trust Calibration section added) - Update Templates badge: 65 → 61 (exclude README/index files) - Update Commands: 15 → 18 (add /learn:teach, /learn:quiz, /learn:alternatives) - Fix check-landing-sync.sh: exclude README.md and index.md from template count - Restructure README: move Privacy/Community to bottom, remove newsletter callout Co-Authored-By: Claude Opus 4.5 --- README.md | 41 +++++++++++++++++++---------------- scripts/check-landing-sync.sh | 3 ++- 2 files changed, 24 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index f7b7a7d..3f3d056 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@

Stars - Lines - Templates + Lines + Templates Quiz

@@ -85,18 +85,6 @@ Save as `CLAUDE.md` in your project root. Claude reads it automatically. --- -> 🇫🇷 **Communauté francophone** | Tu veux parler de dev et d'IA ? Challenger des idées ? Présenter des outils ? En découvrir ? -> **[Dev With AI](https://www.devw.ai/)** rassemble près de 1500 devs sur Slack, tous niveaux et toutes technos confondus — enthousiastes comme sceptiques. -> Meetups à Paris, Bordeaux et Lyon. - ---- - -> **Privacy Notice**: Claude Code sends your prompts, file contents, and MCP results to Anthropic servers. -> - **Default**: 5 years retention (training enabled) | **Opt-out**: 30 days | **Enterprise**: 0 -> - **Action**: [Disable training](https://claude.ai/settings/data-privacy-controls) | [Full privacy guide](./guide/data-privacy.md) - ---- - ## Get Started in 60 Seconds **Option A: One-liner** (no clone needed) @@ -435,7 +423,7 @@ Weak Areas (< 75%): ``` claude-code-ultimate-guide/ ├── guide/ # 📖 Core documentation -│ ├── ultimate-guide.md # Complete reference (~10900 lines) +│ ├── ultimate-guide.md # Complete reference (~11100 lines) │ ├── cheatsheet.md # 1-page printable reference │ ├── architecture.md # How Claude Code works internally │ ├── adoption-approaches.md # Team implementation strategies @@ -485,7 +473,7 @@ claude-code-ultimate-guide/ Copy-paste templates from [`examples/`](./examples/) for immediate use:
-Slash Commands (15 commands) +Slash Commands (18 commands) | Command | Purpose | Highlights | |---------|---------|------------| @@ -504,6 +492,9 @@ Copy-paste templates from [`examples/`](./examples/) for immediate use: | [/explain](./examples/commands/explain.md) | Code explanations (3 depths) | Files, functions, concepts | | [/optimize](./examples/commands/optimize.md) | Performance analysis | Runtime, memory, bundle | | [/ship](./examples/commands/ship.md) | Pre-deploy checklist | Tests, security, migrations | +| [/learn:teach](./examples/commands/learn/teach.md) | Step-by-step explanations | Progressive depth, practical examples | +| [/learn:quiz](./examples/commands/learn/quiz.md) | Test code understanding | Multi-level questions, interactive | +| [/learn:alternatives](./examples/commands/learn/alternatives.md) | Compare approaches | Trade-offs, recommendations |
@@ -618,6 +609,16 @@ This guide is the result of several months of daily practice with Claude Code. I Written in English for wider reach. French is my native language—I can translate directly or leverage AI + community for other languages. Request translations via [issues](../../issues). +### Privacy + +Claude Code sends your prompts, file contents, and MCP results to Anthropic servers. +- **Default**: 5 years retention (training enabled) | **Opt-out**: 30 days | **Enterprise**: 0 +- **Action**: [Disable training](https://claude.ai/settings/data-privacy-controls) | [Full privacy guide](./guide/data-privacy.md) + +### Community + +🇫🇷 **Communauté francophone**: [Dev With AI](https://www.devw.ai/) rassemble près de 1500 devs sur Slack — meetups à Paris, Bordeaux et Lyon. + --- ## 🤝 Contributing @@ -646,7 +647,7 @@ Found an error? Have a suggestion? See [CONTRIBUTING.md](./CONTRIBUTING.md) for ### Community Collections -- [awesome-claude-code](https://github.com/hesreallyhim/awesome-claude-code) — Extensive tool library (19.9k stars) +- [awesome-claude-code](https://github.com/hesreallyhim/awesome-claude-code) — Extensive tool library - [awesome-claude-skills](https://github.com/ComposioHQ/awesome-claude-skills) — Custom skills - [awesome-claude-code-subagents](https://github.com/VoltAgent/awesome-claude-code-subagents) — Full-stack agents @@ -743,9 +744,11 @@ If this guide saved you time, helped you master Claude Code, or inspired your wo ## 📬 Stay Updated -Get notified about major updates, new templates, and Claude Code best practices: +Get notified about major updates and new templates: -**[Subscribe to the newsletter](https://buttondown.com/claude-code-guide)** — No spam, 1-2 emails/month max, unsubscribe anytime. +- **[Watch releases](../../releases)** — GitHub notifications for new versions only +- **[Star & Watch](../../)** — All activity (releases, discussions, issues) +- **[Discussions](../../discussions)** — Join the community, share workflows --- diff --git a/scripts/check-landing-sync.sh b/scripts/check-landing-sync.sh index d79be38..b8cef8e 100755 --- a/scripts/check-landing-sync.sh +++ b/scripts/check-landing-sync.sh @@ -52,7 +52,8 @@ echo "" # =================== # 2. TEMPLATES COUNT # =================== -TEMPLATE_COUNT=$(find "$GUIDE_DIR/examples" -type f \( -name "*.md" -o -name "*.sh" -o -name "*.ps1" -o -name "*.yml" -o -name "*.yaml" -o -name "*.json" \) | wc -l | tr -d ' ') +# Count actual templates, excluding README/index documentation files +TEMPLATE_COUNT=$(find "$GUIDE_DIR/examples" -type f \( -name "*.md" -o -name "*.sh" -o -name "*.ps1" -o -name "*.yml" -o -name "*.yaml" -o -name "*.json" \) -not -name "README.md" -not -name "index.md" | wc -l | tr -d ' ') # Check index.html LANDING_TEMPLATES_INDEX=$(grep -oE '[0-9]+ Templates' "$LANDING_DIR/index.html" | head -1 | grep -oE '[0-9]+')