think
Capture and organize development thoughts by category and depth for structured analysis. Enables hierarchical reference and review within agile workflows.
Instructions
Record a thought for later reference and analysis.
This tool allows you to record thoughts during development or analysis processes. Thoughts can be organized by category and depth to create a hierarchical structure of analysis.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | default | |
depth | No | ||
metadata | No | ||
references | No | ||
thought | Yes | ||
timestamp | No |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"default": "default",
"title": "Category",
"type": "string"
},
"depth": {
"default": 0,
"title": "Depth",
"type": "integer"
},
"metadata": {
"anyOf": [
{
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Metadata"
},
"references": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "References"
},
"thought": {
"title": "Thought",
"type": "string"
},
"timestamp": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Timestamp"
}
},
"required": [
"thought"
],
"title": "thinkArguments",
"type": "object"
}