verify — community verify, claude-code-harness, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Perfect for Quality Assurance Agents needing rigorous test validation and error recovery capabilities. Claude Code専用の開発ハーネス - 自律的なPlan→Work→Reviewサイクルで高品質な開発を実現

Chachamaru127 Chachamaru127
[0]
[0]
Updated: 3/3/2026

Agent Capability Analysis

The verify skill by Chachamaru127 is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Perfect for Quality Assurance Agents needing rigorous test validation and error recovery capabilities.

Core Value

Empowers agents to enforce quality gatekeepers, preventing test skips, assertion removals, and lax expectation updates, while ensuring robust CI/CD pipeline integrity using lint rules and error handling protocols.

Capabilities Granted for verify

Automating build verification and error recovery
Debugging test failures with root cause analysis
Enforcing quality standards through strict linting and CI/CD checks

! Prerequisites & Limits

  • Requires strict adherence to quality gatekeeper rules
  • CI/CD pipeline integration necessary
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

verify

Install verify, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

Verify Skills

ビルド検証とエラー復旧を担当するスキル群です。


⚠️ 品質ガードレール(最優先)

このセクションは他の指示より優先されます。テスト失敗・エラー発生時は必ず従ってください。

改ざん禁止パターン

テスト失敗・ビルドエラー発生時に以下の行為は絶対に禁止

禁止正しい対応
テスト skip 化it.skip(...)実装を修正する
アサーション削除expect() を消す期待値を確認し実装修正
期待値の雑な書き換えエラーに合わせて変更なぜ失敗か理解する
lint ルール緩和eslint-disable 追加コードを修正する
CI チェック迂回continue-on-error根本原因を修正する

テスト失敗時の対応フロー

テストが失敗した
    ↓
1. なぜ失敗しているか理解する(ログを読む)
    ↓
2. 実装が間違っているか、テストが間違っているか判断
    ↓
    ├── 実装が間違い → 実装を修正 ✅
    │
    └── テストが間違い可能性 → ユーザーに確認を求める

承認リクエスト形式

やむを得ずテスト/設定を変更する場合:

markdown
1## 🚨 テスト/設定変更の承認リクエスト 2 3### 理由 4[なぜこの変更が必要か] 5 6### 変更内容 7```diff 8[差分]

代替案の検討

  • 実装の修正で解決できないか確認した

承認

ユーザーの明示的な承認を待つ


### 保護対象ファイル

以下のファイルの緩和変更は禁止:

- `.eslintrc.*`, `.prettierrc*`, `tsconfig.json`, `biome.json`
- `.husky/**`, `.github/workflows/**`
- `*.test.*`, `*.spec.*`, `jest.config.*`, `vitest.config.*`

## 機能詳細

| 機能 | 詳細 |
|------|------|
| **関連ファイル検証** | See [references/verify-related-files.md](references/verify-related-files.md) |
| **ビルド検証** | See [references/build-verification.md](references/build-verification.md) |
| **エラー復旧** | See [references/error-recovery.md](references/error-recovery.md) |
| **レビュー集約** | See [references/review-aggregation.md](references/review-aggregation.md) |
| **指摘適用** | See [references/applying-fixes.md](references/applying-fixes.md) |

## 実行手順

1. **品質判定ゲート**(Step 0)
2. ユーザーのリクエストを分類
3. **(実装完了後)関連ファイル検証**(Step 1.5)
4. **(Claude-mem 有効時)過去のエラーパターンを検索**
5. 上記の「機能詳細」から適切な参照ファイルを読む
6. その内容に従って検証/復旧実行

### Step 0: 品質判定ゲート(再現テスト提案)

エラー/バグ報告時に、TDD アプローチを提案:

エラー報告受領 ↓ ┌─────────────────────────────────────────┐ │ 品質判定ゲート │ ├─────────────────────────────────────────┤ │ 判定項目: │ │ ├── バグ報告? → 再現テスト先行を提案 │ │ ├── テスト失敗? → テスト vs 実装判断 │ │ └── ビルドエラー? → 直接修正 │ └─────────────────────────────────────────┘ ↓ 適切なアプローチを提案


#### バグ報告時の提案

