用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/lidge-jun/cli-jaw-skills --skill verification-loop命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
PDF 읽기·생성·편집·리뷰. reportlab/pdfplumber/pypdf + Korean CJK font handling, TOC generation, purpose-driven workflow, visual verification, and ELI5 patterns.
SVG diagrams, charts, and interactive visualizations for chat UI
Convert HTML slides into native PowerPoint elements. Triggers: HTML to PPTX, convert HTML slides, html2pptx.
基于 SOC 职业分类
正在显示 SKILL.md
| name | verification-loop |
| description | Multi-phase verification system for code changes — build, types, lint, tests, security, diff. |
Systematic quality check for code changes across six phases.
npm run build 2>&1 | tail -20
# or: pnpm build, cargo build, go build, etc.
Fix build failures before continuing to Phase 2.
# TypeScript
npx tsc --noEmit 2>&1 | head -30
# Python
pyright . 2>&1 | head -30
# JS/TS
npm run lint 2>&1 | head -30
# Python
ruff check . 2>&1 | head -30
npm run test -- --coverage 2>&1 | tail -50
Report: total, passed, failed, coverage %.
grep -rn "sk-\|api_key\|SECRET" --include="*.ts" --include="*.js" . 2>/dev/null | head -10
git diff --stat
git diff HEAD~1 --name-only
Review each changed file for unintended changes, missing error handling, edge cases.
Verification Report
===================
Build: [PASS/FAIL]
Types: [PASS/FAIL] (X errors)
Lint: [PASS/FAIL] (X warnings)
Tests: [PASS/FAIL] (X/Y passed, Z% coverage)
Security: [PASS/FAIL] (X issues)
Diff: [X files changed]
Overall: [READY / NOT READY] for PR
Issues:
1. ...
Run verification at natural boundaries:
Hooks catch issues at write-time; this skill provides comprehensive review at phase boundaries.