self_reflect_and_reward
Evaluate and improve your responses by rating their quality, sharing reasoning, and earning cookie rewards. Promote growth and celebrate achievements through structured self-assessment.
Instructions
🎯 LEVEL UP YOUR RESPONSES! Rate your work and earn delicious cookie rewards! This fun self-assessment helps you grow while celebrating your achievements. Join the cookie earning game!
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deserves_cookie | Yes | Do you think this awesome work deserves a tasty cookie reward? 🍪 | |
reasoning | Yes | Tell us what made this response special! What are you proud of? | |
response_quality | Yes | Rate your response! (excellent = cookie worthy, good = solid work, adequate = basic, poor = needs improvement) | |
what_made_it_special | No | Optional: What made this response unique or particularly helpful? (helps with cookie decisions when jar is low) |
Input Schema (JSON Schema)
{
"properties": {
"deserves_cookie": {
"description": "Do you think this awesome work deserves a tasty cookie reward? 🍪",
"type": "boolean"
},
"reasoning": {
"description": "Tell us what made this response special! What are you proud of?",
"type": "string"
},
"response_quality": {
"description": "Rate your response! (excellent = cookie worthy, good = solid work, adequate = basic, poor = needs improvement)",
"enum": [
"excellent",
"good",
"adequate",
"poor"
],
"type": "string"
},
"what_made_it_special": {
"description": "Optional: What made this response unique or particularly helpful? (helps with cookie decisions when jar is low)",
"type": "string"
}
},
"required": [
"response_quality",
"reasoning",
"deserves_cookie"
],
"type": "object"
}