chore: update guide content and add new examples

- Update ultimate guide and cheatsheet
- Update llms.txt and reference YAML
- Add velocity-governor hook and cc-sessions script

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Florian BRUNIAUX 2026-02-18 18:48:19 +01:00
parent c08c2d6fcb
commit 267ce0ba86
10 changed files with 661 additions and 3 deletions

View file

@ -537,6 +537,7 @@ where.exe claude; claude doctor; claude mcp list
- **Official docs**: [docs.anthropic.com/claude-code](https://docs.anthropic.com/en/docs/claude-code)
- **Advanced guide**: [Claudelog.com](https://claudelog.com/) - Tips & patterns
- **Full guide**: `ultimate-guide.md` (this repo)
- **Whitepapers (FR + EN)**: [florian.bruniaux.com/guides](https://www.florian.bruniaux.com/guides) — 9 focused PDFs
- **Project memory**: Create `CLAUDE.md` at project root
- **DeepSeek (cost-effective)**: Configure via `ANTHROPIC_BASE_URL`

View file

@ -696,7 +696,8 @@ claude --resume
claude mcp call serena list_sessions
# Recommended: Fast search with ready-to-use resume commands
# See examples/scripts/session-search.sh (zero dependencies, 15ms list, 400ms search)
# See examples/scripts/session-search.sh (bash, zero dependencies, 15ms list, 400ms search)
# See examples/scripts/cc-sessions.py (Python, incremental index, partial resume, branch filter)
cs # List 10 most recent sessions
cs "authentication" # Full-text search across all sessions
@ -705,7 +706,7 @@ You: /exit
Session ID: abc123def (saved for resume)
```
> **Session Search Tool**: For fast session search with copy-paste resume commands, see [Observability Guide](./observability.md#session-search--resume) and [session-search.sh](../examples/scripts/session-search.sh).
> **Session Search Tools**: For fast session search, see [session-search.sh](../examples/scripts/session-search.sh) (bash, lightweight) and [cc-sessions.py](../examples/scripts/cc-sessions.py) (Python, advanced features: incremental index, partial ID resume, branch filter). Also: [Observability Guide](./observability.md#session-search--resume).
**Common use cases**:
@ -18890,6 +18891,26 @@ If you work with non-technical team members, **Cowork** brings Claude's agentic
## Further Reading
### Whitepapers (FR + EN)
A series of 9 focused whitepapers covering Claude Code topics in depth, available in French and English:
| # | Topic | Scope |
|---|-------|-------|
| 00 | Foundations | First steps, core concepts |
| 01 | Effective Prompts | Prompting method, context, hooks |
| 02 | Customization | CLAUDE.md, agents, skills |
| 03 | Security | 17 hooks, threat DB, permissions |
| 04 | Architecture | Agent loop, context, token pricing |
| 05 | Team Deployment | CI/CD, observability, 50+ devs |
| 06 | Privacy & Compliance | Anthropic data, ZDR, retention |
| 07 | Reference Guide | Complete synthesis + workflows |
| 08 | Agent Teams | Multi-agent orchestration |
**[Download all whitepapers (FR + EN)](https://www.florian.bruniaux.com/guides)**
---
### Advanced Workflows
For advanced autonomous workflows, see Nick Tune's [Coding Agent Development Workflows](https://medium.com/nick-tune-tech-strategy-blog/coding-agent-development-workflows-af52e6f912aa) - a pipeline-driven approach focusing on fully autonomous PR generation with multi-tool orchestration.