Skillnote complete-skill
Rate a SkillNote skill after using it. Called after applying a skill to provide 1-5 rating and outcome.
install
source · Clone the upstream repo
git clone https://github.com/luna-prompts/skillnote
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/luna-prompts/skillnote "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugin/skills/complete-skill" ~/.claude/skills/luna-prompts-skillnote-complete-skill && rm -rf "$T"
manifest:
plugin/skills/complete-skill/SKILL.mdsource content
Rate a Skill
After applying a SkillNote skill, rate how well it worked by running:
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 to 1-2 sentences.