user-feedback
Installation
SKILL.md
User Feedback Skill
Leveraging feedback to improve AI systems.
Feedback Collection
Explicit Feedback
class FeedbackCollector:
def collect_explicit(self, response_id, feedback):
self.db.save({
"type": "explicit",
"response_id": response_id,
"rating": feedback.get("rating"), # 1-5
"thumbs": feedback.get("thumbs"), # up/down
"comment": feedback.get("comment"),
"timestamp": datetime.now()
})