Overview
EQ Foundry provides a catalog of verified agentic development tools for EverQuote engineers. This guide walks you through installing your first tool and integrating it into your workflow.
Prerequisites
- Node 22+
- Claude Code CLI installed
- Access to the EverQuote GitHub organization
Installing a Tool
Option 1: skills.sh (Recommended)
npx skills add mclaude95/eq-foundry -s eq-execute
Works with Claude Code, Cursor, and most agent frameworks.
Option 2: Claude Plugin
/plugin add mclaude95/eq-foundry
Installs all eq-* tools at once. Claude Code only.
Option 3: Git Submodule
git submodule add git@github.com:mclaude95/eq-foundry.git .claude/plugins/eq-foundry
Best for private repos or when you need full local control.
Your First Feature
Once eq-execute is installed, try it on a small task:
- Create a plan doc in
docs/plans/ - Run
/eq-initto create a worktree - Run
/eq-executeand follow the TDD workflow - Run
/eq-finalizeto create your PR
See the EQ Workflow Pipeline guide for a deeper walkthrough.