Simplified Claude Code configs for Laravel/PHP development. Forked from everything-claude-code and stripped down to essentials.
Less is more. The original repo had 9 agents, 11 skills, and complex Node.js hooks for JS/TS workflows. This fork keeps only what's useful for Laravel/PHP:
- 2 agents (not 9)
- 4 rules (not 8)
- Simple bash hooks (no Node.js dependencies)
nothing-claude-code/
├── agents/
│ ├── code-reviewer.md # Laravel/PHP code review
│ └── planner.md # Implementation planning
├── commands/
│ ├── plan.md # /plan - Create implementation plan
│ ├── qa.md # /qa - Run Pint, PHPStan, Pest
│ └── review.md # /review - Review recent changes
├── hooks/
│ └── hooks.json # PHP syntax, dd() detection, pre-push reminders
└── rules/
├── coding-style.md # Laravel conventions
├── git-workflow.md # Commit format, PR process
├── security.md # Laravel security checklist
└── testing.md # Pest/PHPUnit patterns
/review- Review recent git changes for Laravel best practices/qa- Run full QA suite (Pint + PHPStan + Pest)/plan- Create detailed implementation plan for a feature
Copy what you need:
# Clone
git clone https://github.com/conduit-ui/nothing-claude-code.git
# Copy agents
cp nothing-claude-code/agents/*.md ~/.claude/agents/
# Copy rules
cp nothing-claude-code/rules/*.md ~/.claude/rules/
# Add hooks to ~/.claude/settings.json manuallyThe hooks provide:
- PHP syntax check after editing .php files
- Debug statement detection (dd, dump, var_dump, ray)
- Pre-push reminder to run Pint and PHPStan
Original configs by @affaanmustafa - Anthropic hackathon winner.
Laravel adaptation by @jordanpartridge.
MIT