abmux 0.0.1
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 +54 -0
- package/dist/cli/index.js +1514 -0
- package/package.json +47 -0
package/README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# abmux
|
|
2
|
+
|
|
3
|
+
AI Board on tmux — A terminal UI for managing Claude Code sessions on tmux.
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- Manage tmux sessions grouped by project
|
|
8
|
+
- Detect Claude session status: waiting for input, thinking, running tools, idle
|
|
9
|
+
- Launch new Claude Code sessions with prompts via your `$EDITOR`
|
|
10
|
+
- Fuzzy search directories to add new sessions
|
|
11
|
+
- CLI commands for scripting: `new`, `open`, `kill`, `list`
|
|
12
|
+
|
|
13
|
+
## Requirements
|
|
14
|
+
|
|
15
|
+
- Node.js >= 24
|
|
16
|
+
- pnpm >= 10
|
|
17
|
+
- [tmux](https://github.com/tmux/tmux)
|
|
18
|
+
|
|
19
|
+
## Install
|
|
20
|
+
|
|
21
|
+
```sh
|
|
22
|
+
npm install -g abmux
|
|
23
|
+
# or
|
|
24
|
+
yarn global add abmux
|
|
25
|
+
# or
|
|
26
|
+
pnpm add -g abmux
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Usage
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
abmux # Start TUI
|
|
33
|
+
abmux new <prompt> [--dir <path>] # Create session and launch Claude
|
|
34
|
+
abmux open [session] # Attach to session
|
|
35
|
+
abmux kill [session] # Kill session
|
|
36
|
+
abmux list # List sessions
|
|
37
|
+
abmux --help # Show help
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Development
|
|
41
|
+
|
|
42
|
+
```sh
|
|
43
|
+
pnpm install
|
|
44
|
+
pnpm start # Run in development mode (tsx)
|
|
45
|
+
pnpm test # Run tests with Vitest
|
|
46
|
+
pnpm typecheck # Type check without emitting
|
|
47
|
+
pnpm lint:check # Lint with oxlint
|
|
48
|
+
pnpm format:check # Check formatting with oxfmt
|
|
49
|
+
pnpm build # Bundle with esbuild
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## License
|
|
53
|
+
|
|
54
|
+
MIT
|