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

has-symbols Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

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