Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

multi-cli-review-actionmulti CLI 审查 action

Agent Skill

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

总安装

689

周安装

29

GitHub Stars

公开资料未说明

下载量

241
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/starforall/ai-coding-toolkit --skill multi-cli-review-action

简介

multi-cli-review-action 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 支持基于语义匹配、标签过滤和上下文相关性进行智能内容检索与排序。
  • 安装命令为 npx skills add https://github.com/starforall/ai-coding-toolkit --skill multi-cli-review-action。
  • 使用前需确认权限范围、维护状态,注意可能触发联网、命令执行或文件读写操作。

SKILL.md

Multi-CLI Review Action

Version History

  • v2.1: Tightened report intake rules, safety gates, and skill-spec alignment for the current workflow contract

Purpose

multi-cli-review-action is the current CLI only skill for consuming reviewer reports that were generated by multi-cli-review.

It exists to do one job safely:

  1. Collect reviewer reports
  2. Deduplicate and classify findings
  3. Re-check each candidate against local code and project rules
  4. Ask for confirmation before edits
  5. Apply only confirmed, in-scope fixes
  6. Record decisions and verification results

When to Use

Use this skill when any of the following is true:

  • Other CLI instances have already written one or more multi-cli-review reports
  • The user asks to "汇总这些审查报告"
  • The user asks to "处理 multi-cli-review 输出"
  • The user asks to "按 reviewer 建议执行修复"
  • The current CLI must reconcile multiple reviewer opinions before changing files

When Not to Use

  • You only need to generate reviewer findings, not apply fixes: use multi-cli-review
  • You are doing a normal implementation task without multi-reviewer handoff
  • The reports are still unconfirmed hypotheses and the user has not yet agreed to a fix plan

Core Rules

  1. Single fixer: reviewer CLIs only produce reports; this skill never delegates edits back to reviewers.
  2. Reports are evidence, not truth: every finding must be re-checked against the local codebase, task scope, and project rules before adoption.
  3. No surprise edits: after summary and decisioning, the current CLI must get user confirmation before making concrete file changes.
  4. No scope expansion: only fix issues that belong to the current task; do not piggyback refactors, new features, or broad cleanups.
  5. No automatic conflict resolution: mutually exclusive or high-risk suggestions require human judgment.
  6. Verification is mandatory: after edits, run the relevant validation commands before claiming completion.
  7. Project-root path resolution: relative paths are resolved against the active project root, never system /tmp or a tool install directory.

Protocols

ProtocolStatusWhen Used
action-v2CurrentExplicit --task-dir task-level multi-reviewer flow
action-v1Compatibility onlyLegacy single-report flow

Protocol Selection

  1. If --task-dir is present, use action-v2.
  2. If a single legacy report path is provided, use action-v1.
  3. New work should prefer action-v2.

Inputs

action-v2

ParameterRequiredMeaning
--task-dirYesTask directory, for example tmp/multi-cli-review/<task-id>
--roundNoReview round to consume; default is the latest available round
--forceNoRe-consume reports already listed in .processed.json
--dry-runNoProduce decisions only; do not edit files and do not mark reports as consumed

action-v1 Compatibility

ParameterRequiredMeaning
<report-path>YesLegacy cur_defect.md path or equivalent single report
<plan-path>NoOptional existing optimization/action draft

Path Rules

Relative paths must resolve against the active project root.

Do not reinterpret relative paths as:

  • the skill repository root
  • the user home directory
  • system /tmp
  • a CLI installation directory

If project root detection is ambiguous, stop and ask for an absolute path instead of guessing.

Report Intake Contract

For action-v2, only consume files that satisfy all of the following:

  1. The file lives under {task-dir}/review-round-{N}/
  2. The basename is exactly <reviewer-id>.md
  3. The frontmatter includes:

- task-id - round - reviewer-id - protocol: task-level

  1. Frontmatter values match the directory and filename
  2. The file is not one of:

- summary-*.md - action.md - ad-hoc notes, scratch docs, or human decision memos

If a file is ambiguous, malformed, or inconsistent with the contract, stop and ask for cleanup instead of consuming it optimistically.

Reviewer Count Rules

  • This skill may process 1 to 4 reviewer reports in a round.
  • 0 reports is an error.
  • More than 4 reports is an error.
  • The default reviewer count is owned by the upstream workflow/command, not by this skill.
  • In the current project workflow, upstream docs currently use 2 reviewers by default. This skill must stay compatible with that and must not silently redefine the default as 1.

Decision States

Each candidate finding must end in exactly one of these states:

  • adopted: confirmed against code/spec/task boundary and approved for execution
  • ignored: rejected with a concrete reason
  • manual-decision: conflict, ambiguity, or risk requires human input
  • blocked: execution or verification could not proceed

Workflow

Step 1: Resolve Mode and Inputs

  1. Determine whether this is action-v2 or legacy compatibility mode.
  2. Resolve all relative paths against the active project root.
  3. Load .processed.json when present.

Step 2: Collect Candidate Reports

For action-v2:

  1. Read only the target review-round-{N} directory.
  2. Filter files using the report intake contract.
  3. Reject malformed or mismatched files.
  4. Skip previously consumed reports unless --force is set.

Stop conditions:

  • no valid report files
  • more than four valid report files
  • all valid reports already consumed and --force is not set

Step 3: Convert Reports into Candidate Findings

  1. Merge findings by location and meaning, not by filename alone.
  2. Preserve all source reviewers for each merged finding.
  3. Preserve conflicting fix directions instead of flattening them away.

Step 4: Re-check Every Candidate Locally

