chore: prepare for v1.2.0 release

- Bump version to 1.2.0
- Add package.json exports and files whitelist
- Update .gitignore to exclude .opencode/ and .opencode-agenthub/
- Fix docs: active files tracked in tool.execute.after (not before)
- Fix docs: exitCode undefined is ignored (not success)
- Fix docs: session ID is hashed in storage path
- Fix docs: workspace memory survives within same workspace
This commit is contained in:
Ralph Chang
2026-04-26 14:17:54 +08:00
parent f988af4453
commit 9892012d8b
4 changed files with 33 additions and 12 deletions
+10 -1
View File
@@ -1,9 +1,18 @@
{
"name": "opencode-working-memory",
"version": "1.1.2",
"version": "1.2.0",
"description": "Three-layer memory architecture for OpenCode with workspace memory and hot session state",
"type": "module",
"main": "index.ts",
"exports": {
".": "./index.ts"
},
"files": [
"index.ts",
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node -e \"console.log('No build step required: OpenCode loads index.ts directly')\"",
"typecheck": "tsc --noEmit",