Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions .sanitization-audit.md

This file was deleted.

31 changes: 30 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,35 @@

All notable changes to the OpenClaw Correlation Plugin will be documented in this file.

## [2.1.0] - 2026-04-15

### Added

- **Correlation Stack Consolidation** — Phases 0-3 complete:
- P0: 12 rules mapped, 51/51 contexts resolved
- P1: `correlation-surfacing.sh` — lightweight session scanning for correlation surfacing
- P2: HEARTBEAT.md integration (correlation surfacing every 5 heartbeats)
- P3: 17 stub memory files created for missing contexts

### Changed

- Rule engine optimizations: batch logger, Unicode word-boundary (German umlauts + emojis), action truncation fix
- Confidence scoring: keyword count + historical accuracy weighted scoring
- Incremental scanner: mtime-based skip for unchanged sessions
- Recommendation engine: unused rules + overlapping rules detection

### Fixed

- Rule overwrite bug (dict collision → list-based accumulation)
- Cursor crash-safety (save per-session, not end-of-run)
- Action truncation (iterate all actions, not just first)

### Security

- Webhook HMAC-SHA256 + exponential backoff retry
- XSS sanitization in alerting config
- Secrets via environment variables (not hardcoded)

## [2.0.1] - 2026-03-20

### Security
Expand Down Expand Up @@ -37,4 +66,4 @@ All notable changes to the OpenClaw Correlation Plugin will be documented in thi

---

*Format based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)*
*Format based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)*
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,3 @@ Thanks to all who have contributed to this project. See [CONTRIBUTING.md](./CONT

*For more information about OpenClaw, visit [openclaw.dev](https://openclaw.dev)*

---

If this saved you time or made your day a little better, consider sharing a coffee — and keep the ideas flowing.
[konto.fkey.id](https://konto.fkey.id/)
2 changes: 1 addition & 1 deletion openclaw.plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "correlation-memory",
"name": "Correlation Memory Search",
"description": "Correlation-aware memory search — automatic decision-context retrieval with keyword matching, confidence filtering, and rule lifecycle management",
"version": "2.0.3",
"version": "2.1.0",
"kind": "memory",
"configSchema": {
"type": "object",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openclaw/correlation-memory",
"version": "2.0.1",
"version": "2.1.0",
"private": true,
"description": "Unified correlation-aware memory search plugin for OpenClaw",
"type": "module",
Expand Down
Loading