forge-verify

forge-verify is a skill for Claude Code, Codex from XRenSiu/claude-code-forge. It costs 116 tokens per session (4,791 once invoked), scanned A, original, MIT.

A requirements-checking workflow that compares a written request with the current code and tests. It reports which parts are implemented, incomplete, or missing.

In plain words
What is it for?
Use it to check feature completeness, verify test coverage, limit the check to a directory, or optionally fill missing implementation and repeat the check.
Why use it?
It helps reveal gaps between what was requested and what the software actually delivers before release.

Skill for Claude CodeCodex

Part of the forge-teams plugin — 7 skills, 20 agents shipped together

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 skills/xrensiu/claude-code-forge/verify-requirement
Any agent
npx skills add XRenSiu/claude-code-forge --skill verify-requirement
Clone the repo
git clone --depth 1 https://github.com/XRenSiu/claude-code-forge

Made for: Claude Code, Codex.

Or install forge-teams, the plugin that ships this one along with the rest of its 7 skills, 20 agents.

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 forge-verify

README.md
[![agentmods](https://agentmods.dev/badge/skills/xrensiu/claude-code-forge/verify-requirement.svg)](https://agentmods.dev/skills/xrensiu/claude-code-forge/verify-requirement)
Your own site
<a href="https://agentmods.dev/skills/xrensiu/claude-code-forge/verify-requirement"><img src="https://agentmods.dev/badge/skills/xrensiu/claude-code-forge/verify-requirement.svg" alt="Measured on agentmods" height="20"></a>
Per session 116 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,791 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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 $0.00116 $0.04791
Opus 5 $0.00058 $0.02396
Sonnet 5 $0.00023 $0.00958
Haiku 4.5 $0.00012 $0.00479

Measured 4d ago against content hash 2869a84c4bea, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

forge-verify scanned grade A with 0 findings 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 4d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/forge-teams/skills/verify-requirement/SKILL.md · 540 lines

How it starts

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

Forge Verify - 独立需求验证

描述需求 → 结构化 → 映射代码实现 → 测试验证 → 差距报告。

这是 forge-teams 的独立需求验证入口。复用 spec-reviewer 的逐条验证方法论,但输入不依赖 P1 的 PRD,而是直接接收用户提供的需求描述。

Announce at start: "I'm using the forge-verify skill to check whether the described requirements are implemented in the current codebase."

注意: 本 skill 不需要 Agent Teams,使用 Lead 单 agent 流程执行。

用法

/forge-verify <requirement-description> [options]

参数说明

参数 说明 默认值
<requirement-description> 需求描述(文本、文件路径、或 URL) 必填
--strict 严格模式:PARTIAL 视为 FAIL 宽松模式
--with-tests 对每条 "已实现" 需求检查测试覆盖 不检查
--fix 发现 Gap 后自动补齐实现(PARTIAL → 补全,NOT_IMPLEMENTED → 实现) 不修复
--loop <N> 修复后重新验证,最多 N 轮(需配合 --fix 3
--format <format> 输出格式:matrix(完整合规矩阵)或 summary(摘要) matrix
--scope <path> 限定验证范围到指定目录 整个项目

示例

# 只验证,不修复
/forge-verify "用户可以通过邮箱注册,密码至少8位,注册后发送验证邮件"

# 从文件加载需求
/forge-verify requirements.md

# 严格模式 + 检查测试覆盖
/forge-verify "支持 OAuth2 登录和 JWT token 刷新" --strict --with-tests

# 验证 + 自动补齐实现
/forge-verify "用户可以通过邮箱注册,密码至少8位,注册后发送验证邮件" --fix

# 验证 + 补齐 + 多轮循环直到全部通过
/forge-verify "支持 OAuth2 登录和 JWT token 刷新" --fix --loop 5

# 只检查特定目录
/forge-verify "API 支持分页和排序" --scope src/api/

输出目录

docs/forge-verify/
└── [requirement-slug]-[timestamp]/
    ├── structured-requirements.md  # 结构化需求
    ├── code-mapping.md             # 需求到代码映射
    ├── test-coverage.md            # 测试覆盖检查(--with-tests)
    ├── gap-report.md               # 差距报告
    ├── fix-log.md                  # 修复记录(--fix)
    └── summary.md                  # 最终摘要

Protocol Overview

┌─────────────────────────────────────────────────────────────────┐
│                   VERIFY REQUIREMENT                              │
├─────────────────────────────────────────────────────────────────┤
│                                                                   │
│  Phase 0: STRUCTURIZE     将大白话需求翻译成可验证条件             │
│           ↓               EARS 格式 + 验收标准                    │
│                                                                   │
│  Phase 1: CODE MAPPING    逐条需求搜索代码实现                     │
│           ↓               Grep + Glob + 代码阅读                  │
│                                                                   │
│  Phase 2: TEST VERIFY     检查测试覆盖(可选)                     │
│           ↓               对 "已实现" 的需求验证测试               │
│                                                                   │
│  Phase 3: GAP REPORT      综合差距报告                             │
│           ↓               5 级分类 + 修复建议                     │
│                                                                   │
│  [--fix enabled]                                                  │
│                                                                   │
│  Phase 4: AUTO FIX        逐条补齐缺失实现                        │
│           ↓               按优先级: NOT_IMPLEMENTED → PARTIAL     │
│                            TDD: 先写测试 → 再实现 → 验证通过      │
│                                                                   │
│  Phase 5: RE-VERIFY       重新验证(回到 Phase 1)                 │
│                            只重验 Phase 4 修改的需求               │
│                            最多 --loop N 轮                       │
│                                                                   │
└─────────────────────────────────────────────────────────────────┘

Read the full file on GitHub · 540 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. 4d ago First seen · 540 lines · 116 tokens per session scan A 2869a84c4bea

Subscribe to this mod's changes

forge-verify is a skill published in the GitHub repository XRenSiu/claude-code-forge (2 stars, last pushed 2mo ago), licensed MIT. It adds 116 tokens to every session and 4,791 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens

auto-perf-optimize

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

microsoft/vscode · 62 tokens

chat-perf

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

microsoft/vscode · 51 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens