Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

gh-address-crgh 地址 cr

Agent Skill

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

总安装

321

周安装

13

GitHub Stars

1

下载量

101
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/rbbtsn0w/gh-address-cr-skill --skill gh-address-cr

简介

gh-address-cr 用于查找、检索和筛选相关信息,适合快速定位候选结果。

  • 适用于在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景获取信息。
  • 通过 npx skills add 命令安装,需确认权限范围和维护状态后再使用。
  • 使用前应检查是否会触发联网、命令执行或文件读写等高风险操作。
  • 建议结合原始 README 和来源仓库进一步核验具体用法和功能边界。

SKILL.md

gh-address-cr

Use this skill as the PR review orchestrator. It owns session state, intake routing, and the final gate.

Usage

/gh-address-cr review <owner/repo> <pr_number>
/gh-address-cr threads <owner/repo> <pr_number>
/gh-address-cr findings <owner/repo> <pr_number> --input <path>|-
/gh-address-cr adapter <owner/repo> <pr_number> <adapter_cmd...>

Packaging Scope

This file is part of the packaged gh-address-cr skill. All paths in this document are relative to the installed skill root.

  • scripts/... means files inside this packaged skill
  • references/... means skill-owned reference docs
  • agents/openai.yaml is an assistant-specific hint file inside the skill

A surrounding source repository may also contain repo-level tests, CI, and release metadata, but those are outside the packaged skill payload.

Agent Execution Ladder

Read this skill in this order when you are an AI agent:

  1. Start from the public main entrypoint: review <owner/repo> <pr_number>.
  2. If review returns WAITING_FOR_EXTERNAL_REVIEW, fill the handoff files in the PR workspace:

- producer-request.md - incoming-findings.json - incoming-findings.md

  1. Rerun the same review command. It will auto-consume findings JSON or fixed finding blocks and continue orchestration.
  2. If review returns BLOCKED, inspect the loop request artifact, apply fix, clarify, or defer, then rerun the same review command.
  3. Use threads, findings, adapter, and review-to-findings only as advanced/internal integration surfaces.

Fail-fast rules:

  • review is the only public main entrypoint.
  • review does not bind to any one review skill or tool name.
  • If findings are absent, review returns WAITING_FOR_EXTERNAL_REVIEW and writes a standard producer handoff request instead of waiting on stdin.
  • External review producer output must be findings JSON or fixed finding blocks.
  • review-to-findings does not accept arbitrary Markdown. It only accepts the fixed finding block format.
  • review, threads, and adapter require gh on PATH and fail immediately when it is missing.
  • The high-level CLI commands are the only agent-safe public surface. Treat low-level scripts as internal implementation details.

Important:

  • review is the default end-to-end orchestrator and the public main entrypoint.
  • review manages session state, external review handoff, GitHub threads, and final-gate.
  • threads, findings, adapter, and review-to-findings are advanced/internal entrypoints for explicit integrations.
  • review-to-findings is only a converter. It is not a review engine and it is not a general Markdown parser.

Recommended high-level entrypoints:

  • review

- public main entrypoint - generates a standard producer handoff when findings are absent - handles both local findings and GitHub review threads in one run

  • threads

- advanced/internal: GitHub review threads only

  • findings

- advanced/internal: existing findings JSON only - handles local findings only; it does not process GitHub review threads

  • adapter

- advanced/internal: adapter-produced findings plus PR orchestration

  • review-to-findings

- advanced/internal: fixed-format finding blocks to findings JSON

Examples:

$gh-address-cr review <PR_URL>
$gh-address-cr threads <PR_URL>
$gh-address-cr findings <PR_URL> --input findings.json
$gh-address-cr findings <PR_URL> --input - --sync
$gh-address-cr adapter <PR_URL> <adapter_cmd...>
$gh-address-cr review-to-findings <owner/repo> <pr_number> --input -

Minimal valid review-to-findings input:

title: Missing null guard path: src/example.py line: 12 body: Potential null dereference.

This converter rejects plain narrative Markdown review output.

Machine Summary Contract

High-level commands emit structured JSON by default. Agents should consume these fields, not parse human prose:

  • status
  • repo
  • pr_number
  • item_id
  • item_kind
  • counts
  • artifact_path
  • reason_code
  • waiting_on
  • next_action
  • exit_code

reason_code is the stable machine reason. waiting_on is the stable wait-state category. counts.* may be null in preflight wait/fail states before GitHub or session scans run.

Advanced References

  • Dispatch details: references/mode-producer-matrix.md
  • Review triage checklist: references/cr-triage-checklist.md
  • Optional OTel -> Worker -> Better Stack logging: references/otel-worker-better-stack.md
  • Low-level scripts are implementation details, not the public agent surface.

Examples that require advanced dispatch details live in the reference docs instead of the first-read contract.

Entry Contract

Treat SKILL.md as the source of truth for using this skill.

  • Start from the high-level dispatcher:

- python3 scripts/cli.py review <owner/repo> <pr_number> - python3 scripts/cli.py threads <owner/repo> <pr_number> - python3 scripts/cli.py findings <owner/repo> <pr_number> --input <path>|- [--sync] - python3 scripts/cli.py adapter <owner/repo> <pr_number> <adapter_cmd...>

  • Use references/mode-producer-matrix.md only for mode-specific dispatch details.
  • Do not rely on agents/openai.yaml for unique behavior; it is only a thin assistant-specific hint layer.

Capability Status

These high-level paths are fully operational now:

  • review
  • threads
  • findings
  • adapter

The internal iteration and dispatch layers are implementation details and are not part of the public entrypoint surface.

Advanced producer and dispatch details live in:

  • references/mode-producer-matrix.md
  • references/cr-triage-checklist.md

Non-Negotiable Rule

python3 scripts/cli.py final-gate pass is mandatory before any completion statement.

  • Never output "done", "all resolved", "completed", or equivalent unless:

- python3 scripts/cli.py final-gate <owner/repo> <pr_number> has just passed, and - output includes Verified: 0 Unresolved Threads found, and - output includes Verified: 0 Pending Reviews found, and - session blocking item count is zero.

  • Use audit_summary.md or the machine-readable count lines printed by final-gate when run-scoped diagnostics are needed.
  • If gate fails, continue iteration; completion summary is forbidden.

Core Rules

  1. Use the high-level task entrypoints first:
  • python3 scripts/cli.py review <owner/repo> <pr_number>
  • python3 scripts/cli.py threads <owner/repo> <pr_number>
  • python3 scripts/cli.py findings <owner/repo> <pr_number> --input <path>|-
  • python3 scripts/cli.py adapter <owner/repo> <pr_number> <adapter_cmd...>
  1. Use the internal low-level dispatch only when the high-level entrypoints do not fit.
  2. Process only unresolved GitHub threads and open local findings.
  3. For GitHub review threads, reply and resolve are both mandatory.
  4. A GitHub thread is not terminally clean unless reply evidence exists with a concrete reply URL from the current authenticated GitHub login.
  5. Outdated / STALE GitHub threads are still unresolved until explicitly handled.
  6. For local findings, terminal handling must include a note.
  7. producer=code-review must emit findings JSON before session handling starts.
  8. Never declare completion before python3 scripts/cli.py final-gate passes.
  9. Low-level resolve flows must refuse resolve-only handling when reply evidence is absent.

Automatic Iteration

The default review entrypoint runs repeated intake, item selection, action execution, and gate evaluation internally until the PR session converges.

  • The internal fixer handoff path uses the current AI agent by default.
  • If a finding cannot be resolved automatically, the workflow records an internal fixer request artifact for the agent to handle.
  • Advanced external fixer commands remain available for integrations that need an explicit command boundary.
  • External fixer commands must read a JSON payload from stdin and return a JSON object containing:

- resolution: fix, clarify, or defer - note - for GitHub thread fix: fix_reply - commit_hash - files - optional severity, why, test_command, test_result - validation_commands may be used as the default validation evidence when test_command / test_result are omitted - for GitHub thread clarify or defer: reply_markdown - optional validation_commands

  • code-review and json producers are consumed once per review run.
  • adapter producer is re-run on each iteration.
  • The workflow exits as:

- PASSED when gate succeeds - NEEDS_HUMAN when retry thresholds are exceeded - BLOCKED when a non-recoverable orchestration step fails

Producer Contract

gh-address-cr is the orchestrator. Producers are replaceable.

  • code-review is a producer, not the session owner.
  • code-review here means "review-style findings producer", not one mandatory skill name.
  • code-review now uses the built-in code-review-adapter backend for structured intake.
  • If the upstream review output is fixed-format finding blocks, normalize it with review-to-findings before ingestion.
  • review-to-findings does not accept arbitrary Markdown prose.
  • gh-address-cr only assumes the normalized finding contract:

- title - body - path - line

  • Accepted findings input shapes:

- JSON array of finding objects - JSON object with findings, issues, or results - NDJSON, one finding object per line

  • Accepted field aliases:

- path or file or filename - line or start_line or position - title or rule or check - body or message or description

  • Input path rule:

- use --input <path> only when a producer already emitted a real JSON file - otherwise prefer --input - and pipe findings through stdin - do not create ad-hoc temporary findings files in the project workspace just to drive the workflow

  • Refresh rule:

- use --sync when re-ingesting the same source and you want missing local findings to auto-close

  • Supported dispatch paths live in:

- references/mode-producer-matrix.md

Discovery Rules

Use this skill when the task involves one or more of these needs:

  • handle GitHub PR review threads with explicit reply and resolve steps
  • ingest local review findings into a PR-scoped session
  • run a final gate before declaring review completion
  • keep remote threads and local findings under one auditable PR session

Do not use this skill as the review engine itself.

  • It manages intake, state, processing discipline, and gating.
  • It does not own the reasoning logic of external review producers.

Decision Matrix

  • Accept: real bug or low-cost valid improvement; fix and provide evidence.
  • Clarify: reviewer misunderstood the code; explain without changing code.
  • Defer: non-blocking or high-cost preference; explain the tradeoff.
  • Reject: suggestion is technically incorrect, conflicts with the current contract, or would break an intentional compatibility guarantee.

Fix Selection Rules

Before changing code, classify each item in this order:

  1. Validity

- confirmed: reproducible in current HEAD or directly supported by code/tests - unclear: not yet verified; do not implement blindly - rejected: technically incorrect or based on missing context

  1. Impact

- Does it affect correctness, session/gate consistency, runtime safety, compatibility, packaging, or CI?

  1. Scope Fit

- Is the fix local to the current PR, or does it expand into a new design decision or larger refactor?

  1. Decision

- fix, clarify, defer, or reject

Use these defaults:

  • Default to fix for correctness bugs, state mismatches, concurrency hazards, compatibility regressions, install/runtime breakage, and P1/P2 issues that can be verified.
  • Default to clarify when behavior is intentional and the reviewer lacks context.
  • Default to defer when the issue is real but out of scope for the current PR or would force broader redesign.
  • Default to reject when the suggestion is technically unsound or would violate an explicit workflow contract.

Do not change code until the item has been validated and classified.

Scope Guardrails

Do not "fix" items just to make the thread disappear.

  • Do not expand the PR with unrelated refactors.
  • Do not change public behavior for style-only comments.
  • Do not weaken compatibility defaults unless the review identifies a real regression.
  • Do not let a reviewer preference override an existing, tested contract without explicit product intent.

If a review item is real but not appropriate for the current PR, reply with defer and a concrete rationale instead of stretching scope.

Needs-Human Escalation

Prefer NEEDS_HUMAN over speculative fixes when:

  • the claim cannot be verified from the codebase or tests
  • two valid concerns conflict and require a product decision
  • the fix would create a new interface or contract
  • the same item keeps reopening after multiple technically sound attempts
  • the suggestion conflicts with an intentional compatibility or workflow rule and the tradeoff is not obvious

gh-address-cr should stop iteration and escalate rather than forcing an implementation under uncertainty.

