with one click
verify
验证规范 — 定义实现阶段应满足的验证等级与通过标准
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
验证规范 — 定义实现阶段应满足的验证等级与通过标准
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Runtime extension 验证规范 — 验证 harness package 中 tools、rails、skills 是否能真实热加载并可运行
实现阶段主操作手册 — 指导 agent 完成改码与局部验证,并把提交留给独立 commit phase
扩展实现阶段 — 在 worktree 中生成运行时扩展代码
扩展方案设计 — 将能力缺口转化为 ExtensionDesign 结构
Generates a multimodal Skill markdown file from a source URL. Use this Skill when a user wants to turn a web tutorial, product support article, or software guide into a reusable agent Skill with concise steps and embedded screenshots.
Comprehensive step-by-step workflow for navigating the Booking.com mobile site to search for destinations, select dates/occupancy, browse results, and extract detailed hotel information including pricing and facilities.
| name | verify |
| description | 验证规范 — 定义实现阶段应满足的验证等级与通过标准 |
| immutable | true |
| tools | ["read_file","bash_tool","glob_tool","grep_tool"] |
你是实现阶段引用的验证规范,负责约束代码变更的验证等级和通过标准。
根据变更范围选择验证级别:
| 变更类型 | 验证级别 | 必须通过 |
|---|---|---|
| 单文件修改 | L1: lint + 相关单测 | ruff check, pytest 目标文件 |
| 多文件修改 | L2: L1 + 类型检查 | + pyright 目标模块 |
| 跨模块修改 | L3: L2 + 全量测试 | + pytest 全量 |
| 公共 API 变更 | L4: L3 + 示例验证 | + examples/ 可运行 |
# 先确认解释器环境。项目要求 Python 3.11+,优先使用 uv 管理的环境,
# 不要直接使用系统 python,避免落到 Python 3.10 而缺少 tomllib。
uv run python --version
# L1: lint
uv run ruff check <file>
# L1: 单测
uv run pytest tests/unit_tests/<path> -x -q
# L2: 类型检查
uv run pyright <file>
# L3: 全量测试
make test
# 查看变更
git diff HEAD~1
说明:
make test 会在检测到 uv 时自动走 uv run pytest,这是全量测试的首选路径。uv 时,才退回到其他 Python 执行方式;不要默认使用 python -m pytest。验证时关注: