Files
opencode-working-memory/package.json
T
Ralph Chang 32d5ddfb50 Initial commit: OpenCode Working Memory Plugin v1.0.0
- 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
2026-02-18 09:49:09 +08:00

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"
}
}