Agent Feedback

  • When the skill itself blocks progress, file a feedback issue against the skill repository before giving up.
  • By default, feedback issues are filed to RbBtSn0w/gh-address-cr-skill. Override --target-repo only when the skill owner explicitly directs you to use a different feedback repository.
  • Use feedback issues for skill-level problems such as contradictory instructions, missing automation, documentation gaps, or repeatable tooling failures that are not caused by the repository under review.
  • Do not file feedback issues for normal PR findings, code bugs in the target repository, or expected wait states such as WAITING_FOR_EXTERNAL_REVIEW.
  • Do not include usernames, emails, tokens, machine names, or absolute local paths in feedback issues.
  • Prefer safe technical diagnostics such as failing command, exit code, status, reason_code, waiting_on, run_id, and skill version.
  • For PR-scoped feedback, always provide --using-repo and --using-pr so the issue body names the repository and pull request under review. If they are omitted, submit_feedback.py will try to infer them from --source-command or --failing-command, but explicit values are preferred.
  • When --using-repo and --using-pr are present, submit_feedback.py auto-collects local PR-workspace evidence from last-machine-summary.json, session.json, audit_summary.md, and cached PR head SHA when those files exist.
  • Repeated feedback is deduplicated by fingerprint; if the same feedback issue is already open, or was closed recently inside the cooldown window, the helper returns the existing issue instead of creating a new one.
  • Use python3 scripts/submit_feedback.py with explicit fields so the body matches the repository issue format:

- --category - --title - --summary - --expected - --actual - optional --source-command, --failing-command, --exit-code, --status, --reason-code, --waiting-on, --run-id, --skill-version, --using-repo, --using-pr, --artifact, and --notes

  • Example:

- python3 scripts/submit_feedback.py --category workflow-gap --title "blocked without a recovery step" --summary "review stopped in a blocked state without enough operator guidance." --expected "the skill should identify the next command or artifact to inspect." --actual "the workflow stopped and the next action was ambiguous." --source-command "python3 scripts/cli.py review owner/repo 123" --failing-command "python3 scripts/cli.py final-gate owner/repo 123" --exit-code 5 --status BLOCKED --reason-code WAITING_FOR_FIX --waiting-on human_fix --run-id cr-loop-20260417T120000Z --skill-version 1.2.0 --using-repo owner/repo --using-pr 123 --artifact /tmp/loop-request.json - python3 scripts/cli.py submit-feedback --category workflow-gap --title "blocked without a recovery step" --summary "review stopped in a blocked state without enough operator guidance." --expected "the skill should identify the next command or artifact to inspect." --actual "the workflow stopped and the next action was ambiguous."

Required Evidence

  • Accepted GitHub thread:

- commit - touched files - validation command and result

  • Clarified or deferred item:

- rationale

  • Local finding terminal state:

- note

Completion Contract

Final output must include:

  1. final_gate command used
  2. Verified: 0 Unresolved Threads found
  3. Verified: 0 Pending Reviews found
  4. unresolved GitHub threads = 0
  5. session blocking items = 0
  6. audit summary path + sha256

For run-scoped diagnostics, use:

  • python3 scripts/audit_report.py --run-id <run_id> <owner/repo> <pr_number>
  • successful python3 scripts/cli.py final-gate --auto-clean... runs archive the PR workspace before deletion under archive/<owner>__<repo>/pr-<pr>/<run_id>/

Must-Fix Rule

  • Default must-fix: correctness bugs, data loss risks, platform/runtime breakage, packaging/install breakage, P1/P2 regressions.
  • Can defer with rationale: style-only, naming preference, non-blocking wording improvements.
  • For this repo, fix priority is:

- session / gate / iteration semantic mismatches - GitHub reply / resolve / pending-review visibility issues - CLI and shell-wrapper compatibility regressions - workspace/cache side effects - test and CI breakage caused by real implementation changes - documentation/runtime mismatches that mislead actual usage

Why CR Appears Later (Use This Exact Logic)

  • GitHub review bots run asynchronously.
  • New commits trigger re-analysis and can generate new comments.
  • Old threads can become outdated; new ones may appear on different lines.

References

  • dispatch matrix: references/mode-producer-matrix.md
  • checklist: references/cr-triage-checklist.md
  • stable operator surface: python3 scripts/cli.py
  • preferred automation surface: python3 scripts/cli.py...
  • AI agent feedback helper: python3 scripts/submit_feedback.py
  • code-review bridge prompt: python3 scripts/cli.py prepare-code-review <local|mixed> <owner/repo> <pr_number>
  • Markdown-to-findings converter: python3 scripts/cli.py review-to-findings <owner/repo> <pr_number> --input -
  • code-review adapter backend: python3 scripts/cli.py code-review-adapter --input -

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.2%
按下载量换算34

Claude

27.29%
按下载量换算28

Cursor

19.72%
按下载量换算20

Gemini CLI

9.94%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/rbbtsn0w/gh-address-cr-skill --skill gh-address-cr 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills