@agentmemory/agentmemory 0.9.19 → 0.9.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +2 -0
- package/README.md +16 -5
- package/dist/.env.example +2 -0
- package/dist/cli.mjs +24 -6
- package/dist/cli.mjs.map +1 -1
- package/dist/index.mjs +417 -24
- package/dist/index.mjs.map +1 -1
- package/dist/{src-2wwYDPGA.mjs → src-D5arboxc.mjs} +415 -25
- package/dist/src-D5arboxc.mjs.map +1 -0
- package/dist/{standalone-DMLk7YxP.mjs → standalone-C7BgzzIN.mjs} +32 -8
- package/dist/standalone-C7BgzzIN.mjs.map +1 -0
- package/dist/standalone.d.mts.map +1 -1
- package/dist/standalone.mjs +31 -7
- package/dist/standalone.mjs.map +1 -1
- package/dist/{tools-registry-Dz8ssuMf.mjs → tools-registry-CRTWUFw9.mjs} +5 -2
- package/dist/tools-registry-CRTWUFw9.mjs.map +1 -0
- package/dist/viewer/index.html +57 -12
- package/package.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.codex-plugin/plugin.json +1 -1
- package/plugin/hooks/hooks.codex.json +6 -10
- package/plugin/hooks/hooks.json +12 -12
- package/plugin/opencode/README.md +229 -0
- package/plugin/opencode/agentmemory-capture.ts +662 -0
- package/plugin/opencode/commands/recall.md +19 -0
- package/plugin/opencode/commands/remember.md +19 -0
- package/plugin/opencode/plugin.json +12 -0
- package/dist/src-2wwYDPGA.mjs.map +0 -1
- package/dist/standalone-DMLk7YxP.mjs.map +0 -1
- package/dist/tools-registry-Dz8ssuMf.mjs.map +0 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agentmemory-capture",
|
|
3
|
+
"version": "0.9.20",
|
|
4
|
+
"description": "OpenCode plugin for agentmemory — full Claude Code hook parity: session lifecycle (create/idle/status/compacted/update/diff/delete/error), messages & prompts (chat.message, message.updated user+assistant, message.removed), tool lifecycle (ToolPart states with timing), part tracking (subtask, step-finish, reasoning, file, patch, compaction, agent, retry), file enrichment pipeline, permissions, task tracking (w/ priority), commands, config & model tracking. 22 hooks, 2 slash commands.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Rohit Ghumare",
|
|
7
|
+
"url": "https://github.com/rohitg00"
|
|
8
|
+
},
|
|
9
|
+
"license": "Apache-2.0",
|
|
10
|
+
"homepage": "https://github.com/rohitg00/agentmemory",
|
|
11
|
+
"repository": "https://github.com/rohitg00/agentmemory"
|
|
12
|
+
}
|