AI

Systems, tools, and automation I build and use.

Agentic Systems

Autonomous systems that coordinate LLM agents to ship real output.

Barbossa

Autonomous AI dev pipeline. 5 agents ship reviewed PRs from a backlog without human intervention.

Discovery, PM, Engineer, Tech Lead, Auditor. Built with Claude Agent SDK. Coordinates through GitHub and Linear.

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.sh

constraint-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