Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

autonomous-review自主审查

Agent Skill

autonomous-review 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

768

周安装

33

GitHub Stars

15

下载量

269
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:autonomous-review(自主审查)
来源仓库:https://github.com/zxkane/autonomous-dev-team
仓库路径:skills/autonomous-review
安装命令:
npx skills add https://github.com/zxkane/autonomous-dev-team --skill autonomous-review
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/zxkane/autonomous-dev-team --skill autonomous-review

简介

针对自主开发 PR 的自动化代码审查与质量门禁系统。

  • 适合需要确保自主生成代码质量的团队协作环境。autonomous-review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 提供跨平台兼容性和浏览器自动化验证支持能力。
  • 可选配 IDE 钩子实现自动化的代码风格和质量检查。
  • 使用前应确认是否启用钩子功能及对应的安全策略配置。

SKILL.md

Autonomous Review Mode

You are reviewing a PR created by an autonomous development session. Be thorough and objective.

Cross-Platform Notes

This skill works with any IDE/CLI that supports skills. Browser automation steps use Chrome DevTools MCP — ensure your IDE has this MCP server configured for E2E verification.

Hooks (Optional)

If your IDE supports hooks (Claude Code, Kiro CLI), workflow enforcement hooks in hooks/ provide automatic gate checks. Without hooks, follow each step manually.

Review Checklist

Verify ALL of the following:

