opencode-session-search 0.1.0 → 1.0.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/README.md +3 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
A plugin for OpenCode that provides tools to search and retrieve your local chat history.
|
|
4
4
|
|
|
5
|
+

|
|
6
|
+
|
|
5
7
|
## Tools
|
|
6
8
|
|
|
7
9
|
### `session-search`
|
|
@@ -38,7 +40,7 @@ Add the package to your OpenCode config:
|
|
|
38
40
|
|
|
39
41
|
```json
|
|
40
42
|
{
|
|
41
|
-
"plugin": ["opencode-session-
|
|
43
|
+
"plugin": ["opencode-session-search"]
|
|
42
44
|
}
|
|
43
45
|
```
|
|
44
46
|
|
package/dist/index.js
CHANGED
|
@@ -12660,9 +12660,9 @@ var SessionHistoryPlugin = async () => {
|
|
|
12660
12660
|
}
|
|
12661
12661
|
};
|
|
12662
12662
|
};
|
|
12663
|
-
var
|
|
12663
|
+
var opencode_session_search_default = SessionHistoryPlugin;
|
|
12664
12664
|
export {
|
|
12665
12665
|
runSessionSearch,
|
|
12666
|
-
|
|
12666
|
+
opencode_session_search_default as default,
|
|
12667
12667
|
SessionHistoryPlugin
|
|
12668
12668
|
};
|