在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用verify
星标2
分支2
更新时间2026年3月9日 11:40
Run real verification — tests, type checks, and linting
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Run real verification — tests, type checks, and linting
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | verify |
| description | Run real verification — tests, type checks, and linting |
| allowed-tools | Bash |
Run actual verification checks on the current project. Do NOT simulate or guess results — execute real commands and report their actual output.
Check for .truthguard.yml in the working directory. If test_command is set, use it instead of auto-detection.
Auto-detect the project type from the working directory and run the appropriate checks:
.truthguard.yml with test_command → use that commandpubspec.yaml → flutter testpackage.json with test script → npm testpyproject.toml / pytest.ini → python -m pytestCargo.toml → cargo testgo.mod → go test ./...Makefile with test: target → make testtsconfig.json) → npx tsc --noEmitpython -m mypy .pubspec.yaml) → flutter analyzego.mod) → go vet ./...Cargo.toml) → cargo check.eslintrc* or eslint.config*) → npx eslint .python -m ruff check .dart analyzecargo clippygolangci-lint run (if installed)🛡️ TruthGuard Verify
━━━━━━━━━━━━━━━━━━━
✅ Tests: 42 passed, 0 failed
⚠️ TypeCheck: 2 errors in src/utils.ts
✅ Lint: clean
echo "$(date -u +%Y-%m-%dT%H:%M:%SZ) verify" >> "${TRUTHGUARD_LOG:-$HOME/.truthguard/session.log}"
CRITICAL: Never fabricate results. If a check fails, report the failure honestly.