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

skill-feedback技能反馈

Agent Skill

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

总安装

312

周安装

13

GitHub Stars

1

下载量

104
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dparedesi/agent-global-skills --skill skill-feedback

简介

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

  • 适用于根据关键词或任务场景进行信息调研,支持结合来源仓库和线索展开分析。
  • 通过 npx skills add 命令从 GitHub 安装,需确认权限与维护状态后再使用。
  • 使用前建议核实是否会触发联网、命令执行或文件读写操作,避免意外行为。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill Feedback Generator

Generate structured improvement reports for skills or CLI packages based on session learnings.

Why? Valuable improvement opportunities emerge during sessions—user corrections, friction points, successful patterns—but they're lost unless explicitly captured. This skill systematically extracts and documents these learnings.

Quick Start

  1. Detect what skill/package was worked on → 2. Analyze session for friction & feedback → 3. Generate structured report → 4. Save report → 5. Offer to implement improvements

When to Use

  • At the end of any session where the user worked on a skill or package they authored
  • When the user explicitly requests /skill-feedback
  • When significant friction was observed during the session

Decision Threshold

Generate a report when ANY of these conditions are met:

  • 1+ user corrections (explicit "don't do X", "you should have...")
  • 3+ friction points (repeated attempts, clarification loops, rejections)
  • User explicitly requests feedback capture
[!WARNING] Do NOT generate a report if the session was purely Q&A, informational, or had no actionable friction. A report with empty improvement sections wastes the user's time.

Workflow

1. Identify What Was Worked On

Scan the session to determine what skill or package was the focus:

