opencode-sessions-explorer 0.1.2 → 0.1.3
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 +9 -0
- package/README.md +2 -1
- package/dist/bin/bulk-export.js +827 -159
- package/dist/bin/check-deps.js +835 -166
- package/dist/bin/dedupe-export.js +825 -157
- package/dist/lib/export-reconcile-worker.js +1519 -0
- package/dist/plugin.js +1122 -203
- package/docs/guides/export-and-maintenance.md +4 -2
- package/docs/guides/search-and-grep.md +4 -2
- package/docs/reference/architecture.md +5 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.3] - 2026-06-14
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- `search-text` now reports honest `ck` semantic index freshness for `sem`/`hybrid`
|
|
14
|
+
modes (missing/stale/partial) and directs users to explicit `ck --index` /
|
|
15
|
+
`ck --reindex` workflows instead of implying inline rebuilds.
|
|
16
|
+
- `search-text` and `grep-session` now expose partial multi-scope `ck` coverage when
|
|
17
|
+
timeout truncation leaves some session/channel scopes unsearched.
|
|
18
|
+
|
|
10
19
|
## [0.1.2] - 2026-06-13
|
|
11
20
|
|
|
12
21
|
### Changed
|
package/README.md
CHANGED
|
@@ -126,7 +126,8 @@ full first-run walkthrough, see [docs/install.md](docs/install.md) and
|
|
|
126
126
|
|
|
127
127
|
- **One-time export.** `bulk-export` materializes searchable session content for `ck`.
|
|
128
128
|
- **Stay current.** The plugin auto-syncs new parts before each search call; rebuild
|
|
129
|
-
the optional semantic index
|
|
129
|
+
the optional semantic index explicitly (`ck --reindex .` / `ck --index .`) when
|
|
130
|
+
`sem` or `hybrid` warnings report stale or partial coverage.
|
|
130
131
|
- **Health probe.** `check-deps` and the `db-stats` tool report dependency and schema
|
|
131
132
|
health.
|
|
132
133
|
- See [docs/guides/export-and-maintenance.md](docs/guides/export-and-maintenance.md).
|