diff --git a/README.md b/README.md index 4ccef5c..8c53ed0 100644 --- a/README.md +++ b/README.md @@ -174,7 +174,15 @@ Copy-paste templates from [`examples/`](./examples/) for immediate use: | [notification.sh](./examples/hooks/bash/notification.sh) | Notification | macOS sound alerts | | [auto-format.sh](./examples/hooks/bash/auto-format.sh) | PostToolUse | Auto-format with Prettier | -**[See Complete Catalog](./examples/README.md)** — Includes agents, skills, config templates +### GitHub Actions (CI/CD) + +| Workflow | Trigger | Purpose | +|----------|---------|---------| +| [claude-pr-auto-review.yml](./examples/github-actions/claude-pr-auto-review.yml) | PR open | Auto code review with inline comments | +| [claude-security-review.yml](./examples/github-actions/claude-security-review.yml) | PR open | Security scan (OWASP Top 10) | +| [claude-issue-triage.yml](./examples/github-actions/claude-issue-triage.yml) | Issue opened | Auto-triage with labels | + +**[See Complete Catalog](./examples/README.md)** — Includes agents, skills, memory templates, config files, workflows --- diff --git a/cheatsheet-en.md b/cheatsheet-en.md index d4a7f23..d143d38 100644 --- a/cheatsheet-en.md +++ b/cheatsheet-en.md @@ -6,7 +6,7 @@ **Written with**: Claude (Anthropic) -**Version**: 2.1 | **Last Updated**: January 2026 +**Version**: 2.8 | **Last Updated**: January 2026 --- @@ -364,4 +364,4 @@ where.exe claude; claude doctor; claude mcp list **Author**: Florian BRUNIAUX | [@Méthode Aristote](https://methode-aristote.fr) | Written with Claude -*Last updated: January 2026 | Version 2.0* +*Last updated: January 2026 | Version 2.8* diff --git a/claude-setup-audit-prompt.md b/claude-setup-audit-prompt.md index fad0d2e..0548aa4 100644 --- a/claude-setup-audit-prompt.md +++ b/claude-setup-audit-prompt.md @@ -528,4 +528,4 @@ Here's an example of what the audit report looks like: --- -*Last updated: January 2026 | Version 2.2 - Optimized with bash scanning* +*Last updated: January 2026 | Version 2.8 - Optimized with bash scanning* diff --git a/english-ultimate-claude-code-guide.md b/english-ultimate-claude-code-guide.md index 88050cf..26ed635 100644 --- a/english-ultimate-claude-code-guide.md +++ b/english-ultimate-claude-code-guide.md @@ -8873,4 +8873,4 @@ Thumbs.db **Contributions**: Issues and PRs welcome. -**Last updated**: January 2026 | **Version**: 2.6 +**Last updated**: January 2026 | **Version**: 2.8 diff --git a/examples/README.md b/examples/README.md index 9ee99fe..fbf52e4 100644 --- a/examples/README.md +++ b/examples/README.md @@ -13,6 +13,8 @@ Ready-to-use templates for Claude Code configuration. | [`config/`](./config/) | Configuration file templates | | [`memory/`](./memory/) | CLAUDE.md memory file templates | | [`scripts/`](./scripts/) | Utility scripts for setup and diagnostics | +| [`github-actions/`](./github-actions/) | CI/CD workflows for GitHub Actions | +| [`workflows/`](./workflows/) | Advanced development workflow guides | ## Quick Start @@ -92,6 +94,20 @@ Ready-to-use templates for Claude Code configuration. > **Usage**: `./audit-scan.sh` for human output, `./audit-scan.sh --json` for JSON output +### GitHub Actions +| File | Trigger | Purpose | +|------|---------|---------| +| [claude-pr-auto-review.yml](./github-actions/claude-pr-auto-review.yml) | PR open/update | Auto code review with inline comments | +| [claude-security-review.yml](./github-actions/claude-security-review.yml) | PR open/update | Security-focused scan (OWASP) | +| [claude-issue-triage.yml](./github-actions/claude-issue-triage.yml) | Issue opened | Auto-triage with labels and severity | + +> **See [github-actions/README.md](./github-actions/README.md) for setup instructions and customization** + +### Workflows +| File | Purpose | +|------|---------| +| [database-branch-setup.md](./workflows/database-branch-setup.md) | Isolated feature dev with database branches (Neon/PlanetScale) | + --- *See the [main guide](../english-ultimate-claude-code-guide.md) for detailed explanations.*