Skip to main content
EQ
Foundry
Back to Workflows

Engineering Pipeline

verified

engineering · devops

End-to-end feature delivery with TDD, atomic commits, and automated review. From plan document to merged PR.

Install

npx skills add mclaude95/eq-foundry

Installs all 12 core tools. Supplementary tools can be added individually.

What You Get

The Engineering Pipeline is a structured approach to feature development. Install the full pipeline with one command. Every tool is configured to work together.

The Flow

Plan doc → /eq-init → /eq-create-issues → /eq-execute → /eq-analyze → /eq-review → /eq-finalize → PR

Each step feeds into the next. Session context is restored automatically on resume via git commits. No external state needed.

Core Components

Pipeline Skills (6)

The sequential workflow from workspace setup to PR creation. Each skill has a hard approval gate. No step proceeds without your explicit confirmation.

  • eq-init: Creates worktree + branch, copies plan doc, pushes anchor commit
  • eq-create-issues: Turns plan tasks into GitHub issues with project board tracking
  • eq-execute: TDD implementation (RED → GREEN → REFACTOR) with atomic commits
  • eq-analyze: Mid-flight consistency check (plan ↔ issues ↔ code ↔ tests)
  • eq-review: Parallel review agents (patterns + quality + security) with auto-fix
  • eq-finalize: Full verification, PR draft approval gate, issue status updates

Review Sub-agents (3)

Run standalone for focused mid-development checks, or automatically as part of /eq-review:

  • eq-review-patterns: Project conventions, schema correctness, prop coverage
  • eq-review-quality: Accessibility, test quality, defensive data handling
  • eq-review-security: XSS vectors, env leaks, SSRF, dependency risks

Pipeline Hooks (3)

These run automatically. No manual invocation needed:

  • session-context: SessionStart hook that injects branch, worktree, and progress context on every session resume
  • branch-guard: PreToolUse hook that blocks destructive git commands (reset --hard, push --force) on protected branches
  • convention-scan: Shared grep-based scanner for CLAUDE.md “Never” rules (runs as part of every review)

Supplementary (Install Individually)

  • benchmark: Lighthouse CI performance gate with 3-run median and regression detection
  • eq-storybook-test: Decides whether a component needs stories and what belongs in play() vs .test.tsx
  • find-skills: Helps discover and install additional skills from the marketplace

Core Tools (9)

Supplementary Tools (1)

Optional: install individually based on your project's needs.

Read the full guide

Step-by-step walkthrough with examples and troubleshooting