AI Tools
Tools and automation I use to build and ship.
Built with Claude Agent SDK. Coordinates through GitHub and Linear to ship code 24/7 without human intervention.
10 skills across 2 plugins for protocol intelligence and USDC trading. Built for the Peer ecosystem.
/plugin marketplace add ADWilkinson/peer-toolsClaude Code Tools
Requires Claude Code to be installed.
Install as Plugin
Get all 14 agents, 11 skills, and 2 hooks in one install. Skills namespaced as /cct:*. Also supports Cursor, Windsurf, Cline.
/plugin marketplace add ADWilkinson/claude-code-tools
/plugin install cct@cctOr use the install script for short command names: ./install.sh
Understanding Tool Types
Subagents
Specialized agents invoked automatically via Task tool when domain expertise is needed.
Skills
Can be user-invoked with /skill-name or auto-invoked when your request matches their description.
Subagents
14 agentsSpecialized agents for Claude Code, organized by domain.
Core
Web3
Infrastructure
Quick install (plugin includes all agents)
/plugin marketplace add ADWilkinson/claude-code-tools
/plugin install cct@cctSkills
11 skillsUnified extension model. User-invoked with /skill or auto-invoked when relevant.
User-Invoked Skills
Manual invocation with /skill. Click to copy.
Install all skills (plugin includes all)
/plugin marketplace add ADWilkinson/claude-code-tools
/plugin install cct@cctPlugin skills: /cct:deslop, /cct:lighthouse, /cct:xml, etc.
Hooks
Shell scripts that run at specific points in Claude Code's lifecycle.
PostToolUse hook. Supports Prettier, Ruff, gofmt, rustfmt, forge fmt.
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.shUserPromptSubmit hook. Detects phrases like "from now on", "always do", "never do" and prompts Claude to save them.
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.shcurl -o ~/.claude/flying-dutchman-statusline.sh \
https://raw.githubusercontent.com/ADWilkinson/claude-code-tools/main/statusline/flying-dutchman-statusline.sh && \
chmod +x ~/.claude/flying-dutchman-statusline.sh"statusline": "~/.claude/flying-dutchman-statusline.sh"