AI
Systems, tools, and automation I build and use.
Agentic Systems
Autonomous systems that coordinate LLM agents to ship real output.
Developer Tools
Skills
Claude Code skills from claude-code-tools. Click to copy.
Hooks
Shell scripts that run at specific points in Claude Code's lifecycle.
auto-format.sh
Format code after Claude writes it. Supports Prettier, Ruff, gofmt, rustfmt, forge fmt.
Install
mkdir -p ~/.claude/hooks && \
curl -o ~/.claude/hooks/auto-format.sh https://raw.githubusercontent.com/ADWilkinson/claude-code-tools/main/hooks/auto-format.sh && \
chmod +x ~/.claude/hooks/auto-format.shconstraint-persistence.sh
Detect rules and persist them to CLAUDE.md. Triggers on phrases like "from now on" and "always do".
Install
curl -o ~/.claude/hooks/constraint-persistence.sh \
https://raw.githubusercontent.com/ADWilkinson/claude-code-tools/main/hooks/constraint-persistence.sh && \
chmod +x ~/.claude/hooks/constraint-persistence.sh