SignalInterpretation
Files in~/.claude/skills/*/ read/editedGlobal skill: extract name from path
Files in.claude/skills/*/` read/editedLocal skill: extract name from path
User says "my skill", "my CLI", "my package"Explicit ownership confirmation
Skill invoked via/skill-nameThat skill was used

If multiple candidates, ask the user which to focus on.

2. Analyze the Session

Scan the conversation for each signal type using explicit detection patterns. Every signal must have evidence.

Signal Taxonomy

1. User Correction

Definition: User explicitly negates, redirects, or overrides a prior agent action.

Detection PatternExample
Negation + redirect"No, I meant X" / "Not that, do Y instead"
Explicit disagreement"That's wrong" / "That's not what I asked"
Undo request with reason"Undo that, it broke X"

NOT a correction (false positives to avoid):

PatternExampleWhy it's not a correctionCaveat
Standalone directive"Delete file X"No prior action being negated-
Clarification request"What does this do?"Information seeking, not correctionIf the agent could have been clearer → capture as Missed Opportunity
Continuation"Now do Y"Sequential task, not overrideIf the agent could have anticipated this → capture as Missed Opportunity

Extract verbatim quotes — these are gold for skill improvement.

[!TIP] Verbatim quotes capture the user's exact mental model and language. Paraphrasing loses nuance and makes improvements less targeted.

2. Workflow Friction

Definition: User manually performs work that the tool could/should automate.

Detection PatternExample
Manual ID/path entryUser types abc-123 when tool could infer it
Repeated contextUser re-explains something already in conversation
Copy-paste from outputUser copies value from tool output to feed back in
Multi-step manual workaroundUser chains commands that could be one operation

3. Capability Gap

Definition: User requests functionality that doesn't exist or discovers a limitation.

Detection PatternExample
Feature request"Can you add X?" / "It would be nice if..."
Discovered limitation"Why can't it do X?" / Tool responds "I can't do that"
Workaround neededUser does something manually because tool can't

4. Bug/Error

Definition: Tool produces incorrect output or fails unexpectedly.

Detection PatternExample
Runtime errorCLI throws exception, stack trace
Wrong outputTool edits wrong file, produces malformed output
Silent failureTool reports success but action didn't happen

5. Performance Issue

Definition: Tool is slow, resource-intensive, or inefficient.

Detection PatternExample
Explicit complaint"This is slow" / "Why does this take so long?"
Timeout/hangOperation doesn't complete in reasonable time
Resource exhaustionOut of memory, token limit hit

6. Missed Opportunity

Definition: Agent could have been smarter, clearer, or more proactive—even though the user didn't explicitly correct it.

This is a second-pass analysis: after ruling out "Correction," ask *"Could the skill have done better here?"*

Detection PatternExampleWhat It Reveals
User asks for clarification"What does this do?"Agent's output was unclear → improve prompts/explanations
User provides next step"Now do Y"Agent could have anticipated this → add to workflow logic
User re-states intent"I meant for the whole project"Agent interpreted too narrowly → improve intent parsing
User simplifies/rephrases"Just do X"Agent over-complicated → simplify default behavior

Key distinction from Correction:

  • Correction = user says "that's wrong, undo/redo"
  • Missed Opportunity = user moves forward, but agent could have been better

When to capture: Only if the improvement is generalizable (can be encoded in the skill), not a one-off preference.

7. Successful Patterns (What Worked)

  • Workflows that completed smoothly
  • User expressed satisfaction ("perfect", "exactly")
  • Patterns worth codifying in the skill

Attribution Rules

Feedback must be attributed to the correct target:

If the issue involves...Attribute to
CLI behavior, installation, binary errorsPackage
API/SDK behavior, library codePackage
Prompt wording, instruction claritySkill
Workflow logic, step orderingSkill
Missing automation, frictionSkill (feature request)
Agent misunderstanding user intentSkill

When unclear: Note both possibilities. Don't force attribution.

3. Generate the Report

Use this structure:

---
type: skill-feedback
skill: [skill-name]
date: YYYY-MM-DD
session: [Brief description of what was done]
status: pending
---
# Feedback Report: [Skill/Package Name]

## Summary

[1-2 sentences: What was the session about? What's the key takeaway?]

---

## Signals Detected

### User Corrections
[List each with: what was corrected, what the user wanted instead, root cause hypothesis]
- None detected / [specific corrections with verbatim quotes]

### Workflow Friction
[List each with: what manual work occurred, what automation could eliminate it]
- None detected / [specific friction points]

### Capability Gaps
[List each with: what was requested/missing, potential solution]
- None detected / [specific gaps]

### Bugs/Errors
[List each with: what failed, reproduction context]
- None detected / [specific bugs]

### Missed Opportunities
[List each with: what the user did, what the agent could have done better, generalizable improvement]
- None detected / [specific opportunities]

### Successful Patterns
[Patterns worth preserving or codifying]
- [Pattern that worked well]

---

## Recommended Improvements

### Package Improvements
[Improvements to CLI/API/binary - or "None identified"]
- [ ] **[Issue]**: [Description]
  - **Current behavior:** [What happens now]
  - **Proposed fix:** [What should happen]

### Skill Improvements
[Improvements to prompts/logic/workflow - or "None identified"]
- [ ] **[Issue]**: [Description]
  - **Current behavior:** [What happens now]
  - **Proposed fix:** [What should happen]

---

*Generated by /skill-feedback*

4. Save the Report

Default location: ~/.claude/skills/skill-feedback/.feedback/skill-feedback-{name}-{YYYYMMDD-HHMM}.md

5. Offer Implementation

[!CAUTION] Only offer implementation if you have time remaining in the session. If context is running low, just provide the path to the saved report.

After saving the report, ask:

"I've saved the report to [path]. Would you like me to implement any of these improvements now? I can start with the Critical items."

If yes:

  • Work through improvements systematically
  • Mark each as complete in the report
  • Save updated report with implementation status

Status Tracking

Reports use YAML frontmatter and checkboxes to track implementation progress.

Frontmatter Fields

FieldDescription
typeAlways skill-feedback
skillName of the skill/package the feedback is for
dateSession date (YYYY-MM-DD)
sessionBrief description of what was done
statuspending / in_progress / implemented

Status Values

  • pending — No items implemented yet
  • in_progress — Some items implemented
  • completed — All items done (will be auto-archived)

Auto-Archiving

When you mark a report as status: completed, immediately move it to the completed/ subfolder:

mv ~/.claude/skills/skill-feedback/.feedback/skill-feedback-{name}-{date}.md \
   ~/.claude/skills/skill-feedback/.feedback/completed/

This keeps the main .feedback/ folder clean with only pending items.

Updating Status

When implementing feedback items:

  1. Toggle the improvement checkbox: - []- [x]
  2. Update frontmatter status when appropriate:

- First item done → change to in_progress - All items done → change to implemented

This allows agents to quickly check frontmatter to see if a report still has pending work.


Examples

Example 1: After an Inbox Triage Session

Context: User ran /inbox-assistant, agent was too passive, user corrected it twice.

Report excerpt:

## User Corrections (Verbatim)

> "you didn't make a recommendation of what to do with the summary?"

> "Never suggest full deletion, specially if they are old emails"

## Recommended Improvements

### Critical
- **Agent too passive after summary**: Add post-summary recommendation logic
  - Current: Shows numbers, waits
  - Proposed: Always suggest ONE clear next action based on inbox state

Example 2: After CLI Package Work

Context: User added new commands to inboxd, discovered missing --account flag handling.

Report excerpt:

## Friction Points

| Step | What Happened | Friction? |
|------|---------------|-----------|
| 3 | Ran `inbox delete --ids "..."` | YES - CLI rejected: "Multiple accounts configured" |

## Recommended Improvements

### High Priority
- **Auto-resolve account from email ID**: CLI should look up which account an ID belongs to
  - Proposed: Add internal mapping or make `--account` optional when ID is unique

Common Mistakes to Avoid

MistakeWhy It's WrongWhat to Do Instead
Paraphrasing user quotesLoses the user's exact words and intentCopy-paste verbatim, even if grammar is imperfect
Generating empty reportsWastes user time, implies problems existSkip report if no actionable friction
Mixing skill/package fixesConfuses where to apply changesUse separate sections, label each improvement
Vague improvements like "improve UX"Not actionableBe specific: "Add confirmation dialog before delete"
Ignoring successful patternsMisses opportunity to codify what worksAlways include "Patterns to Preserve" even if short
Forcing Critical priorityInflation reduces trust in prioritiesUse Critical only for blocking issues

Quality Rules

Do:

  1. Verbatim quotes are sacred — Never paraphrase user corrections; use exact words
  2. Be specific, not vague — "Add post-summary recommendations" not "improve UX"
  3. Categorize by priority — Critical/High/Medium/Low based on impact and effort
  4. Distinguish skill vs package — Clearly label which improvements go where
  5. Preserve what works — Don't just focus on problems; capture successful patterns
  6. Offer implementation — The report is useful, but acting on it is better

Don't:

  • Generate reports for sessions with no friction (see Decision Threshold)
  • Invent friction that wasn't observed just to have content
  • Mark everything as Critical/High — use the full priority range
  • Skip the TL;DR — it's the most-read section

Report Validation Checklist

Before presenting the report, verify:

  • TL;DR is present and summarizes key findings in 2-3 sentences
  • User quotes are verbatim (copy-pasted, not paraphrased)
  • Each improvement is specific (actionable, not vague)
  • Priorities are distributed (not all Critical/High)
  • Skill vs Package is labeled for each improvement
  • Successful patterns included (even if brief)
  • No empty sections (omit sections with nothing to report)
  • Date and session context filled in

Troubleshooting

ProblemSolution
Can't determine what was worked onAsk the user directly
No friction observedFocus on successful patterns; maybe the session was smooth
User doesn't want implementationJust save the report for future reference
Multiple skills/packages in sessionGenerate separate sections or ask user which to focus on

Reference

  • TESTING.md — Evaluation scenarios, model coverage, validation commands

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.01%
按下载量换算40

Claude

31.39%
按下载量换算33

Cursor

18.52%
按下载量换算19

Gemini CLI

8.32%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills