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

ln-513-agent-reviewerln 513Agent 审稿人

Agent Skill

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

总安装

979

周安装

40

GitHub Stars

441

下载量

314
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-513-agent-reviewer

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 支持基于关键词、任务场景或来源线索进行信息检索与筛选。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • ln-513-agent-reviewer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Paths: File paths (shared/, references/, ../ln-*) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root.

Agent Reviewer (Code)

Runs parallel external agent reviews on code implementation, critically verifies suggestions, returns filtered improvements.

Purpose & Scope

  • Worker in ln-510 quality coordinator pipeline (invoked by ln-510 Phase 4)
  • Run codex-review + gemini-review as background tasks in parallel
  • Process results as they arrive (first-finished agent processed immediately)
  • Critically verify each suggestion; debate with agent if Claude disagrees
  • Return filtered, deduplicated, verified suggestions with confidence scoring
  • Health check + prompt execution in single invocation

When to Use

  • Invoked by ln-510-quality-coordinator Phase 4 (Agent Review)
  • All implementation tasks in Story status = Done
  • Code quality (ln-511) and tech debt cleanup (ln-512) already completed

Parameters

ParameterValue
review_typecodereview
skill_group513
prompt_templateshared/agents/prompt_templates/code_review.md
verdict_acceptableCODE_ACCEPTABLE

Inputs

InputRequiredSourceDescription
storyIdYesargs, git branch, kanban, userStory to process

Resolution: Per shared/references/input_resolution_pattern.md — Story Resolution Chain. Status filter: In Progress, To Review

Workflow

MANDATORY READ: Load shared/references/input_resolution_pattern.md, shared/references/tools_config_guide.md, shared/references/storage_mode_detection.md, shared/references/agent_review_workflow.md, and shared/references/agent_delegation_pattern.md.

Phase 0: Resolve Inputs & Tools Config

  1. Resolve storyId (per input_resolution_pattern.md):

- IF args provided → use args - ELSE IF git branch matches feature/{id}-* → extract id - ELSE IF kanban has exactly 1 Story in [In Progress, To Review] → suggest - ELSE → AskUserQuestion: show Stories from kanban filtered by [In Progress, To Review]

  1. Read docs/tools_config.md (bootstrap if missing per tools_config_guide.md). Extract: task_provider = Task Management → Provider (linear | file).

Unique Steps (before shared workflow)

  1. Health check: per shared workflow, filter by skill_group = 513.
  2. Get references:

- IF task_provider = linear: get_issue(storyId) → extract URL + identifier. list_issues(filter: {parent: {id: storyId}, status: "Done"}) → extract Done implementation Task URLs/identifiers (exclude label "tests"). - IF task_provider = file: Read story.md → extract path. Glob("docs/tasks/epics/*/stories/*/tasks/*.md") → filter Done tasks (check **Status:** Done), exclude label "tests".

  1. Ensure.agent-review/: per shared workflow.
  2. Build prompt: Read template shared/agents/prompt_templates/code_review.md.

- Replace {story_ref} with - Linear: {url} or - File: {path} - Replace {task_refs} with bullet list: - {identifier}: {url_or_path} per task - Save to .agent-review/{identifier}_codereview_prompt.md (single shared file -- both agents read the same prompt)

Shared Workflow Steps

5-8) Load Review Memory, Run agents, Critical Verification + Debate, Aggregate + Return: per shared workflow.

  • {review_type} = "Code Implementation" (for challenge template)
  1. Save Review Summary: per shared workflow "Step: Save Review Summary".

Output Format

verdict: CODE_ACCEPTABLE | SUGGESTIONS | SKIPPED
suggestions:
  - area: "security | performance | architecture | correctness | best_practices"
    issue: "What is wrong"
    suggestion: "Specific fix"
    confidence: 95
    impact_percent: 15
    source: "codex-review"
    resolution: "accepted | accepted_after_debate | accepted_after_followup | rejected"

Agent stats and debate log per shared workflow output schema.

Fallback Rules

Per shared workflow, plus:

ConditionAction
Parent skill (ln-510)Falls back to Self-Review (native Claude)

Verdict Escalation

  • Findings with area=security or area=correctness -> parent skill can escalate PASS -> CONCERNS
  • This skill returns raw verified suggestions; escalation decision is made by ln-510

Critical Rules (additional)

  • MANDATORY INVOCATION: Parent skills MUST invoke this skill. Returns SKIPPED gracefully if agents unavailable. Parent must NOT pre-check and skip.

Reference Files

  • Tools config: shared/references/tools_config_guide.md
  • Storage mode operations: shared/references/storage_mode_detection.md
  • Shared workflow: shared/references/agent_review_workflow.md
  • Agent delegation pattern: shared/references/agent_delegation_pattern.md
  • Prompt template (review): shared/agents/prompt_templates/code_review.md
  • Challenge schema: shared/agents/schemas/challenge_review_schema.json

Version: 2.0.0 Last Updated: 2026-02-11

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.45%
按下载量换算105

Claude

33.26%
按下载量换算104

Cursor

17.94%
按下载量换算56

Gemini CLI

9.63%
按下载量换算30

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills