feat: OpenBrain ContextEngine plugin v0.0.1 (#3)

Co-authored-by: Jason Woltje <jason@diversecanvas.com>
Co-committed-by: Jason Woltje <jason@diversecanvas.com>
This commit was merged in pull request #3.
This commit is contained in:
2026-03-06 15:24:49 +00:00
committed by jason.woltje
parent 99205e8276
commit ddeeee8a44
19 changed files with 10314 additions and 8 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "openclaw-openbrain-context",
"version": "0.0.1",
"description": "OpenBrain-backed ContextEngine plugin for OpenClaw",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"openclaw.plugin.json",
"README.md"
],
"scripts": {
"lint": "eslint . --max-warnings=0",
"build": "tsc -p tsconfig.json",
"test": "vitest run"
},
"peerDependencies": {
"openclaw": ">=2026.3.2"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@types/node": "^22.15.3",
"eslint": "^9.25.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1",
"vitest": "^2.1.8"
}
}