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 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
- abmux - v0.0.x
43
- ├───────────────────────┬─────────────────────────────────────────┤
44
- │ │
45
- Session ListPane List
46
- (Left Panel)(Right Panel)
47
- │ │
48
- > my-project (cwd) │ ⠋ [thinking] Refactoring... %5
49
- other-project │ ✳ [running] Fixing tests %8
50
- │ ○ [idle] Waiting %12
51
- │ ● vim %3
52
- │ │
53
- ├───────────────────────┴─────────────────────────────────────────┤
54
- │ │
55
- Session Overview (Bottom Panel)
56
- Summaries of what Claude is working on in each session
57
- │ │
58
- ├──────────────────────────────────────────────────────────────────┤
59
- ↑/↓ move Enter select Tab next n add q quit ● 2 thinking
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
@@ -603,7 +603,7 @@ var createUsecases = (context) => ({
603
603
  // package.json
604
604
  var package_default = {
605
605
  name: "abmux",
606
- version: "0.0.9",
606
+ version: "0.0.10",
607
607
  repository: {
608
608
  type: "git",
609
609
  url: "https://github.com/cut0/abmux.git"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "abmux",
3
- "version": "0.0.9",
3
+ "version": "0.0.10",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/cut0/abmux.git"