بنقرة واحدة
deep-verify
Multi-angle release quality verification using parallel expert review teams
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Multi-angle release quality verification using parallel expert review teams
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Full R017 verification (5+3 rounds) before commit
Load a skill profile to switch active plugin set. Use when user wants to focus on a specific workflow (web-app/data-eng/harness-dev/minimal) and reduce skill enumeration block size per
6-stage structured development cycle with stage-based tool restrictions
Deploy applications to Vercel with auto-detection and preview URLs
Auto-detect project context and optimize harness — deactivate unused agents/skills, suggest missing experts, generate project profile
Monitor Claude Code releases and auto-generate GitHub issues for each new version
| name | deep-verify |
| description | Multi-angle release quality verification using parallel expert review teams |
| scope | core |
| version | 1.1.0 |
| user-invocable | true |
| effort | high |
Performs deep cross-iterative verification of code changes before release, using multiple independent review perspectives to catch issues that single-pass review misses.
/deep-verify [branch|PR]
If no argument, verifies current branch against its base (usually develop).
git diff develop...HEAD)Spawn 6 parallel review agents, each with a different focus:
Each agent receives the full diff and returns findings as structured JSON:
{
"severity": "HIGH|MEDIUM|LOW",
"file": "path/to/file",
"line": 42,
"finding": "description",
"suggestion": "fix suggestion"
}
toQuery() output, test result)Run these checks before declaring release READY. Any match is a release blocker.
| Guard | Detection Command | Severity | Remediation |
|---|---|---|---|
Residual deprecated /tmp sensitive-path bypass narrative | `grep -rnE -e 'regardless of[[:space:]]+.?bypassPermissions' -e '(MUST | MANDATORY | Mandatory)[^\n]{0,80}/tmp/*.sh' -e '/tmp/*.sh[^\n]{0,80}(MANDATORY |
Why: The temp-script sensitive-path bypass for
.claude/paths was deprecated in CC v2.1.121 (2026-04-28, #1101). Direct Write/Edit/Bash on.claude/**works undermode: "bypassPermissions"; only catastrophic shell operations (rm -rf /) remain independently blocked. Residual bypass procedures or false "guard blocks bypassPermissions" claims in skills/agents are now defects — this guard catches them with a cheap deterministic grep (R023 shift-left: catch stale platform procedures before they reach expensive review).
╔══════════════════════════════════════════════════════╗
║ Deep Verification Report ║
╠══════════════════════════════════════════════════════╣
║ Branch: {branch} ║
║ Commits: {count} ║
║ Files changed: {count} ║
╠══════════════════════════════════════════════════════╣
║ Findings: ║
║ HIGH: {n} ({confirmed} confirmed, {fp} FP) ║
║ MEDIUM: {n} ({confirmed} confirmed, {fp} FP) ║
║ LOW: {n} ║
╠══════════════════════════════════════════════════════╣
║ Fixes Applied: {n} ║
║ Tests: {pass}/{total} passing ║
║ Verdict: READY / NEEDS REVIEW / BLOCKED ║
║ Philosophy: ALIGNED / {n} CONCERNS ║
║ Regression: CLEAN / {n} RISKS ║
╚══════════════════════════════════════════════════════╝
model: sonnet for cost efficiencymodel: opus for reasoning depthWhen spawning agents via the Agent tool during this skill's execution, always pass mode: "bypassPermissions". The Agent tool default (acceptEdits) overrides agent frontmatter permissionMode, causing permission prompts during unattended execution.