abmux 0.0.9 → 0.0.10
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 +26 -21
- package/dist/cli/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,13 +7,18 @@ Monitor, create, switch between, and delete Claude Code sessions running on tmux
|
|
|
7
7
|
## Requirements
|
|
8
8
|
|
|
9
9
|
- Node.js >= 24
|
|
10
|
-
- pnpm >= 10
|
|
11
10
|
- [tmux](https://github.com/tmux/tmux)
|
|
12
11
|
|
|
13
12
|
## Install
|
|
14
13
|
|
|
15
14
|
```sh
|
|
15
|
+
npm install -g abmux
|
|
16
|
+
# or
|
|
17
|
+
yarn global add abmux
|
|
18
|
+
# or
|
|
16
19
|
pnpm add -g abmux
|
|
20
|
+
# or
|
|
21
|
+
bun add -g abmux
|
|
17
22
|
```
|
|
18
23
|
|
|
19
24
|
## Getting Started
|
|
@@ -38,26 +43,26 @@ abmux list # List sessions
|
|
|
38
43
|
The main screen is split into three panels:
|
|
39
44
|
|
|
40
45
|
```
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
46
|
+
+-----------------------+---------------------------------------+
|
|
47
|
+
| abmux - v0.0.x |
|
|
48
|
+
+-----------------------+---------------------------------------+
|
|
49
|
+
| | |
|
|
50
|
+
| Session List | Pane List |
|
|
51
|
+
| (Left Panel) | (Right Panel) |
|
|
52
|
+
| | |
|
|
53
|
+
| > my-project (cwd) | * [thinking] Refactoring... %5 |
|
|
54
|
+
| other-project | * [running] Fixing tests %8 |
|
|
55
|
+
| | o [idle] Waiting %12 |
|
|
56
|
+
| | * vim %3 |
|
|
57
|
+
| | |
|
|
58
|
+
+-----------------------+---------------------------------------+
|
|
59
|
+
| |
|
|
60
|
+
| Session Overview (Bottom Panel) |
|
|
61
|
+
| Summaries of what Claude is working on in each session |
|
|
62
|
+
| |
|
|
63
|
+
+---------------------------------------------------------------+
|
|
64
|
+
| [keys] move / select / Tab / n / d / q * 2 thinking |
|
|
65
|
+
+---------------------------------------------------------------+
|
|
61
66
|
```
|
|
62
67
|
|
|
63
68
|
Press `Tab` to cycle focus: Left → Right → Bottom. The focused panel is highlighted with a green border.
|
package/dist/cli/index.js
CHANGED