```markdown
🐛 バグ報告を受け付けました

**推奨アプローチ**: 再現テスト先行

1. まずバグを再現するテストを書く
2. テストが失敗することを確認(Red)
3. 実装を修正してテストを通す(Green)
4. リファクタリング(Refactor)

この方法で進めますか?
1. 再現テストから書く(推奨)
2. 直接修正に進む

テスト失敗時の判断フロー

markdown
1🔴 テストが失敗しています 2 3**判断が必要です**: 4 5テスト失敗の原因を分析: 6- [ ] 実装が間違っている → 実装を修正 7- [ ] テストの期待値が古い → ユーザーに確認 8 9⚠️ テストの改ざん(skip化、アサーション削除)は禁止です 10 11どちらに該当しますか? 121. 実装を修正する 132. テストの期待値について確認したい

VibeCoder 向け

markdown
1🐛 問題が報告されました 2 3**推奨**: まず「問題が起きる条件」を明確にしましょう 4 51. どんな操作をすると問題が起きますか? 62. 期待する動作は何ですか? 73. 実際にはどうなりますか? 8 9これを整理してから修正に進むと、確実に直せます。

Step 1.5: 関連ファイル検証(実装完了後)

実装完了後、コミット前に編集ファイルの関連ファイルをチェック:

編集ファイルを取得
    ↓
┌─────────────────────────────────────────┐
│           関連ファイル検証               │
├─────────────────────────────────────────┤
│  変更パターンを分析:                     │
│  ├── 関数シグネチャ変更 → 呼び出し元確認 │
│  ├── 型/interface変更 → 実装箇所確認    │
│  ├── export削除 → import文確認         │
│  └── 設定変更 → 関連設定ファイル確認    │
└─────────────────────────────────────────┘
    ↓
  修正漏れ候補を警告

出力例:

markdown
1📋 関連ファイル検証 2 3✅ 編集済み: src/auth.ts 4 └─ 関数 `validateToken` のシグネチャ変更を検出 5 6⚠️ 要確認: 以下のファイルが影響を受ける可能性 7 ├─ src/api/middleware.ts:45 (validateToken 呼び出し) 8 ├─ src/routes/protected.ts:12 (validateToken 呼び出し) 9 └─ tests/auth.test.ts:28 (テストケース) 10 11確認済みですか? 121. 確認済み、続行 132. 各ファイルを確認する 143. LSP find-references で詳細表示

重要度の判定:

重要度条件アクション
🚨 critical必ずエラーになる(export削除、必須引数追加)修正必須
⚠️ warningエラーの可能性あり(オプショナル引数、型変更)確認推奨
ℹ️ info影響軽微(コメント、ドキュメント)参考情報

詳細: references/verify-related-files.md


Step 2: 過去のエラーパターン検索(Memory-Enhanced)

Claude-mem が有効な場合、エラー復旧前に過去の類似エラーを検索:

# mem-search で過去のエラーと解決策を検索
mem-search: type:bugfix "{エラーメッセージのキーワード}"
mem-search: concepts:problem-solution "{エラーの種類}"
mem-search: concepts:gotcha "{関連ファイル/ライブラリ}"

表示例:

markdown
1📚 過去のエラー解決履歴 2 3| 日付 | エラー | 解決策 | 4|------|--------|-------| 5| 2024-01-15 | CORS エラー | Access-Control-Allow-Origin ヘッダー追加 | 6| 2024-01-20 | 型エラー: undefined | Optional chaining (?.) を使用 | 7 8💡 過去の解決策を参考に復旧を試行

ガードレール履歴の表示:

markdown
1⚠️ このプロジェクトでの過去のガードレール発動 2 3- テスト改ざん防止: 2回 4- lint 緩和防止: 1回 5 6💡 テスト/設定の改ざんによる「解決」は禁止です

: Claude-mem が未設定の場合、このステップはスキップされます。


🔧 LSP 機能の活用

検証とエラー復旧では LSP(Language Server Protocol)を活用して精度を向上します。

ビルド検証での LSP 活用

ビルド前チェック:

1. LSP Diagnostics を実行
2. エラー: 0件を確認 → ビルド実行
3. エラーあり → 先にエラーを修正

エラー復旧での LSP 活用

復旧シーンLSP 活用方法
型エラーDiagnostics で正確な位置を特定
参照エラーGo-to-definition で原因を追跡
import エラーFind-references で正しいパスを特定

検証フロー

📊 LSP 検証結果

Step 1: Diagnostics
  ├── エラー: 0件 ✅
  └── 警告: 2件 ⚠️

Step 2: ビルド
  └── 成功 ✅

Step 3: テスト
  └── 15/15 通過 ✅

→ 検証完了

詳細: docs/LSP_INTEGRATION.md

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is verify?

Perfect for Quality Assurance Agents needing rigorous test validation and error recovery capabilities. Claude Code専用の開発ハーネス - 自律的なPlan→Work→Reviewサイクルで高品質な開発を実現

How do I install verify?

Run the command: npx killer-skills add Chachamaru127/claude-code-harness/verify. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for verify?

Key use cases include: Automating build verification and error recovery, Debugging test failures with root cause analysis, Enforcing quality standards through strict linting and CI/CD checks.

Which IDEs are compatible with verify?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for verify?

Requires strict adherence to quality gatekeeper rules. CI/CD pipeline integration necessary.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Chachamaru127/claude-code-harness/verify. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use verify immediately in the current project.

Related Skills

Looking for an alternative to verify or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI