用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/majiayu000/claude-skill-registry --skill rlhf-feedback命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | rlhf-feedback |
| description | Autonomous RLHF feedback capture - Claude self-captures mistakes and successes |
| triggers | ["thumbs down","thumbs up","mistake","good job","wrong","correct","that worked","that failed"] |
AUTONOMOUS - Claude captures feedback without user running commands.
# After detecting negative feedback signal:
node "$CLAUDE_PROJECT_DIR/.claude/scripts/feedback/capture-feedback.js" \
--feedback=down \
--context="[What went wrong]" \
--tags="[relevant-tags]"
# After detecting positive feedback signal:
node "$CLAUDE_PROJECT_DIR/.claude/scripts/feedback/capture-feedback.js" \
--feedback=up \
--context="[What went right]" \
--tags="[relevant-tags]"
Use these tags to categorize feedback:
timer-logic - Timer countdown, random time generationredux-state - State management, slices, persistenceui-components - Buttons, sliders, screensnavigation - React Navigation, screen transitionssound-haptics - Audio playback, vibrationstorage - MMKV, persistencetesting - Jest, Maestro testsstyling - Theme, colors, glassmorphismperformance - Speed, memory, optimizationfix - Bug fiximplementation - New featurerefactor - Code restructureregression - Broke something that workedassumption - Made incorrect assumptionshallow-answer - Didn't read code, gave surface answernode .claude/scripts/feedback/capture-feedback.js \
--feedback=down \
--context="Broke range slider while implementing timer fix" \
--tags="ui-components,regression"
node .claude/scripts/feedback/capture-feedback.js \
--feedback=up \
--context="Fixed timer countdown logic correctly" \
--tags="timer-logic,fix"
node .claude/scripts/feedback/capture-feedback.js \
--feedback=down \
--context="User had to repeat request - didn't understand first time" \
--tags="assumption,shallow-answer"
All feedback is LOCAL ONLY (excluded from git):
.claude/memory/feedback/feedback-log.jsonl.claude/memory/feedback/feedback-summary.jsonAt session start, the hook queries past failures to remind Claude what to avoid. This creates a learning loop: Mistake → Capture → Warning → Avoid repeat.
Claude EXECUTES the capture command directly. Never tell the user to run it - just run it.