AI Tools

Tools and automation I use to build and ship.

GitHub

Barbossa

Autonomous 5-agent AI development team

Built with Claude Agent SDK. Coordinates through GitHub and Linear to ship code 24/7 without human intervention.

Discovery
Planning
Implementation
Review
Merge
View documentation

Peer Tools

Claude Code plugin marketplace for Peer protocol

10 skills across 2 plugins for protocol intelligence and USDC trading. Built for the Peer ecosystem.

Install
/plugin marketplace add ADWilkinson/peer-tools
View on GitHub

peerlytics

Protocol intelligence for Peer

/analyticsclick to copy

Dashboard metrics and trends

Volume, spreads, fill rates

/explorerclick to copy

Transaction and deposit explorer

Search, filter, trace

/leaderboardclick to copy

Taker and maker rankings

Volume, activity, success rate

/marketclick to copy

Live market data and rates

Best rates, spread analysis

/activityclick to copy

Recent protocol activity feed

Deposits, settlements, claims

usdctofiat

USDC trading tools

/create-depositclick to copy

Create new USDC deposit

Amount, rate, platform

/deposit-guideclick to copy

Step-by-step deposit guide

Platform-specific flows

/rate-strategyclick to copy

Rate optimization advice

Spread analysis, timing

/earnings-calcclick to copy

Calculate trading earnings

Volume, spreads, fees

/onramp-guideclick to copy

Fiat-to-crypto onramp guide

Buy USDC via P2P

Claude Code Tools

Requires Claude Code to be installed.

Recommended

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 install
/plugin marketplace add ADWilkinson/claude-code-tools
/plugin install cct@cct

Or use the install script for short command names: ./install.sh

Understanding Tool Types

Auto

Subagents

Specialized agents invoked automatically via Task tool when domain expertise is needed.

Both

Skills

Can be user-invoked with /skill-name or auto-invoked when your request matches their description.

Subagents

14 agents

Specialized agents for Claude Code, organized by domain.

Quick install (plugin includes all agents)

/plugin marketplace add ADWilkinson/claude-code-tools
/plugin install cct@cct

Skills

11 skills

Unified extension model. User-invoked with /skill or auto-invoked when relevant.

Linear

Natural language task management. Prefers MCP when available, falls back to CLI.

verify-changes

Run tests, builds, and checks with scored output (100-point scale).

clarify-before-implementing

Ask targeted questions before coding to avoid wrong work.

User-Invoked Skills

Manual invocation with /skill. Click to copy.

/deslopclick to copy

Remove AI slop from diffs

Extra comments, defensive checks, type escapes

/repo-polishclick to copy

Autonomous cleanup → PR

Unused imports, debug statements, type gaps

/update-claudesclick to copy

Generate CLAUDE.md files

Multi-agent codebase documentation

/minimize-uiclick to copy

Systematic UI reduction

7-phase: branch → audit → reduce → PR

/design-auditclick to copy

Accessibility & visual audit

WCAG compliance, scoring, auto-fix

/lighthouseclick to copy

Web performance optimization

Iterative fixes with progress tracking

/generate-precommit-hooksclick to copy

Auto-detect stack, install hooks

husky, lint-staged, ruff, etc.

/xmlclick to copy

Convert prompts to XML

Structured prompts for Claude

Install all skills (plugin includes all)

/plugin marketplace add ADWilkinson/claude-code-tools
/plugin install cct@cct

Plugin skills: /cct:deslop, /cct:lighthouse, /cct:xml, etc.

Hooks

Shell scripts that run at specific points in Claude Code's lifecycle.

auto-format.sh

Format code after Claude writes it.

PostToolUse hook. 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.

UserPromptSubmit hook. Detects phrases like "from now on", "always do", "never do" and prompts Claude to save them.

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

Flying Dutchman Statusline

Git branch, tool icons, cost, diff stats.

Install
curl -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
Configure
"statusline": "~/.claude/flying-dutchman-statusline.sh"