verify
Run comprehensive build + test + git verification and produce a pass/fail report
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run comprehensive build + test + git verification and produce a pass/fail report
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Incrementally fix build errors with minimal diffs, one error at a time
Dispatch an independent Codex verification job for the current changes
Inspect all changed files, group by logical concern, and guide atomic per-concern commits
Launch parallel deep-dive agents to review completed work for quality, standards, and completeness
Regression-safe cleanup of AI-generated bloat in Lua code. Deletion-first, requires passing tests before starting
Create a GitHub issue for a feature, bug fix, or crash with structured sections
| name | verify |
| description | Run comprehensive build + test + git verification and produce a pass/fail report |
| argument-hint | [quick|full] |
Run the full verification suite and produce a pass/fail report.
Mode: $ARGUMENTS (default: full)
Lua syntax check — Validate all .lua files compile:
find src_new -name '*.lua' -type f -exec luac5.1 -p {} \; 2>&1
If luac5.1 is not available, use the YAML-header-stripping approach from lint-before-commit.sh.
Build — Run the full pipeline:
./build.sh
Report — Pass/fail verdict.
Unit tests — Run the test suite:
lua5.1 src_new/tests/test_runner.lua
Version consistency — Verify all 3 version sources match:
version.txtmuddler_project/mfile (JSON version field)src_new/scripts/_groups.yaml (ataxiaVersion value)Git status — Check for uncommitted changes:
git status --short
git diff --stat
CHANGELOG check — Verify CHANGELOG.md has been updated if source files changed:
git diff --name-only HEAD | grep -v CHANGELOG
TODO/FIXME scan — Count open items in source:
grep -rE 'TODO|FIXME|HACK|XXX' src_new/ --include='*.lua' | wc -l
VERIFICATION REPORT
====================
Mode: [quick|full]
Date: [timestamp]
[PASS/FAIL] Lua syntax check — N files checked, N errors
[PASS/FAIL] Build — build.sh exit code
[PASS/FAIL] Unit tests — N passed, N failed
[PASS/FAIL] Version consistency — version.txt=X, mfile=Y, yaml=Z
[PASS/FAIL] Git status — N staged, N unstaged, N untracked
[PASS/FAIL] CHANGELOG updated — [yes/no]
[INFO] TODO/FIXME count — N items
VERDICT: READY FOR COMMIT / ISSUES FOUND