@bojackduy/opencode-telescope 0.1.4 → 0.1.6
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/README.md +4 -0
- package/assets/demo.cast +331 -0
- package/assets/demo.gif +0 -0
- package/assets/demo.svg +15 -0
- package/components/result-list.tsx +18 -8
- package/package.json +2 -1
- package/telescope.tsx +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@ Fuzzy search across all your OpenCode conversations — grep through session and
|
|
|
4
4
|
|
|
5
5
|
> Inspired by [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim) — a fuzzy finder for your conversation history.
|
|
6
6
|
|
|
7
|
+

|
|
8
|
+
|
|
7
9
|
## Use cases
|
|
8
10
|
|
|
9
11
|
- **"I know I discussed this somewhere"** — grep all your sessions by keyword
|
|
@@ -47,3 +49,5 @@ Add the plugin to your `tui.json`:
|
|
|
47
49
|
## How it works
|
|
48
50
|
|
|
49
51
|
Reads the OpenCode local SQLite session database in read-only mode, parses conversations into searchable text, and opens the selected session through the existing TUI route.
|
|
52
|
+
|
|
53
|
+

|