mirror of
https://github.com/sdwolf4103/opencode-working-memory.git
synced 2026-06-01 22:11:08 +02:00
32d5ddfb50
- Four-tier memory architecture (Core, Working, Pruning, Pressure) - Phase 1: Core Memory blocks (goal/progress/context) - Phase 2: Smart Pruning with adaptive thresholds - Phase 3: Working Memory with slots + pool decay - Phase 4: Pressure monitoring with interventions - Phase 4.5: Storage governance (session cleanup + cache sweep) - Complete documentation (README, AGENTS, installation, architecture, configuration) - MIT licensed
32 lines
828 B
JSON
32 lines
828 B
JSON
{
|
|
"name": "opencode-working-memory",
|
|
"version": "1.0.0",
|
|
"description": "Advanced four-tier memory architecture for OpenCode with intelligent pressure monitoring and auto-storage governance",
|
|
"type": "module",
|
|
"main": "index.ts",
|
|
"keywords": [
|
|
"opencode",
|
|
"plugin",
|
|
"memory",
|
|
"context-management",
|
|
"ai-agent",
|
|
"llm"
|
|
],
|
|
"author": "Your Name <your.email@example.com>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/yourusername/opencode-working-memory.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/yourusername/opencode-working-memory/issues"
|
|
},
|
|
"homepage": "https://github.com/yourusername/opencode-working-memory#readme",
|
|
"peerDependencies": {
|
|
"@opencode-ai/plugin": "^1.2.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|