Before any finding can be marked adopted, the current CLI must verify:

  1. the issue still exists in the current code
  2. the issue belongs to the active task boundary
  3. the proposed fix does not contradict project rules or existing abstractions
  4. the proposed fix is smaller than the damage it prevents

If any of those checks fail, mark the finding ignored or manual-decision; do not auto-adopt it.

Step 5: Decide

Use this decision policy:

  • adopted: specific, in-scope, locally verified, safe to change
  • ignored: stale, duplicate, incorrect, out-of-value, or already fixed
  • manual-decision: conflicting suggestions, unclear ownership, risky side effects, or unresolved boundary questions

Every non-adopted item must include a reason that is specific enough to avoid the same report being re-litigated next round.

Step 6: Write the Summary First

Write summary-round-{N}.md before any file edits.

The summary must record:

  • reviewer files consumed
  • total findings before and after deduplication
  • conflicts
  • the full decision list
  • ignored reasons
  • manual-decision items that still need user input

Step 7: Ask for Confirmation Before Edits

After the summary exists, present the fix plan and wait for user confirmation.

Do not edit files yet when:

  • the user has not confirmed execution
  • any manual-decision item blocks safe progress
  • the remaining plan would expand scope

Step 8: Execute Only Confirmed Fixes

In normal mode:

  1. modify files only for adopted items
  2. keep changes inside the confirmed boundary
  3. record what changed and why in action.md

In --dry-run mode:

  1. do not modify source files
  2. do not mark reports as consumed
  3. write only decision artifacts that clearly say they are previews

Step 9: Verify Before Completion

After edits, run the smallest command set that can prove the fixes did not introduce new issues:

  • lint or formatting checks if relevant
  • typecheck if relevant
  • tests or targeted regression commands if relevant

Record actual results only: pass, fail, or not run.

Step 10: Finalize State

  1. Update action.md
  2. Update .processed.json only for reports actually consumed in a non-dry-run execution
  3. Leave blocked or manual items visible for the next human decision

Output Files

summary-round-{N}.md

Minimum contents:

  • task id and round
  • reviewer source list
  • deduplicated findings table
  • conflicts table
  • decision summary
  • ignored reasons
  • pending manual decisions

action.md

Minimum contents:

  • execution mode: normal or dry-run
  • adopted edits actually applied
  • ignored items and reasons
  • blocked or manual-decision items
  • verification commands and outcomes

.processed.json

Use this as internal consumption state only.

Rules:

  • do not update it during --dry-run
  • do not mark malformed or skipped reports as consumed
  • do not use it as a substitute for action.md

Conflict Handling

Treat a finding as conflicted when reviewers disagree on any of these:

  • whether a change is needed at all
  • the file or location to change
  • the implementation direction
  • the risk or severity in a way that changes the recommended action

Conflict policy:

  1. keep all alternatives visible
  2. do not choose automatically
  3. surface the exact conflict to the user

Example prompt:

⚠️ 需要人工介入

冲突问题:src/c.py:30
- reviewer-a:重构整个函数
- reviewer-b:仅修正返回值

请选择:
1. 采纳 reviewer-a
2. 采纳 reviewer-b
3. 自定义方案
4. 忽略该问题

Required Stop Conditions

Stop and ask for human input when any of the following is true:

  • conflicting suggestions remain unresolved
  • a finding crosses task scope
  • a suggested fix would violate project conventions or security expectations
  • verification fails
  • the report set is malformed or incomplete
  • the round already reached the agreed limit and unresolved items remain

Error Handling

CaseRequired Behavior
task dir missingstop and ask for a valid path
no valid reportsstop and report the empty round
all reports already consumedstop unless --force is set
malformed report metadatareject the report and ask for cleanup
more than four reportsstop and ask the user to narrow the round
execution failuremark the item blocked, record why, continue only if safe
verification failurerecord failure truthfully and do not claim the fix is complete

Common Mistakes

  • Treating reviewer output as ground truth: always re-check locally before adoption.
  • Consuming every .md file in the round directory: only accept files that match the report contract.
  • Redefining reviewer defaults inside this skill: upstream workflow decides the default count.
  • Fixing beyond scope: do not smuggle in refactors or adjacent feature work.
  • Skipping confirmation: summary first, confirmation second, edits third.
  • Skipping verification: a changed file without validation can create a new problem while solving the old one.

Examples

Example 1: Current Protocol

用户:/multi-cli-review-action --task-dir tmp/multi-cli-review/skill-review --round 1

CLI:
1. 读取 round-1 下 2 份 reviewer 报告
2. 校验 frontmatter 与文件名一致
3. 合并并去重
4. 对每个候选问题重新核对本地代码和任务边界
5. 输出 summary-round-1.md
6. 等待用户确认
7. 执行已确认修复
8. 运行验证命令
9. 写入 action.md 和 .processed.json

Example 2: Dry Run

用户:/multi-cli-review-action --task-dir tmp/multi-cli-review/skill-review --round 2 --dry-run

CLI:
1. 读取 round-2 报告
2. 输出决策和冲突
3. 生成预览版 summary / action
4. 不改源码
5. 不更新 .processed.json

Related Skills

  • multi-cli-review: reviewer-side report generation
  • verification-before-completion: post-change verification discipline
  • brainstorm: boundary clarification before accepting risky fixes

Compatibility Notes

  • Single-report legacy usage may still enter action-v1, but it must follow the same safety gates: re-check locally, ask before editing, and verify afterward.
  • New task-level usage should always prefer action-v2 with explicit --task-dir.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.04%
按下载量换算82

Claude

31.16%
按下载量换算75

Cursor

17.02%
按下载量换算41

Gemini CLI

9.04%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills