MAJOR ENHANCEMENTS: ## README Updates - Add pedagogical approach section emphasizing learning journey over reference manual - Reference zebbern/claude-code-guide as key inspiration for troubleshooting - Clarify guide philosophy: mentor for mastering Claude Code ## Main Guide (english-ultimate-claude-code-guide.md) ### New Sections Added: 1. **Status Overview Table** - Section completeness at a glance 2. **Section 10.3: CLI Flags Complete Reference** - 19 flags with descriptions and examples - Common flag combinations - Safety guidelines table 3. **Section 10.4: Enhanced MCP Troubleshooting** - 3 common errors with solutions (tool validation, server not found, Windows paths) - MCP debugging techniques (logs, manual testing) - One-shot health check scripts (PowerShell + Bash) - Full clean reinstall procedures (Windows + macOS/Linux) 4. **Section 9.11: Common Pitfalls & Best Practices** - Security pitfalls (Do/Don't + working hook example) - Performance pitfalls (context strategy, thinking levels) - Workflow pitfalls (prompt format template) - Collaboration pitfalls (team coordination) - Cost optimization pitfalls (model selection table) - Learning pitfalls (progressive adoption checklist) 5. **Section 11: DeepSeek Integration** - Complete setup (Windows/macOS/Linux) - Cost comparison (98% savings) - Use cases and limitations - Provider switching strategies 6. **Appendix A: File Locations Reference** - Platform-specific paths (Windows/macOS/Linux) - Quick access commands - Environment variables reference - Recommended .gitignore ## Cheatsheet (cheatsheet-en.md) - Add CLI Flags Quick Reference table - Add Common Issues Quick Fix table - Add Health Check one-liners - Add Cost Optimization section - Update to version 2.0 ## GitHub Actions (examples/github-actions/) - **claude-pr-auto-review.yml**: Comprehensive review workflow - 8 focus areas (correctness, security, performance, etc.) - Priority-based feedback (🔴🟡🟢💡) - Smart file filtering - Draft PR detection - Error handling + fallback comments - **README.md**: Update workflow #1 documentation with new features ## Documentation Quality - All examples are practical and tested - Platform-specific instructions throughout - Do/Don't format for quick scanning - Cross-references to zebbern guide where appropriate - Maintains pedagogical tone established in original guide IMPACT: Guide now provides exceptional troubleshooting resources, complete CLI reference, real-world integration patterns, and cost-effective alternatives while maintaining focus on learning journey. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
6.1 KiB
GitHub Actions Workflows for Claude Code
Ready-to-use GitHub Actions workflows that integrate Claude Code into your CI/CD pipeline.
Prerequisites
- Install the Claude GitHub App on your org/repo (required for Actions to comment on PRs/issues)
- Add API Key Secret: In your repo, go to Settings → Secrets and variables → Actions → New repository secret
- Name:
ANTHROPIC_API_KEY - Value: Your Anthropic API key from console.anthropic.com
- Name:
- Copy Workflows: Place these
.ymlfiles in.github/workflows/directory - Test: Open a test PR or issue to see them run
Available Workflows
1. Auto PR Review (claude-pr-auto-review.yml)
Enhanced version with comprehensive review criteria and smart filtering.
Creates a structured review with inline comments as soon as a PR opens or updates.
Features:
- Automatic code review on PR open/update
- 8 focus areas: Correctness, Security, Performance, Readability, Maintainability, Testing, Best Practices, Breaking Changes
- Priority-based feedback: 🔴 Critical, 🟡 Important, 🟢 Suggestion, 💡 Tip
- Smart file filtering (skips build artifacts, lock files)
- Skips draft PRs to save costs
- Summary review with risk assessment
- Error handling and fallback notifications
- Inline comments on specific lines
Usage:
# Copy the workflow file
cp examples/github-actions/claude-pr-auto-review.yml .github/workflows/
# Open a PR - Claude will automatically review it
Customization:
Add project-specific context by uncommenting the append_system_prompt section:
append_system_prompt: |
Project conventions:
- Use TypeScript strict mode
- Follow functional programming patterns
- All functions must have JSDoc comments
- Test coverage must be >80%
2. Security Review (claude-security-review.yml)
Runs a focused security scan and comments findings directly on the PR.
Features:
- Security-focused analysis on every PR
- Identifies potential vulnerabilities
- OWASP Top 10 considerations
- Posts findings as PR comments
Configuration:
# Optional parameters in the workflow file:
exclude-directories: "docs,examples" # Skip certain directories
claudecode-timeout: "20" # Timeout in minutes
claude-model: "claude-3-5-sonnet-20240620" # Model to use
Usage:
# Copy the workflow file
cp examples/github-actions/claude-security-review.yml .github/workflows/
# Every PR will be automatically scanned for security issues
3. Issue Triage (claude-issue-triage.yml)
When a new issue opens, Claude proposes labels/severity and posts a tidy triage comment.
Features:
- Automatic issue classification
- Label suggestions
- Severity assessment (low, medium, high, critical)
- Duplicate detection
- Markdown triage comment
Auto-apply Labels (Optional): To automatically apply suggested labels, edit the workflow file and change:
- name: Apply labels (optional)
if: ${{ false }} # Change to true to auto-apply labels
Usage:
# Copy the workflow file
cp examples/github-actions/claude-issue-triage.yml .github/workflows/
# Open a new issue - Claude will automatically triage it
Customization
Model Selection
Set CLAUDE_MODEL or claude-model parameter in workflows:
env:
CLAUDE_MODEL: claude-3-5-sonnet-20240620
Permissions
Each workflow declares minimal required permissions:
pull-requests: writefor PR reviewsissues: writefor issue triagecontents: readfor reading repository content
Adjust only if your organization requires stricter policies.
Scope Filtering
Use paths: filters to limit when workflows run:
on:
pull_request:
paths:
- 'src/**'
- '!docs/**'
Troubleshooting
No comments appear on PRs:
- Verify the Claude GitHub App is installed
- Check workflow has
pull-requests: writepermission
403 when applying labels:
- Ensure the job has
issues: writepermission - Verify
GITHUB_TOKENhas access to this repo
Anthropic API errors:
- Confirm
ANTHROPIC_API_KEYis set at repository level - Check the key is not expired
YAML syntax errors:
- Validate spacing: two spaces per nesting level, no tabs
- Use a YAML validator: yamllint.com
Advanced Usage
Combining Workflows
Run multiple workflows together for comprehensive automation:
- PR Review + Security Review on every PR
- Issue Triage + Auto-labeling for new issues
Custom Prompts
Edit the direct_prompt section in workflows to customize Claude's focus:
direct_prompt: |
Review this PR focusing on:
1. TypeScript type safety
2. React performance patterns
3. Accessibility compliance
4. Test coverage
Integration with Other Actions
Combine with existing workflows:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Run tests
run: npm test
claude-review:
needs: tests # Run after tests pass
runs-on: ubuntu-latest
steps:
- uses: anthropics/claude-code-action@main
# ...
Cost Considerations
These workflows consume Anthropic API credits:
- PR Review: ~$0.10-$0.50 per review (depending on diff size)
- Security Review: ~$0.20-$0.80 per scan
- Issue Triage: ~$0.05-$0.20 per issue
Tips to reduce costs:
- Use
paths:filters to skip docs/config changes - Set conditions:
if: github.event.pull_request.draft == false - Review logs and adjust model selection
Examples in This Directory
examples/github-actions/
├── README.md # This file
├── claude-pr-auto-review.yml # Auto PR review workflow
├── claude-security-review.yml # Security scanning workflow
└── claude-issue-triage.yml # Issue triage workflow
Resources
- Claude Code Documentation
- GitHub Actions Documentation
- Anthropic API Documentation
- Claude GitHub App
License
These workflows are provided as examples. Adapt them to your needs.