opencode-cockpit 0.2.1 → 0.2.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 -9
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -7,20 +7,18 @@
|
|
|
7
7
|
|
|
8
8
|
**Superpowers for [OpenCode](https://opencode.ai) — take all of them, or just the one you need.**
|
|
9
9
|
|
|
10
|
+
**[Documentation →](https://codestz.github.io/opencode-cockpit/)** · [Install](https://codestz.github.io/opencode-cockpit/start/install/) · [Shell](https://codestz.github.io/opencode-cockpit/shell/overview/) · [Configuration](https://codestz.github.io/opencode-cockpit/configuration/) · [Changelog](https://github.com/Codestz/opencode-cockpit/blob/main/CHANGELOG.md)
|
|
11
|
+
|
|
10
12
|
Coding agents are stuck in a one-command-at-a-time world: they run something, wait for it to
|
|
11
13
|
finish, and paste the whole log back into their context. Cockpit gives your agent the things a
|
|
12
14
|
developer actually has — long-running terminals, a way to wait for "ready", and output it can read
|
|
13
15
|
without drowning in it — and gives *you* a live view of all of it, inside OpenCode.
|
|
14
16
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
✓ 142 modules transformed
|
|
21
|
-
2m14s sh_k4tq8b2p · $ npm run dev
|
|
22
|
-
────────────────────────────────────────────────────────────────────────────────────────
|
|
23
|
-
```
|
|
17
|
+

|
|
18
|
+
|
|
19
|
+
*A real recording — every demo here is generated from a live OpenCode session by
|
|
20
|
+
[`bun run record`](https://github.com/Codestz/opencode-cockpit/blob/main/CONTRIBUTING.md), and re-run on release, so none of them can drift from what
|
|
21
|
+
ships.*
|
|
24
22
|
|
|
25
23
|
## Features
|
|
26
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-cockpit",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "OpenCode superpowers, all in one: installs every opencode-cockpit feature (Shell today), each can be switched off",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@opencode-cockpit/shell": "0.2.
|
|
51
|
+
"@opencode-cockpit/shell": "0.2.2",
|
|
52
52
|
"@opencode-ai/plugin": "1.18.31"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@opencode-cockpit/client": "0.2.
|
|
55
|
+
"@opencode-cockpit/client": "0.2.2"
|
|
56
56
|
}
|
|
57
57
|
}
|