concept_save
Store and organize coding concepts in a global memory system for AI tools, enabling efficient retrieval of project-specific context, snippets, and traces.
Instructions
Save a concept to global store
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | Concept body (600-900 chars recommended) | |
id | No | Optional concept ID | |
importance | No | Importance level | |
tags | No | Concept tags | |
title | Yes | Concept title |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "Concept body (600-900 chars recommended)",
"type": "string"
},
"id": {
"description": "Optional concept ID",
"type": "string"
},
"importance": {
"description": "Importance level",
"maximum": 5,
"minimum": 1,
"type": "integer"
},
"tags": {
"description": "Concept tags",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "Concept title",
"type": "string"
}
},
"required": [
"title",
"body"
],
"type": "object"
}