opencode-sessions-explorer 0.1.2 → 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.
- package/CHANGELOG.md +16 -0
- package/README.md +7 -3
- package/dist/bin/bulk-export.js +827 -159
- package/dist/bin/check-deps.js +836 -167
- package/dist/bin/dedupe-export.js +825 -157
- package/dist/lib/export-reconcile-worker.js +1519 -0
- package/dist/plugin.js +1133 -208
- package/docs/getting-started.md +5 -4
- package/docs/guides/export-and-maintenance.md +6 -3
- package/docs/guides/search-and-grep.md +6 -3
- package/docs/reference/architecture.md +10 -5
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.4] - 2026-06-14
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- `search-text` now preserves requested `sem`/`hybrid` modes when the `ck` semantic
|
|
14
|
+
index is missing, allowing `ck` to perform its normal lazy auto-indexing instead
|
|
15
|
+
of falling back to regex.
|
|
16
|
+
|
|
17
|
+
## [0.1.3] - 2026-06-14
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
- `search-text` now reports honest `ck` semantic index freshness for `sem`/`hybrid`
|
|
21
|
+
modes (missing/stale/partial) and directs users to explicit `ck --index` /
|
|
22
|
+
`ck --reindex` workflows instead of implying inline rebuilds.
|
|
23
|
+
- `search-text` and `grep-session` now expose partial multi-scope `ck` coverage when
|
|
24
|
+
timeout truncation leaves some session/channel scopes unsearched.
|
|
25
|
+
|
|
10
26
|
## [0.1.2] - 2026-06-13
|
|
11
27
|
|
|
12
28
|
### Changed
|
package/README.md
CHANGED
|
@@ -71,7 +71,9 @@ bunx opencode-sessions-explorer-check-deps
|
|
|
71
71
|
bunx opencode-sessions-explorer-bulk-export
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
-
1. (Optional)
|
|
74
|
+
1. (Optional) Prewarm the `ck` index from the export root, not the repo root.
|
|
75
|
+
Normal `lex`, `sem`, and `hybrid` searches ask `ck` to build or refresh indexes
|
|
76
|
+
lazily, so this step is only for avoiding first-search latency or troubleshooting:
|
|
75
77
|
|
|
76
78
|
```bash
|
|
77
79
|
cd ~/.local/share/opencode-sessions-explorer
|
|
@@ -125,8 +127,10 @@ full first-run walkthrough, see [docs/install.md](docs/install.md) and
|
|
|
125
127
|
### Export and Maintenance
|
|
126
128
|
|
|
127
129
|
- **One-time export.** `bulk-export` materializes searchable session content for `ck`.
|
|
128
|
-
- **Stay current.** The plugin auto-syncs new parts before each search call
|
|
129
|
-
|
|
130
|
+
- **Stay current.** The plugin auto-syncs new parts before each search call, then
|
|
131
|
+
lets normal `lex`, `sem`, and `hybrid` `ck` searches lazily build or refresh their
|
|
132
|
+
indexes. Explicit `ck --index .` / `ck --reindex .` runs are optional prewarm or
|
|
133
|
+
troubleshooting steps for stale or partial coverage warnings.
|
|
130
134
|
- **Health probe.** `check-deps` and the `db-stats` tool report dependency and schema
|
|
131
135
|
health.
|
|
132
136
|
- See [docs/guides/export-and-maintenance.md](docs/guides/export-and-maintenance.md).
|