open-mem 0.11.0 → 0.13.0
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.
- package/CHANGELOG.md +16 -0
- package/README.md +75 -561
- package/bin/cli.mjs +650 -0
- package/dist/adapters/http/loopback.d.ts +3 -0
- package/dist/adapters/http/loopback.d.ts.map +1 -0
- package/dist/adapters/http/server.d.ts.map +1 -1
- package/dist/adapters/mcp/server.d.ts +0 -2
- package/dist/adapters/mcp/server.d.ts.map +1 -1
- package/dist/adapters/opencode/tools.d.ts.map +1 -1
- package/dist/ai/fallback-policy.d.ts +18 -0
- package/dist/ai/fallback-policy.d.ts.map +1 -0
- package/dist/ai/fallback.d.ts +3 -1
- package/dist/ai/fallback.d.ts.map +1 -1
- package/dist/ai/provider.d.ts +2 -1
- package/dist/ai/provider.d.ts.map +1 -1
- package/dist/claude-code.js +87 -87
- package/dist/config/store.d.ts.map +1 -1
- package/dist/config.d.ts.map +1 -1
- package/dist/contracts/api.d.ts +2 -120
- package/dist/contracts/api.d.ts.map +1 -1
- package/dist/contracts/schemas.d.ts +134 -0
- package/dist/contracts/schemas.d.ts.map +1 -0
- package/dist/cursor.js +87 -87
- package/dist/daemon.js +70 -70
- package/dist/db/observations.d.ts.map +1 -1
- package/dist/doctor.d.ts +3 -0
- package/dist/doctor.d.ts.map +1 -0
- package/dist/doctor.js +5 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +122 -122
- package/dist/maintenance.js +43 -43
- package/dist/mcp.js +73 -73
- package/dist/modes/loader.d.ts.map +1 -1
- package/dist/modes/resolver.d.ts +21 -0
- package/dist/modes/resolver.d.ts.map +1 -0
- package/dist/platform-worker.d.ts.map +1 -1
- package/dist/search/orchestrator.d.ts +4 -13
- package/dist/search/orchestrator.d.ts.map +1 -1
- package/dist/search/registry.d.ts +19 -0
- package/dist/search/registry.d.ts.map +1 -0
- package/dist/search/strategies/filter-only.d.ts +4 -0
- package/dist/search/strategies/filter-only.d.ts.map +1 -0
- package/dist/search/strategies/hybrid.d.ts +3 -0
- package/dist/search/strategies/hybrid.d.ts.map +1 -0
- package/dist/search/strategies/semantic.d.ts +4 -0
- package/dist/search/strategies/semantic.d.ts.map +1 -0
- package/dist/search/strategies/types.d.ts +22 -0
- package/dist/search/strategies/types.d.ts.map +1 -0
- package/dist/services/readiness.d.ts +26 -0
- package/dist/services/readiness.d.ts.map +1 -0
- package/dist/services/setup-diagnostics.d.ts +23 -0
- package/dist/services/setup-diagnostics.d.ts.map +1 -0
- package/dist/types.d.ts +3 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +10 -9
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.13.0] - 2026-02-23
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **`npx open-mem` CLI installer** — one-command plugin setup for OpenCode. Automatically finds or creates the config file and adds `open-mem` to the plugin array. Supports `--global`, `--uninstall`, `--dry-run`, `--force`, and `--version` flags. JSONC-aware (preserves comments in existing config files). Cleans OpenCode plugin cache on uninstall.
|
|
12
|
+
- AI provider detection in installer — shows which providers are configured after install.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- Documentation updated — README Quick Start and Getting Started guide now recommend `npx open-mem` as the primary installation method, with manual `bun add` as alternative.
|
|
16
|
+
|
|
17
|
+
## [0.12.0] - 2026-02-16
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- Hardened operator route security model to rely on loopback listener binding instead of header-based locality checks.
|
|
21
|
+
- Consolidated architecture script file walking into `scripts/utils/file-walk.ts` with deterministic extension filtering.
|
|
22
|
+
- Reduced internal mode resolver API surface by removing dead exports.
|
|
23
|
+
|
|
8
24
|
## [0.11.0] - 2026-02-08
|
|
9
25
|
|
|
10
26
|
### Added
|