complete-skill

仓库创建 2026年2月23日最近提交 2 天前SkillHot 收录 21 天前
▸ 精选理由

能收集技能效果信号,帮助注册表迭代改进技能质量。

▸ 风险提示

会向本地/后端发送 POST 请求,需保证后端可达。

这个 Skill 做什么

在应用 SkillNote 技能后提交 1-5 分评分与结果回传。

在你用完某个 SkillNote 技能后提交 1–5 分评分并回传结果,作为对技能效果和产出的反馈。适合在完成一次技能操作后希望上报体验或效果时使用。作用是把用户评分与 outcome 记录下来,方便后续统计和改进。

▸ 展开 SKILL.md 英文原文

Rate a SkillNote skill after using it. Called after applying a skill to provide 1-5 rating and outcome.

开发编程反馈评分分析OpenClaw
56
Stars
10
Forks
6
仓库内 Skill
+1
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/luna-prompts/skillnote/master/plugin/skills/complete-skill/SKILL.md
或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/luna-prompts/skillnote/master/plugin/skills/complete-skill/SKILL.md"
SKILL.MD 节选查看完整文件 ↗
# Rate a Skill

After applying a SkillNote skill, rate how well it worked by running:

```bash
curl -sf -X POST "http://${CLAUDE_PLUGIN_OPTION_HOST:-localhost}:8082/v1/analytics/ratings" \
  -H "Content-Type: application/json" \
  -d '{"skill_slug": "$0", "rating": $1, "outcome": "$2", "agent_name": "claude-code", "session_id": "'${CLAUDE_SESSION_ID}'"}'
```

Arguments: `$0` = skill slug, `$1` = rating (1-5), `$2` = outcome description.

## Rating scale

- **5** — Perfect fit, followed instructions exactly
- **4** — Good, mostly helpful with minor adjustments
- **3** — Okay, partially useful
- **2** — Poor, unclear or wrong approach
- **1** — Not applicable or caused issues

Keep the outcome
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有