-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 910 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "conversation-memory",
"version": "0.1.0",
"private": true,
"description": "Give your AI agent memory across sessions. Search and recall past conversations from Claude Code and Cursor history — no context lost, no re-explaining.",
"scripts": {
"validate": "node scripts/validate.mjs",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"conversation-memory",
"session-history",
"conversation-history",
"agent-memory",
"persistent-memory",
"cursor-plugin",
"claude-code",
"ai-agent",
"session-recall",
"context-persistence"
],
"author": {
"name": "Ofer Shapira",
"url": "https://github.com/ofershap"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ofershap/conversation-memory.git"
},
"devDependencies": {
"prettier": "^3.4.0"
}
}