verify

Run build, lint, and test commands with automatic fixes and re-verification.

Updated Jan 21, 2026
One-click install
npx skills add https://github.com/mag123c/linkhub --skill verify-mag123c
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: verify
Source: https://github.com/mag123c/linkhub/tree/main/.claude/skills/verify
Command: npx skills add https://github.com/mag123c/linkhub --skill verify-mag123c

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

AI가 코드의 품질을 자동으로 검증하는 자체 검증 루프를 제공하여 커밋/PR 전 빌드, 린트, 테스트의 실패를 사전에 차단합니다.

Core Features & Use Cases

  • 자동 검증 루프: 빌드, 린트, 테스트를 차례대로 실행하고 실패 시 자동 수정 시도 및 재검증으로 품질을 보장합니다.
  • 사전 검증 환경: 커밋 전과 PR 생성 전 필수 검증으로 CI 파이프라인의 실패를 감소시킵니다.
  • 자체 치유 루프: 실패 원인을 분석하고 코드 수정을 시도하여 재검증을 수행합니다.
  • 실행 흐름 가이드: 실패 시 진단 메시지와 재실행 지침을 제공합니다.

Quick Start

실행하려면 /verify를 입력하여 엔드투엔드 검증 루프를 시작하고 코드의 빌드, 린트, 테스트를 자동으로 수행하도록 합니다.

Frequently Asked Questions about verify

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

FAQPage Schema
How do I automate build, lint, and test checks before a commit or PR?

A self-healing verification loop analyzes build, lint, or test failures, attempts automatic code fixes, and re-runs validation. This ensures code quality by iteratively resolving detected errors without manual intervention.

What is a self-healing code verification loop?

A self-healing verification loop analyzes build, lint, or test failures, attempts automatic code fixes, and re-runs validation. This ensures code quality by iteratively resolving detected errors without manual intervention.

How do I run an end-to-end code quality check using pnpm?

Pre-commit and pre-PR validation reduces CI pipeline failures by catching build, lint, and test errors locally. It ensures deterministic checks pass before code integration, maintaining pipeline stability.

Why should I run pre-commit validation for CI pipelines?

Pre-commit and pre-PR validation reduces CI pipeline failures by catching build, lint, and test errors locally. It ensures deterministic checks pass before code integration, maintaining pipeline stability.

Does the automated verification loop work without external dependencies?

Yes, the automated verification loop operates without external dependencies. It requires only a software project supporting deterministic pnpm build, lint, and test:run commands to execute its self-check sequence.

What happens when a lint or test failure occurs during automated verification?

When a lint or test failure occurs, the loop analyzes the error, attempts an automatic code fix, and performs re-verification. It provides diagnostic messages and re-execution guidance for unresolved issues.