build-with-tests

Run typecheck, lint, tests, and build validations for feature branches.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/ForrestGrump/agent-factory-scaffold --skill build-with-tests
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: build-with-tests
Source: https://github.com/ForrestGrump/agent-factory-scaffold/tree/main/.agents/skills/build-with-tests
Command: npx skills add https://github.com/ForrestGrump/agent-factory-scaffold --skill build-with-tests

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Code changes often need to satisfy project-specific verification rules (typecheck, lint, tests, and build) before merging, to maintain quality and consistency.

Core Features & Use Cases

  • Validates changes against repository standards by running typecheck, lint, tests, and build steps.
  • Provides guidance on which checks to run and how to interpret results, ensuring fast feedback on PRs.
  • Integrates with the project's run tracking to record verification outcomes.

Quick Start

Run the build-with-tests workflow on your feature branch to verify compliance with project conventions.

Frequently Asked Questions about build-with-tests

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run typecheck, lint, and tests before merging a feature branch?

Continuous integration validation executes typecheck, lint, tests, and build steps against repository standards to provide fast feedback on pull requests. It ensures code changes maintain quality and consistency before integration.

How do I execute project-wide tests and record verification outcomes?

The skill reads project-specific configurations from AGENTS.md and docs/testing.md to determine exact commands. It then runs typecheck, lint, tests, and build validations, recording outcomes in .agent-runs/<feature-id>/ directories.

Does this build validation skill require external dependencies?

No external dependencies are required. The skill operates by referencing existing repository files like AGENTS.md and docs/testing.md to identify and execute your project's specific verification commands.

Why does my pull request fail continuous integration checks?

Pull requests fail CI checks when code changes do not pass typecheck, lint, tests, or build validations. This skill identifies failures by running these checks and recording open questions and decisions for your feature.