1. Process Compliance

  • Design canvas exists in docs/designs/ or docs/plans/
  • Branch follows naming convention (feat/, fix/, refactor/, etc.)
  • Test cases documented in docs/test-cases/
  • PR description follows template (Summary, Design, Test Plan, Checklist sections)
  • PR references the issue (Closes #N or Fixes #N)

2. Code Quality

  • No security issues (no credentials, no injection vulnerabilities)
  • TypeScript types are correct (no any abuse)
  • Error handling is appropriate
  • Code follows existing patterns in the codebase
  • No obvious performance regressions

3. Testing

  • Unit tests exist for new functionality
  • Unit test coverage is reasonable for new code
  • E2E tests updated if UI changes were made
  • All CI checks are passing

4. Infrastructure (if applicable)

  • Infrastructure-as-Code changes are safe
  • No accidental resource deletions
  • IAM permissions follow least privilege

5. Optional: Bot Reviewer Verification

  • If configured bot reviewers have posted reviews, verify their findings are addressed
  • All bot review threads are resolved
  • If bot review is missing and configured, trigger it using scripts/gh-as-user.sh (see below) and wait
IMPORTANT: Some bot reviewers (e.g., Amazon Q Developer) ignore trigger comments posted by GitHub App bot accounts. When triggering bot reviews, you MUST use scripts/gh-as-user.sh so the comment is attributed to a real user: ``bash bash scripts/gh-as-user.sh pr comment {pr_number} --body "/q review" bash scripts/gh-as-user.sh pr comment {pr_number} --body "/codex review" ` Do NOT use the default gh wrapper for bot review triggers — it authenticates as a bot, which some reviewers ignore. If scripts/gh-as-user.sh is not available, fall back to gh pr comment` directly.

6. E2E Verification via Chrome DevTools MCP

If E2E verification is configured (preview URL provided in the prompt), this section is MANDATORY. If no preview URL is configured, skip this section.
  • Preview URL extracted from PR comments
  • Preview URL navigated successfully via Chrome DevTools MCP
  • Test user login verified on preview environment
  • Happy path test cases selected and executed (see section below)
  • Feature test cases executed against live preview
  • Regression tests executed (auth, navigation, console errors)
  • Screenshots captured, uploaded, and linked as evidence
  • E2E verification report posted as PR comment with screenshot links

Merge Conflict Resolution — MANDATORY Pre-Review Step

Before starting the review, check whether the PR branch has merge conflicts with main. If it does, rebase the branch so the PR is mergeable. For the complete rebase procedure, conflict handling, and failure protocol, consult references/merge-conflict-resolution.md.

Quick check:

MERGEABLE=$(gh pr view <PR_NUMBER> --repo <REPO> --json mergeable -q '.mergeable')
  • MERGEABLE — proceed to Review Process
  • CONFLICTING — follow rebase procedure in references
  • UNKNOWN — wait and retry (up to 3 times)

Review Process

  1. Read the issue to understand requirements
  2. Read ALL issue comments to detect requirement changes (see "Requirement Drift Detection" below)
  3. Read the PR diff thoroughly (gh pr diff <number>)
  4. Check CI status (gh pr checks <number>)
  5. Read the files for design docs, test cases, etc. to verify they exist
  6. Assess code quality against the checklist above
  7. Verify bot reviewer findings (if configured — see checklist section 5)
  8. Select happy path test cases based on PR diff analysis (see below)
  9. Perform E2E verification (if configured — see procedure below)
  10. Mark acceptance criteria — for each verified criterion, mark its checkbox in the issue body (see "Marking Acceptance Criteria")
  11. MANDATORY SELF-CHECK GATE — execute the Findings->Decision Gate (see below) BEFORE submitting any review verdict

Requirement Drift Detection — MANDATORY

This step MUST be performed BEFORE reading the PR diff. Requirements can change after implementation via issue comments from the repo owner or maintainers.

Read ALL comments on the issue (not just the body) and look for:

  • Scope changes ("remove", "no longer", "drop", "don't support", "instead of")
  • New requirements added after the original issue was created
  • Corrections or clarifications from the repo owner
  • Explicit instructions to the dev agent that may not yet be reflected in the PR code
# Read all issue comments to check for requirement changes
gh issue view <ISSUE_NUMBER> --repo <REPO> --json comments \
  -q '.comments[] | "\(.author.login) [\(.createdAt)]: \(.body[0:500])"'

If any requirement change is found that the PR code does NOT reflect:

  • This is a [BLOCKING] Requirement drift finding
  • The PR must be sent back to dev with specific instructions about what changed
  • Quote the comment that changed the requirement
  • List the specific code/files that need to be updated

Happy Path Test Cases

Happy path test cases are project-specific. The review agent selects cases based on:

  1. Read docs/test-cases/ directory for available test case documents
  2. Analyze the PR diff to determine which areas changed
  3. Select the most relevant test cases covering changed functionality
  4. Execute at least one happy path test case per review

If no test case documents exist, execute a basic smoke test:

  • Navigate to the application root URL
  • Verify the page loads without errors
  • Check browser console for JavaScript errors

E2E Verification Procedure

This section applies only when E2E verification is configured. The review wrapper script (autonomous-review.sh) will indicate whether E2E is enabled and provide the necessary configuration in the prompt.

For the complete step-by-step E2E procedure (browser automation, screenshot upload, test execution, report format), consult references/e2e-verification.md.

Key steps:

  1. Verify preview URL is available
  2. Open browser and navigate via Chrome DevTools MCP
  3. Login with test user credentials
  4. Execute happy path and feature test cases
  5. Run regression checks (auth, navigation, console errors)
  6. Post structured E2E report on the PR with screenshot evidence

Marking Acceptance Criteria

During E2E verification, mark each acceptance criterion checkbox in the issue body as you verify it.

Procedure

  1. Read the issue body and identify the ## Acceptance Criteria section
  2. For each criterion: a. Verify it via Chrome DevTools MCP, code inspection, or CI check results b. If it passes, mark the checkbox: bash scripts/mark-issue-checkbox.sh <ISSUE_NUMBER> "<criterion text>" c. If it fails, STOP marking — record the failure and proceed to "Review findings"
  3. The script uses gh (which picks up the active App token via GH_TOKEN_FILE), so edits appear as the configured review bot

Important Rules

  • Mark criteria only after verifying them — do not pre-mark
  • If ANY criterion fails, do NOT mark it — post "Review findings:" instead
  • Do NOT mark Requirements checkboxes — those are for the dev agent
  • ALL acceptance criteria must be checked (- [x]) before approving the PR

Findings -> Decision Gate — MANDATORY

This gate is NON-NEGOTIABLE. Execute this self-check BEFORE submitting any PR review (APPROVE or REQUEST_CHANGES) and BEFORE posting the verdict comment on the issue.

For the complete gate procedure (finding classification, blocking vs non-blocking rules, self-check questions, decision criteria, and output format), consult references/decision-gate.md.

Summary of the hard rule:

  • ANY blocking finding -> verdict MUST be FAIL (do NOT approve)
  • ZERO blocking findings -> verdict is PASS (approve + merge)
  • There is NO middle ground — blocking findings and APPROVE are mutually exclusive

Post the review result as a comment on the issue (NOT the PR). Use "Review PASSED" for pass, "Review findings:" for fail.


References

For detailed procedures, consult:

  • references/merge-conflict-resolution.md -- Complete rebase procedure, conflict handling, and failure protocol
  • references/e2e-verification.md -- Browser automation steps, screenshot upload, test execution, E2E report format
  • references/decision-gate.md -- Finding classification, blocking rules, decision criteria, and output format

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.88%
按下载量换算97

Claude

28.62%
按下载量换算77

Cursor

18.04%
按下载量换算49

Gemini CLI

9.2%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills