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

analyze-plan-feedback分析计划反馈

Agent Skill

analyze-plan-feedback 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

267

周安装

11

GitHub Stars

1

下载量

87
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/skinnyandbald/fish-skills --skill analyze-plan-feedback

简介

解析计划文件并整合反馈意见进行优先级排序。analyze-plan-feedback 属于开发类 Skill,可作为该场景下的辅助能力补充。

  • 适用于团队协作中的计划评审,支持自动检测近期讨论文件。
  • 可指定 reviewer 数量并生成结构化反馈摘要。
  • 输出反馈分类、冲突点和建议行动项供决策参考。
  • 需确认文件路径可读性和 git 历史访问权限。

SKILL.md

Feedback Analysis & Prioritization

Step 1: Parse arguments

$ARGUMENTS

Parse $ARGUMENTS for:

  • Plan path (optional): The first argument that looks like a file path. Resolve to absolute and read it.
  • Reviewer count (optional): A number (1-10). Defaults to 3 if not provided.

If no plan path is provided, auto-detect candidates and present an interactive selection:

  1. Detect candidates (run these in parallel):

- Check if a plan file was recently created, read, or discussed in this session - Check git diff --name-only and git log --oneline -5 --diff-filter=AM -- 'docs/plans/**/*.md' for recently added/modified plans - Look for plan files/directories matching docs/plans/**/*.md

  1. ALWAYS present an AskUserQuestion multiple-choice UI with up to 4 detected candidates. Never just ask a text question — always use the interactive chip UI. Example: AskUserQuestion(questions: [{question: "Which plan should I collect feedback for?", header: "Plan", options: [{label: "phase-15-transcript-import/", description: "Modified 2 mins ago — 8 files"}, {label: "phase-14-streaming.md", description: "Modified 3 days ago"}], multiSelect: false}]) The user can always select "Other" (built into AskUserQuestion) to type a custom path.
  2. If zero candidates are found, still use AskUserQuestion with helpful options: options: [{label: "docs/plans/", description: "Browse the plans directory"}, {label: "Browse recent files", description: "Show recently modified.md files"}]

Examples:

  • /analyze-plan-feedback docs/plans/my-plan.md → 3 reviewers
  • /analyze-plan-feedback docs/plans/my-plan.md 2 → 2 reviewers
  • /analyze-plan-feedback 2 → auto-detect plan, 2 reviewers
  • /analyze-plan-feedback → auto-detect plan, 3 reviewers

Step 2: Collect feedback interactively

Ask the user to paste feedback one reviewer at a time, up to the reviewer count. After each paste, confirm receipt and ask for the next.

For each reviewer (1 through N):

  • Ask: "Paste reviewer N feedback:"
  • The user may paste text directly or provide a file path — if it looks like a path, read the file.

Do NOT proceed to analysis until all N reviewers' feedback has been collected.

Step 3: Analyze

Review and analyze all collected feedback against the plan:

1. Technical Assessment

For each piece of feedback from each reviewer:

  • Is the technical point valid and accurate?
  • Does it apply to our specific stack and codebase?
  • Is it based on current best practices or outdated patterns?
  • Cross-reference against codebase patterns where relevant

2. Priority Classification

Categorize every distinct feedback point:

PriorityCriteria
CriticalBlocks shipping. Security vulnerabilities, data loss risk, broken functionality
HighShould fix before merge. Performance issues, missing error handling, test gaps
MediumFix soon. Code quality, naming, documentation, minor UX issues
LowNice-to-have. Style preferences, theoretical improvements, future considerations

3. Conflict Resolution

Where reviewers disagree:

  • State each position clearly
  • Evaluate which is more applicable to our context
  • Make a recommendation with reasoning

4. Action Items

Create a numbered list of specific, actionable tasks:

  • Each task references the feedback source(s)
  • Each task has a clear definition of done
  • Group by the plan section they affect

5. Implementation Timeline

For each action item, estimate:

  • Effort: 1 (trivial) to 5 (significant rework)
  • Risk of skipping: What happens if we don't do this?
  • Dependencies: Does this block or depend on other items?

Output Format

## Feedback Summary

### Critical (must address)
- [ ] Item with effort estimate and source

### High Priority
- [ ] Item with effort estimate and source

### Medium Priority
- [ ] Item with effort estimate and source

### Low Priority / Deferred
- [ ] Item with effort estimate and source

## Recommended Next Steps (in order)
1. First thing to do
2. Second thing to do
...

## Reviewer Agreement Matrix
| Topic | Reviewer 1 | ... | Reviewer N | Verdict |

After presenting the analysis, ask if the user wants to apply any of the feedback directly to the plan.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.46%
按下载量换算33

Claude

29.3%
按下载量换算25

Cursor

17.36%
按下载量换算15

Gemini CLI

8.94%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills