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

deferred-finding延迟发现

Agent Skill

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

总安装

380

周安装

16

GitHub Stars

6

下载量

133
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/troykelly/claude-skills --skill deferred-finding

简介

处理无法在当前阶段解决但必须跟踪的研究发现事项。

  • 适用于代码审查、架构评审等需要记录待办改进点的场景。
  • 强制要求每个延迟发现都必须创建追踪工单。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 仅允许在明确范围外或依赖外部因素时方可延迟处理。
  • deferred-finding 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Deferred Finding

Overview

Process for creating tracking issues when review findings cannot be addressed in the current PR.

Core principle: No finding disappears. Every deferral is tracked.

ABSOLUTE REQUIREMENT: Deferred findings MUST have tracking issues. There is no other option.

When to Defer

A finding may ONLY be deferred when:

Valid ReasonExample
Out of scopeFinding requires architectural change beyond PR scope
External dependencyRequires infrastructure/config change
Breaking changeWould require major version bump
Separate concernLogically independent from current work

Never Defer Without Tracking

Invalid ApproachReality
"We'll fix it later"Without tracking, later never comes
"It's minor"Minor issues compound into major problems
"Not my problem"You found it, you track it
"Good enough"Good enough creates technical debt

Deferral Process

Step 1: Verify Deferral is Appropriate

Ask yourself:

  • Can this reasonably be fixed in this PR? If yes, FIX IT.
  • Is there a valid reason from the "When to Defer" table?
  • Have you tried to fix it first?

Step 2: Determine Finding Details

Document:

  • What is the finding?
  • Why is it a problem?
  • Where in the code?
  • What's the severity?
  • Why can't it be fixed now?

Step 3: Create Tracking Issue

Use this template:

## [Finding] [Brief description] (from #[PARENT])

### Origin

This issue was created during code review of #[PARENT_ISSUE].

| Property | Value |
|----------|-------|
| Parent Issue | #[PARENT_ISSUE] |
| Parent PR | #[PARENT_PR] (if exists) |
| Finding ID | F-[PARENT]-[N] |
| Severity | [CRITICAL/HIGH/MEDIUM/LOW] |
| Review Criterion | [Which of 7 criteria OR OWASP category] |
| Depth | [N] |

### Finding Details

**What was found:**
[Detailed description of the issue - be specific]

**Location:**
- File: `[path/to/file.ts]`
- Line(s): [N-M]
- Function: `[functionName()]`

**Why it matters:**
[Impact if not addressed - be concrete]

**Evidence:**

[Code snippet showing the issue]


### Why Deferred

[Explain why this cannot be fixed in the parent PR]

| Reason | Details |
| --- | --- |
| Category | [out-of-scope / external-dependency / breaking-change / separate-concern] |
| Justification | [Specific explanation] |

### Acceptance Criteria

- [Specific criterion 1 - must be verifiable]
- [Specific criterion 2]
- [How to verify the fix]

### Links

- Parent Issue: #[PARENT_ISSUE]
- Review Comment: [Link to review artifact if applicable]

---

**Labels:** `review-finding`, `spawned-from:#[PARENT]`, `depth:[N]`, `[severity]`

*This issue follows the full issue-driven-development process including its own code review.*

Step 4: Create Issue via CLI

gh issue create \
  --title "[Finding] Rate limiting needed on auth endpoint (from #123)" \
  --body "$(cat <<'EOF'
[Full template body here]
EOF
)" \
  --label "review-finding" \
  --label "depth:1" \
  --label "high"

Note: Create the spawned-from:#N label if it doesn't exist:

gh label create "spawned-from:#123" --color "C2E0C6" --description "Spawned from issue #123" 2>/dev/null || true
gh issue edit [NEW_ISSUE] --add-label "spawned-from:#123"

Step 5: Update Review Artifact

Add the new issue to the "Findings Deferred" section:

### Findings Deferred (With Tracking Issues)

| # | Severity | Finding | Tracking Issue | Justification |
|---|----------|---------|----------------|---------------|
| 1 | HIGH | Rate limiting needed | #456 | Requires infrastructure changes |

Step 6: Update Parent Issue (If Deviation Required)

If the deferred finding BLOCKS the parent PR (e.g., critical security issue):

# Add awaiting label
gh issue edit 123 --add-label "status:awaiting-dependencies"

# Post deviation comment
gh issue comment 123 --body "$(cat <<'EOF'
## Deviation: Awaiting Dependencies

This issue cannot proceed until deferred findings are resolved.

| Property | Value |
|----------|-------|
| Blocked At | Step 9 (Code Review) |
| Dependencies | #456 |
| Reason | Critical deferred finding blocks PR |

Work will resume when #456 is complete.
EOF
)"

Tracking Issue Lifecycle

Once created, the tracking issue:

  1. Is a first-class issue - Full issue-driven-development process
  2. Gets its own review - Cannot skip comprehensive-review
  3. May create its own deferrals - Depth increments
  4. Closes independently - Does not auto-close with parent

Depth Tracking

DepthMeaning
1Finding from original issue's review
2Finding from a depth-1 issue's review
3+Deeper nesting - flag for human attention

At depth 3+:

**Deep Finding Chain Detected**

This issue is at depth [N]. Chain:
- #100 (original)
  - #101 (depth 1)
    - #102 (depth 2)
      - #103 (depth 3) - Current

Consider: Is there a systemic issue requiring broader attention?

Labels

Required labels for tracking issues:

LabelPurpose
review-findingIdentifies as born from review
spawned-from:#NLinks to parent issue
depth:NTracks nesting level
[severity]critical/high/medium/low

Optional labels:

  • security - Security-related finding
  • status:pending - Ready for work

Checklist

Before marking finding as deferred:

  • Verified cannot fix in current PR
  • Valid deferral reason documented
  • Tracking issue created with full template
  • Issue has all required labels
  • Issue linked to parent
  • Review artifact updated with tracking issue number
  • Parent issue updated (if deviation required)

Integration

This skill is called by:

  • apply-all-findings - When finding cannot be fixed
  • comprehensive-review - When documenting deferrals

This skill creates:

  • New GitHub issues following full issue-driven-development process
  • Deviation state on parent issue (if blocking)

This skill references:

  • issue-lifecycle - Issue management
  • issue-driven-development - Process for new issues

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

31.08%
按下载量换算41

Antigravity

25.35%
按下载量换算34

Gemini CLI

16.78%
按下载量换算22

Cursor

13.29%
按下载量换算18

kiro-cli

8.06%
按下载量换算11

windsurf

3.81%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills