memoryweave/openclaw-zhiyi-plugin/node_modules/es-define-property
xiaowei 5637da24e6 feat: OpenClaw ZhiYi memory plugin scaffold
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
2026-05-29 17:12:45 +08:00
..
.github feat: OpenClaw ZhiYi memory plugin scaffold 2026-05-29 17:12:45 +08:00
test feat: OpenClaw ZhiYi memory plugin scaffold 2026-05-29 17:12:45 +08:00
.eslintrc feat: OpenClaw ZhiYi memory plugin scaffold 2026-05-29 17:12:45 +08:00
.nycrc feat: OpenClaw ZhiYi memory plugin scaffold 2026-05-29 17:12:45 +08:00
CHANGELOG.md feat: OpenClaw ZhiYi memory plugin scaffold 2026-05-29 17:12:45 +08:00
LICENSE feat: OpenClaw ZhiYi memory plugin scaffold 2026-05-29 17:12:45 +08:00
README.md feat: OpenClaw ZhiYi memory plugin scaffold 2026-05-29 17:12:45 +08:00
index.d.ts feat: OpenClaw ZhiYi memory plugin scaffold 2026-05-29 17:12:45 +08:00
index.js feat: OpenClaw ZhiYi memory plugin scaffold 2026-05-29 17:12:45 +08:00
package.json feat: OpenClaw ZhiYi memory plugin scaffold 2026-05-29 17:12:45 +08:00
tsconfig.json feat: OpenClaw ZhiYi memory plugin scaffold 2026-05-29 17:12:45 +08:00

README.md

es-define-property Version Badge

github actions coverage License Downloads

npm badge

Object.defineProperty, but not IE 8's broken one.

Example

const assert = require('assert');

const $defineProperty = require('es-define-property');

if ($defineProperty) {
    assert.equal($defineProperty, Object.defineProperty);
} else if (Object.defineProperty) {
    assert.equal($defineProperty, false, 'this is IE 8');
} else {
    assert.equal($defineProperty, false, 'this is an ES3 engine');
}

Tests

Simply clone the repo, npm install, and run npm test

Security

Please email @ljharb or see https://tidelift.com/security if you have a potential security vulnerability to report.