verify

verify is a command for Claude Code from sawadari/requirements-mcp-server. It costs 21 tokens per session (1,265 once invoked), scanned C, original, MIT.

A command for checking whether a project is set up correctly, compiles, passes its tests, and exposes the expected command-line options. TypeScript is a programming language, and a test suite is a group of automated checks.

In plain words
What is it for?
It is for verifying environment variables, TypeScript compilation, automated tests, command-line help, installed packages, agent files, and GitHub Actions configuration.
Why use it?
It gathers several setup and quality checks in one place, so you do not have to run them separately or inspect project files by hand.

Command for Claude Code

Written for Claude Code: installed under .claude/.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/sawadari/requirements-mcp-server/verify
Clone the repo
git clone --depth 1 https://github.com/sawadari/requirements-mcp-server

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for verify

README.md
[![agentmods](https://agentmods.dev/badge/commands/sawadari/requirements-mcp-server/verify.svg)](https://agentmods.dev/commands/sawadari/requirements-mcp-server/verify)
Your own site
<a href="https://agentmods.dev/commands/sawadari/requirements-mcp-server/verify"><img src="https://agentmods.dev/badge/commands/sawadari/requirements-mcp-server/verify.svg" alt="Measured on agentmods" height="20"></a>
Per session 21 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,265 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00021 $0.01265
Opus 5 $0.00010 $0.00633
Sonnet 5 $0.00004 $0.00253
Haiku 4.5 $0.00002 $0.00127

Measured 5d ago against content hash 1485c82fa647, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade C, and why

verify scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf node_modules package-lock.json
.claude/commands/verify.md · 220 lines

How it starts

The opening of the file, as written. The whole thing — 220 lines — stays where its author put it; the contents beside it link to each section on GitHub.

システム動作確認

Autonomous Operationsプラットフォームの全機能を確認します。

確認内容

1. 環境設定確認

# .envファイル存在確認
ls -la .env

# 環境変数確認
cat .env | grep -v "^#" | grep -v "^$"

期待結果:

  • ✅ GITHUB_TOKEN設定済み
  • ✅ REPOSITORY設定済み
  • ✅ DEVICE_IDENTIFIER設定済み

2. TypeScriptコンパイル確認

npm run typecheck

期待結果:

  • ✅ エラー0件
  • ✅ 全11ファイル検証完了
  • ✅ Strict mode準拠

3. テストスイート確認

npm test -- --run

期待結果:

  • ✅ 6/6 tests passing
  • ✅ Duration <1秒
  • ✅ CoordinatorAgent動作確認

4. CLI動作確認

npm run agents:parallel:exec -- --help

期待結果:

  • ✅ ヘルプメッセージ表示
  • ✅ 全オプション表示
  • ✅ 使用例表示

詳細チェック

Agent実装確認

# Agent実装ファイル確認
ls -la agents/**/*.ts

# 行数カウント
wc -l agents/**/*.ts scripts/*.ts tests/*.ts

期待結果:

  • ✅ 11 TypeScriptファイル
  • ✅ ~4,889行

依存関係確認

# node_modulesインストール確認
ls -la node_modules/ | wc -l

# パッケージ数確認
npm list --depth=0 | wc -l

期待結果:

  • ✅ 258パッケージインストール済み

GitHub Actions確認

# Workflowファイル確認
cat .github/workflows/autonomous-agent.yml | head -20

# Issue Template確認
cat .github/ISSUE_TEMPLATE/agent-task.md | head -15

期待結果:

  • ✅ Workflowファイル存在
  • ✅ Issue Template存在

統合確認

全チェック実行

以下のコマンドで全確認を一括実行:

echo "=== 1. 環境設定 ===" && \
ls -la .env && \
echo "=== 2. TypeScript ===" && \
npm run typecheck && \
echo "=== 3. テスト ===" && \
npm test -- --run && \
echo "=== 4. CLI ===" && \
npm run agents:parallel:exec -- --help && \
echo "=== ✅ 全確認完了 ==="

チェックリスト

手動確認項目:

基本機能

  • .envファイル設定済み
  • TypeScriptコンパイル成功(0エラー)
  • テストスイート合格(6/6)
  • CLI正常動作

Agent機能

  • CoordinatorAgent実装済み
  • CodeGenAgent実装済み
  • ReviewAgent実装済み
  • IssueAgent実装済み
  • PRAgent実装済み
  • DeploymentAgent実装済み

インフラ

  • GitHub Actions Workflow設定済み
  • Issue Template作成済み
  • .gitignore設定済み
  • ドキュメント完備

ドキュメント

  • README.md
  • DEPLOYMENT.md
  • CONTRIBUTING.md
  • PROJECT_SUMMARY.md
  • VERIFICATION_REPORT_JP.md

期待される出力

✅ 成功例

=== 1. 環境設定 ===
-rw-r--r-- .env

=== 2. TypeScript ===
> tsc --noEmit
(エラーなし)

=== 3. テスト ===
✓ tests/coordinator.test.ts  (6 tests) 4ms
Test Files  1 passed (1)
     Tests  6 passed (6)

=== 4. CLI ===
Autonomous Operations - Parallel Executor
Usage: ...

=== ✅ 全確認完了 ===

Read the full file on GitHub · 220 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 220 lines · 21 tokens per session scan C 1485c82fa647

Subscribe to this mod's changes

verify is a command published in the GitHub repository sawadari/requirements-mcp-server (2 stars, last pushed 10mo ago), licensed MIT. It adds 21 tokens to every session and 1,265 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.