opencode-sidechat 1.0.0 → 1.1.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 +12 -3
- package/package.json +1 -1
- package/src/components/SideChat.tsx +348 -348
- package/src/config.ts +194 -189
- package/src/constants.ts +48 -45
- package/src/index.tsx +406 -379
- package/src/session.ts +260 -257
- package/src/types.ts +54 -54
package/README.md
CHANGED
|
@@ -1,13 +1,22 @@
|
|
|
1
|
-
# OpenCode
|
|
1
|
+
# OpenCode-SideChat
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/opencode-sidechat)
|
|
2
4
|
|
|
3
5
|
Floating side-chat panel for quick queries while your main session runs. Opens at the bottom-right corner of the TUI via `Alt+N`. Uses a separate agent with read-only tools and no access to main-session context.
|
|
4
6
|
|
|
7
|
+
https://github.com/user-attachments/assets/d4581f3d-a172-438e-9566-0ae3b40899e4
|
|
8
|
+
|
|
5
9
|
## Install
|
|
6
10
|
|
|
7
|
-
|
|
11
|
+
```sh
|
|
12
|
+
npm install -g opencode-sidechat
|
|
13
|
+
```
|
|
14
|
+
or
|
|
15
|
+
|
|
16
|
+
Add directly to your `~/.config/opencode/tui.json`:
|
|
8
17
|
|
|
9
18
|
```json
|
|
10
|
-
["
|
|
19
|
+
["opencode-sidechat"]
|
|
11
20
|
```
|
|
12
21
|
|
|
13
22
|
On first launch, the plugin creates `~/.config/opencode/sidechat.jsonc` with defaults. Edit that file to change settings.
|