claude-code-ultimate-guide/examples
Florian BRUNIAUX 87994bb797 feat(guide): add thinking keywords, GitHub Actions examples, and improvement recommendations
Documentation enhancements:
- Add inline thinking keywords section (think, think hard, ultrathink) with usage examples
- Create examples/github-actions/ directory with 3 ready-to-use workflows:
  * Auto PR review with inline comments
  * Security review on every PR
  * Issue triage with label suggestions
- Add comprehensive IMPROVEMENT_RECOMMENDATIONS.md with prioritized action items

Improvements based on zebbern/claude-code-guide analysis:
- Enhanced troubleshooting guidance
- Format enhancements (badges, collapsible tables, C-style comments)
- Security/performance/workflow pitfalls sections
- DeepSeek integration documentation
- One-shot health check scripts

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-10 15:26:18 +01:00
..
agents feat: add Learning Paths, examples, and project governance files 2026-01-10 14:25:22 +01:00
commands feat: add Learning Paths, examples, and project governance files 2026-01-10 14:25:22 +01:00
config feat: add Learning Paths, examples, and project governance files 2026-01-10 14:25:22 +01:00
github-actions feat(guide): add thinking keywords, GitHub Actions examples, and improvement recommendations 2026-01-10 15:26:18 +01:00
hooks feat: add Learning Paths, examples, and project governance files 2026-01-10 14:25:22 +01:00
memory feat: add Learning Paths, examples, and project governance files 2026-01-10 14:25:22 +01:00
skills feat: add Learning Paths, examples, and project governance files 2026-01-10 14:25:22 +01:00
README.md feat: add Learning Paths, examples, and project governance files 2026-01-10 14:25:22 +01:00

Claude Code Examples

Ready-to-use templates for Claude Code configuration.

Structure

Folder Description
agents/ Custom AI personas for specialized tasks
skills/ Reusable knowledge modules
commands/ Custom slash commands
hooks/ Event-driven automation scripts
config/ Configuration file templates
memory/ CLAUDE.md memory file templates

Quick Start

  1. Copy the template you need
  2. Customize for your project
  3. Place in the correct location (see paths below)

File Locations

Type Project Location Global Location
Agents .claude/agents/ ~/.claude/agents/
Skills .claude/skills/ ~/.claude/skills/
Commands .claude/commands/ ~/.claude/commands/
Hooks .claude/hooks/ ~/.claude/hooks/
Config .claude/ ~/.claude/
Memory ./CLAUDE.md or .claude/CLAUDE.md ~/.claude/CLAUDE.md

Windows: Replace ~/.claude/ with %USERPROFILE%\.claude\

Templates Index

Agents

File Purpose Model
code-reviewer.md Thorough code review Sonnet
test-writer.md TDD/BDD test generation Sonnet
security-auditor.md Security vulnerability detection Sonnet
refactoring-specialist.md Clean code refactoring Sonnet

Skills

File Purpose
tdd-workflow.md Test-Driven Development process
security-checklist.md OWASP Top 10 security checks

Commands

File Trigger Purpose
commit.md /commit Conventional commit messages
review-pr.md /review-pr PR review workflow
generate-tests.md /generate-tests Test generation

Hooks

File Event Purpose
security-check.* PreToolUse Block secrets in commands
auto-format.* PostToolUse Auto-format after edits

Config

File Purpose
settings.json Hooks configuration
mcp.json MCP servers setup
.gitignore-claude Git ignore patterns

Memory

File Purpose
CLAUDE.md.project-template Team project memory
CLAUDE.md.personal-template Personal global memory

See the main guide for detailed explanations.