vibe_learn
Identify and categorize recurring errors with solutions to prevent repeated mistakes. Utilizes pattern recognition to enhance learning and streamline decision-making processes.
Instructions
Pattern recognition system that tracks common errors and solutions to prevent recurring issues
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | Yes | Category (standard categories: Complex Solution Bias, Feature Creep, Premature Implementation, Misalignment, Overtooling, Preference, Success, Other) | |
mistake | Yes | One-sentence description of the learning entry | |
sessionId | No | Optional session ID for state management | |
solution | No | How it was corrected (if applicable) | |
type | No | Type of learning entry |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"description": "Category (standard categories: Complex Solution Bias, Feature Creep, Premature Implementation, Misalignment, Overtooling, Preference, Success, Other)",
"enum": [
"Complex Solution Bias",
"Feature Creep",
"Premature Implementation",
"Misalignment",
"Overtooling",
"Preference",
"Success",
"Other"
],
"type": "string"
},
"mistake": {
"description": "One-sentence description of the learning entry",
"type": "string"
},
"sessionId": {
"description": "Optional session ID for state management",
"type": "string"
},
"solution": {
"description": "How it was corrected (if applicable)",
"type": "string"
},
"type": {
"description": "Type of learning entry",
"enum": [
"mistake",
"preference",
"success"
],
"type": "string"
}
},
"required": [
"mistake",
"category"
],
"type": "object"
}