Skip to main content
EQ
Foundry
Back to Guides
getting-started · Engineers

Getting Started with EQ Foundry

How to adopt the EQ toolset in your project — from first install to first PR

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

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:

  1. Create a plan doc in docs/plans/
  2. Run /eq-init to create a worktree
  3. Run /eq-execute and follow the TDD workflow
  4. Run /eq-finalize to create your PR

See the EQ Workflow Pipeline guide for a deeper walkthrough.