@cotal-ai/tmux 0.11.1 → 0.11.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 -2
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -21,12 +21,17 @@ import.
|
|
|
21
21
|
|
|
22
22
|
## Usage
|
|
23
23
|
|
|
24
|
+
```bash
|
|
25
|
+
cotal ext add @cotal-ai/tmux
|
|
26
|
+
cotal supervise --runtime tmux
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Library composition roots can instead import it explicitly:
|
|
30
|
+
|
|
24
31
|
```ts
|
|
25
32
|
import "@cotal-ai/tmux"; // self-registers; no other setup needed
|
|
26
33
|
```
|
|
27
34
|
|
|
28
|
-
Then select via the manager: `cotal supervise --runtime tmux`.
|
|
29
|
-
|
|
30
35
|
## Differences from `@cotal-ai/cmux`
|
|
31
36
|
|
|
32
37
|
cmux opens a per-agent **workspace (tab)** in the cmux app; this package opens a per-agent
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cotal-ai/tmux",
|
|
3
3
|
"description": "Cotal tmux integration: a tmux Runtime and TerminalLayout provider for spawning agents into tmux windows.",
|
|
4
|
-
"version": "0.11.
|
|
4
|
+
"version": "0.11.2",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -17,8 +17,11 @@
|
|
|
17
17
|
"import": "./dist/index.js"
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
|
-
"
|
|
21
|
-
"@cotal-ai/core": "
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"@cotal-ai/core": "*"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@cotal-ai/core": "0.11.2"
|
|
22
25
|
},
|
|
23
26
|
"files": [
|
|
24
27
|
"dist"
|