agentmem 0.1.1

Local-first memory engine for AI coding agents
Documentation
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://agent-memory.dev/schemas/store.schema.json",
  "title": "Agent Memory Store",
  "type": "object",
  "required": [
    "version",
    "records"
  ],
  "additionalProperties": false,
  "properties": {
    "version": {
      "type": "integer",
      "minimum": 1
    },
    "records": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "key",
          "value"
        ],
        "additionalProperties": false,
        "properties": {
          "key": {
            "type": "string",
            "minLength": 1,
            "maxLength": 512
          },
          "value": {
            "type": "string",
            "maxLength": 65536
          }
        }
      }
    }
  }
}