@projmux/linux-arm64 0.6.1 → 0.6.3
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 +36 -19
- package/bin/projmux +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,24 +4,41 @@
|
|
|
4
4
|
<img src="docs/assets/projmux-icon.png" alt="projmux icon" width="112">
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
<p align="center">
|
|
8
|
+
<strong>A tmux-native workspace for multi-agent AI development.</strong>
|
|
9
|
+
<br>
|
|
10
|
+
<em>First-class Claude Code and Codex integration with hook-driven attention and agent-aware session resume.</em>
|
|
11
|
+
</p>
|
|
9
12
|
|
|
10
|
-
|
|
11
|
-
|
|
13
|
+
<p align="center">
|
|
14
|
+
<a href="https://www.npmjs.com/package/projmux"><img src="https://img.shields.io/npm/v/projmux?logo=npm" alt="npm version"></a>
|
|
15
|
+
<a href="https://github.com/crevissepartners/projmux/actions/workflows/ci.yml"><img src="https://github.com/crevissepartners/projmux/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
|
|
16
|
+
<a href="LICENSE"><img src="https://img.shields.io/github/license/crevissepartners/projmux" alt="MIT license"></a>
|
|
17
|
+
<a href="README-ko.md"><img src="https://img.shields.io/badge/lang-한국어-blue" alt="Korean README"></a>
|
|
18
|
+
</p>
|
|
12
19
|
|
|
13
|
-
|
|
20
|
+
```sh
|
|
21
|
+
npm install -g projmux
|
|
22
|
+
projmux shell
|
|
23
|
+
```
|
|
14
24
|
|
|
15
|
-
|
|
25
|
+
<p align="center">
|
|
26
|
+
<img src="docs/assets/projmux-ai-attention.gif" alt="projmux AI attention demo" width="820">
|
|
27
|
+
<br>
|
|
28
|
+
<em>An agent finishes in another project. Open notifications, select it, and jump straight back.</em>
|
|
29
|
+
</p>
|
|
16
30
|
|
|
17
|
-
##
|
|
31
|
+
## Why
|
|
18
32
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
33
|
+
Six tmux windows. Each one is running Claude Code or Codex on a different
|
|
34
|
+
repo. Three are idle. One is waiting on a permission prompt. One crashed an
|
|
35
|
+
hour ago and you have no idea which.
|
|
22
36
|
|
|
23
|
-
|
|
24
|
-
|
|
37
|
+
projmux ingests Claude Code and Codex hook events directly, shows live
|
|
38
|
+
per-pane state in the tmux status bar, and lets one keystroke take you to
|
|
39
|
+
the pane that actually needs you. It also remembers each agent's resume id,
|
|
40
|
+
so after a reboot every pane comes back as the *same* conversation — not a
|
|
41
|
+
fresh one.
|
|
25
42
|
|
|
26
43
|
## Requirements
|
|
27
44
|
|
|
@@ -32,14 +49,12 @@ Run `projmux doctor` after installing to check the local runtime.
|
|
|
32
49
|
|
|
33
50
|
## Install
|
|
34
51
|
|
|
35
|
-
|
|
36
|
-
npm
|
|
37
|
-
|
|
38
|
-
```
|
|
52
|
+
The npm package shown above installs a small Node.js shim plus the matching
|
|
53
|
+
projmux binary for Linux and macOS on x64 or arm64. npm is the primary
|
|
54
|
+
distribution path for normal users.
|
|
39
55
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
normal users.
|
|
56
|
+
Verify with `projmux version`. Then `projmux doctor` checks the local runtime
|
|
57
|
+
(tmux 3.4+ and hook integration health).
|
|
43
58
|
|
|
44
59
|
Manual Go, source checkout, GitHub Release, and packaging details live in
|
|
45
60
|
[Install](docs/install.md).
|
|
@@ -84,11 +99,13 @@ For update behavior by installer type, see [Upgrading](docs/upgrading.md).
|
|
|
84
99
|
- [Install](docs/install.md)
|
|
85
100
|
- [Configuration](docs/configuration.md)
|
|
86
101
|
- [Terminal Keybindings](docs/keybindings.md)
|
|
102
|
+
- [AI Agent Shortcuts](docs/ai-agent-shortcuts.md)
|
|
87
103
|
- [CLI Reference](docs/cli.md)
|
|
88
104
|
- [Statusbar](docs/statusbar.md)
|
|
89
105
|
- [Hooks](docs/hooks.md)
|
|
90
106
|
- [Usage tracking](docs/usage-tracking.md)
|
|
91
107
|
- [Agent Workflow](docs/agent-workflow.md)
|
|
108
|
+
- [README Hero GIF Recording](docs/readme-hero-gif-recording.md)
|
|
92
109
|
|
|
93
110
|
## Development
|
|
94
111
|
|
package/bin/projmux
CHANGED
|
Binary file
|