@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.
Files changed (3) hide show
  1. package/README.md +36 -19
  2. package/bin/projmux +0 -0
  3. 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
- Project-aware tmux workspaces with fast switching, previews, status context,
8
- and AI-pane attention built in.
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
- [![npm version](https://img.shields.io/npm/v/projmux?logo=npm)](https://www.npmjs.com/package/projmux)
11
- [![CI](https://github.com/crevissepartners/projmux/actions/workflows/ci.yml/badge.svg)](https://github.com/crevissepartners/projmux/actions/workflows/ci.yml)
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
- [Korean README](README-ko.md)
20
+ ```sh
21
+ npm install -g projmux
22
+ projmux shell
23
+ ```
14
24
 
15
- ![projmux shell project sidebar demo](docs/assets/projmux-shell-sidebar.gif)
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
- ## What It Is
31
+ ## Why
18
32
 
19
- `projmux` turns project directories into durable tmux sessions. It gives you a
20
- keyboard-first workspace app for switching projects, previewing sessions,
21
- opening AI splits, and keeping useful context visible in tmux.
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
- Use it when you want one command to open your terminal workspace and one set of
24
- keys to move between projects, windows, panes, notifications, and settings.
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
- ```sh
36
- npm install -g projmux
37
- projmux version
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
- The npm package installs a small Node.js shim plus the matching projmux binary
41
- for Linux and macOS on x64 or arm64. npm is the primary distribution path for
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@projmux/linux-arm64",
3
- "version": "0.6.1",
3
+ "version": "0.6.3",
4
4
  "description": "Linux arm64 binary for projmux",
5
5
  "license": "MIT",
6
6
  "repository": {