memoryweave/openclaw-zhiyi-plugin/node_modules/get-proto
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
Object.getPrototypeOf.d.ts feat: OpenClaw ZhiYi memory plugin scaffold 2026-05-29 17:12:45 +08:00
Object.getPrototypeOf.js 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
Reflect.getPrototypeOf.d.ts feat: OpenClaw ZhiYi memory plugin scaffold 2026-05-29 17:12:45 +08:00
Reflect.getPrototypeOf.js 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

get-proto Version Badge

github actions coverage License Downloads

npm badge

Robustly get the Prototype of an object. Uses the best available method.

Getting started

npm install --save get-proto

Usage/Examples

const assert = require('assert');
const getProto = require('get-proto');

const a = { a: 1, b: 2, [Symbol.toStringTag]: 'foo' };
const b = { c: 3, __proto__: a };

assert.equal(getProto(b), a);
assert.equal(getProto(a), Object.prototype);
assert.equal(getProto({ __proto__: null }), null);

Tests

Clone the repo, npm install, and run npm test