claude-code-ultimate-guide/examples
Florian BRUNIAUX 0833e1ca65 fix(audit): correct MCP detection to check ~/.claude.json
The audit script was looking for MCP config in ~/.claude/mcp.json which
doesn't exist. Claude Code actually stores MCP config in ~/.claude.json
under projects.<path>.mcpServers.

Changes:
- audit-scan.sh: Multi-source MCP detection (3 locations with priority)
- audit-scan.sh: Fixed count_pattern() bug causing "0\n0" output
- claude-setup-audit-prompt.md: Updated bash commands for MCP detection
- Version bump: 2.8 → 2.9

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-12 08:37:01 +01:00
..
agents feat: add Learning Paths, examples, and project governance files 2026-01-10 14:25:22 +01:00
commands feat(workflows): add database branch isolation with git worktrees 2026-01-11 13:25:58 +01:00
config feat: add Learning Paths, examples, and project governance files 2026-01-10 14:25:22 +01:00
github-actions feat(guide): comprehensive improvements - troubleshooting, CLI ref, pitfalls, DeepSeek 2026-01-10 15:47:26 +01:00
hooks feat(examples): add production-ready commands, hooks, and comprehensive documentation 2026-01-10 17:30:30 +01:00
memory docs: release v2.3.0 with DeepTo guide integration 2026-01-10 17:55:46 +01:00
scripts fix(audit): correct MCP detection to check ~/.claude.json 2026-01-12 08:37:01 +01:00
skills feat: add Learning Paths, examples, and project governance files 2026-01-10 14:25:22 +01:00
workflows feat(workflows): add database branch isolation with git worktrees 2026-01-11 13:25:58 +01:00
README.md docs: complete examples catalog with GitHub Actions and workflows 2026-01-11 19:10:47 +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
scripts/ Utility scripts for setup and diagnostics
github-actions/ CI/CD workflows for GitHub Actions
workflows/ Advanced development workflow guides

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
pr.md /pr Create well-structured PRs with scope analysis
review-pr.md /review-pr PR review workflow
release-notes.md /release-notes Generate release notes in 3 formats
sonarqube.md /sonarqube Analyze SonarCloud quality issues for PRs
generate-tests.md /generate-tests Test generation
git-worktree.md /git-worktree Isolated git worktree setup

Hooks

File Event Purpose
dangerous-actions-blocker.sh PreToolUse Block dangerous commands/edits
security-check.* PreToolUse Block secrets in commands
auto-format.* PostToolUse Auto-format after edits
notification.sh Notification Contextual macOS sound alerts

See hooks/README.md for complete documentation and examples

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

Scripts

File Purpose Output
audit-scan.sh Fast setup audit scanner JSON / Human
check-claude.sh Health check diagnostics Human
clean-reinstall-claude.sh Clean reinstall procedure Human

Usage: ./audit-scan.sh for human output, ./audit-scan.sh --json for JSON output

GitHub Actions

File Trigger Purpose
claude-pr-auto-review.yml PR open/update Auto code review with inline comments
claude-security-review.yml PR open/update Security-focused scan (OWASP)
claude-issue-triage.yml Issue opened Auto-triage with labels and severity

See github-actions/README.md for setup instructions and customization

Workflows

File Purpose
database-branch-setup.md Isolated feature dev with database branches (Neon/PlanetScale)

See the main guide for detailed explanations.