TypeScript plugin that bridges OpenClaw to ZhiYi MemoryWeave: - ZhiYiClient: REST API wrapper (commit/recall/searchNotes/navigate) - Plugin hooks: memory:recall, memory:commit, memory:graphNavigate, memory:searchNotes - CLI: LanceDB migration tool (placeholder — needs OpenClaw LanceDB reader) - package.json with axios + TypeScript deps - README with install instructions Namespace: openclaw-main (isolated from hermes-main) TODO: implement LanceDB reader for migration |
||
|---|---|---|
| .. | ||
| .github | ||
| test | ||
| .eslintrc | ||
| CHANGELOG.md | ||
| LICENSE | ||
| README.md | ||
| gOPD.d.ts | ||
| gOPD.js | ||
| index.d.ts | ||
| index.js | ||
| package.json | ||
| tsconfig.json | ||
README.md
gopd 
Object.getOwnPropertyDescriptor, but accounts for IE's broken implementation.
Usage
var gOPD = require('gopd');
var assert = require('assert');
if (gOPD) {
assert.equal(typeof gOPD, 'function', 'descriptors supported');
// use gOPD like Object.getOwnPropertyDescriptor here
} else {
assert.ok(!gOPD, 'descriptors not supported');
}
