openclaw-cortex/package.json
Claudia 44c78eaf5a docs: rich demo showcase in README + fix openclaw.id in package.json
- README: expanded demo section with collapsible output per feature
- README: shows real conversation, thread tracking, decisions, mood, snapshot, boot context
- package.json: added openclaw.id field (fixes plugin discovery on install)
- Bump v0.1.2
2026-02-17 12:45:57 +01:00

49 lines
1.1 KiB
JSON

{
"name": "@vainplex/openclaw-cortex",
"version": "0.1.2",
"description": "OpenClaw plugin: conversation intelligence — thread tracking, decision extraction, boot context, pre-compaction snapshots",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {},
"devDependencies": {
"vitest": "^3.0.0",
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"id": "openclaw-cortex"
},
"keywords": [
"openclaw",
"plugin",
"cortex",
"memory",
"thread-tracking",
"boot-context",
"conversation-intelligence"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alberthild/openclaw-cortex.git"
},
"homepage": "https://github.com/alberthild/openclaw-cortex#readme",
"author": "Vainplex <hildalbert@gmail.com>"
}