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 | ||
| .nycrc | ||
| CHANGELOG.md | ||
| LICENSE | ||
| README.md | ||
| index.d.ts | ||
| index.js | ||
| package.json | ||
| shams.d.ts | ||
| shams.js | ||
| tsconfig.json | ||
README.md
has-symbols 
Determine if the JS environment has Symbol support. Supports spec, or shams.
Example
var hasSymbols = require('has-symbols');
hasSymbols() === true; // if the environment has native Symbol support. Not polyfillable, not forgeable.
var hasSymbolsKinda = require('has-symbols/shams');
hasSymbolsKinda() === true; // if the environment has a Symbol sham that mostly follows the spec.
Supported Symbol shams
Tests
Simply clone the repo, npm install, and run npm test
