opencode-agent-progress 0.1.0 → 0.1.2
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 +7 -11
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -16,23 +16,16 @@ requiring the user to leave and re-enter a session.
|
|
|
16
16
|
The main-session section works without OMO. When no compatible mirror exists, the sidebar reports
|
|
17
17
|
`waiting`, `invalid`, or `stale` instead of rendering untrusted data.
|
|
18
18
|
|
|
19
|
-
##
|
|
19
|
+
## Installation
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
pnpm install
|
|
25
|
-
pnpm check
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
Add the local TUI plugin to `~/.config/opencode/tui.json`. Keep the OMO entry so it remains installed,
|
|
29
|
-
but deactivate only its TUI module to avoid duplicate sidebar sections:
|
|
21
|
+
Add the package to `~/.config/opencode/tui.json`. Keep the OMO entry so it remains installed, but
|
|
22
|
+
deactivate only its TUI module to avoid duplicate sidebar sections:
|
|
30
23
|
|
|
31
24
|
```json
|
|
32
25
|
{
|
|
33
26
|
"plugin": [
|
|
34
27
|
"oh-my-openagent@latest",
|
|
35
|
-
"
|
|
28
|
+
"opencode-agent-progress@latest"
|
|
36
29
|
],
|
|
37
30
|
"plugin_enabled": {
|
|
38
31
|
"oh-my-openagent:tui": false
|
|
@@ -47,6 +40,9 @@ Leave `oh-my-openagent@latest` enabled in `opencode.json` so OMO orchestration a
|
|
|
47
40
|
running. Restart the OpenCode TUI after changing plugin configuration, then open the sidebar with the
|
|
48
41
|
configured `sidebar_toggle` binding. The default is `<leader>b`.
|
|
49
42
|
|
|
43
|
+
For local development, clone the repository, run `pnpm install`, and replace the npm entry with
|
|
44
|
+
`file:///absolute/path/to/opencode-agent-progress/src/tui.tsx`.
|
|
45
|
+
|
|
50
46
|
## Displayed state
|
|
51
47
|
|
|
52
48
|
- **Main**: session title, status, active agent, and model.
|
package/package.json
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-agent-progress",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Live OpenCode TUI progress for the main session, subagents, jobs, and OMO loops",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/nxxxsooo/opencode-agent-progress.git"
|
|
8
|
+
},
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/nxxxsooo/opencode-agent-progress/issues"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/nxxxsooo/opencode-agent-progress#readme",
|
|
5
13
|
"type": "module",
|
|
6
14
|
"main": "./src/tui.tsx",
|
|
7
15
|
"types": "./dist/tui.d.ts",
|