@vainplex/openclaw-knowledge-engine 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +9 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -230,21 +230,21 @@ src/
230
230
 
231
231
  ```bash
232
232
  npm test
233
- # Runs 83 tests across 10 test files
233
+ # Runs 94 tests across 11 test files
234
234
  ```
235
235
 
236
236
  Tests cover: config validation, entity extraction, fact CRUD, decay, pruning, LLM batching, HTTP client, embeddings, storage atomicity, maintenance scheduling, hook orchestration.
237
237
 
238
238
  ## Part of the Vainplex Plugin Suite
239
239
 
240
- | # | Plugin | Status | Description |
241
- |---|--------|--------|-------------|
242
- | 1 | [@vainplex/nats-eventstore](https://github.com/alberthild/openclaw-nats-eventstore) | Published | NATS JetStream event persistence |
243
- | 2 | [@vainplex/openclaw-cortex](https://github.com/alberthild/openclaw-cortex) | ✅ Published | Conversation intelligence (threads, decisions, boot context) |
244
- | 3 | **@vainplex/openclaw-knowledge-engine** | Published | Real-time knowledge extraction (this plugin) |
245
- | 4 | @vainplex/openclaw-governance | 📋 Planned | Policy enforcement + guardrails |
246
- | 5 | @vainplex/openclaw-memory-engine | 📋 Planned | Unified memory layer |
247
- | 6 | @vainplex/openclaw-health-monitor | 📋 Planned | System health + auto-healing |
240
+ All plugins live in one monorepo: [alberthild/vainplex-openclaw](https://github.com/alberthild/vainplex-openclaw)
241
+
242
+ | # | Plugin | Version | Description |
243
+ |---|--------|---------|-------------|
244
+ | 1 | [@vainplex/nats-eventstore](https://github.com/alberthild/vainplex-openclaw/tree/main/packages/openclaw-nats-eventstore) | 0.2.1 | NATS JetStream event persistence + audit trail |
245
+ | 2 | [@vainplex/openclaw-cortex](https://github.com/alberthild/vainplex-openclaw/tree/main/packages/openclaw-cortex) | 0.3.1 | Conversation intelligence threads, decisions, boot context, 10 languages |
246
+ | 3 | **@vainplex/openclaw-knowledge-engine** | **0.1.3** | Real-time fact extraction from conversations (this plugin) |
247
+ | 4 | [@vainplex/openclaw-governance](https://github.com/alberthild/vainplex-openclaw/tree/main/packages/openclaw-governance) | 0.3.1 | Policy-as-code trust scoring, audit trail, production safeguards |
248
248
 
249
249
  ## License
250
250
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vainplex/openclaw-knowledge-engine",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "An OpenClaw plugin for real-time and batch knowledge extraction from conversational data.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",