@projmux/darwin-x64 0.6.6 → 0.7.0
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 +40 -12
- package/bin/projmux +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<p align="center">
|
|
8
8
|
<strong>A tmux-native workspace for multi-agent AI development.</strong>
|
|
9
9
|
<br>
|
|
10
|
-
<em>
|
|
10
|
+
<em>Managed Claude Code, Codex, and Antigravity panes with hook-driven attention and agent-aware session resume.</em>
|
|
11
11
|
</p>
|
|
12
12
|
|
|
13
13
|
<p align="center">
|
|
@@ -25,20 +25,20 @@ projmux shell
|
|
|
25
25
|
<p align="center">
|
|
26
26
|
<img src="docs/assets/projmux-ai-attention.gif" alt="projmux AI attention demo" width="820">
|
|
27
27
|
<br>
|
|
28
|
-
<em>
|
|
28
|
+
<em>Switch between projects while an AI pane waits for permission, then jump back from the tmux notification list.</em>
|
|
29
29
|
</p>
|
|
30
30
|
|
|
31
31
|
## Why
|
|
32
32
|
|
|
33
|
-
Six tmux windows. Each one is running Claude Code or
|
|
34
|
-
repo. Three are idle. One is waiting on a permission prompt. One
|
|
35
|
-
hour ago and you have no idea which.
|
|
33
|
+
Six tmux windows. Each one is running Claude Code, Codex, or Antigravity on a
|
|
34
|
+
different repo. Three are idle. One is waiting on a permission prompt. One
|
|
35
|
+
crashed an hour ago and you have no idea which.
|
|
36
36
|
|
|
37
|
-
projmux ingests Claude Code and Codex hook events directly,
|
|
38
|
-
per-pane state in the tmux
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
fresh one.
|
|
37
|
+
projmux ingests Claude Code and Codex hook events directly, accepts manually
|
|
38
|
+
wired Antigravity hook/statusline events, shows live per-pane state in the tmux
|
|
39
|
+
status bar, and lets one keystroke take you to the pane that actually needs
|
|
40
|
+
you. It also remembers each agent's resume id, so after a reboot every pane
|
|
41
|
+
comes back as the *same* conversation — not a fresh one.
|
|
42
42
|
|
|
43
43
|
## Requirements
|
|
44
44
|
|
|
@@ -71,7 +71,7 @@ Inside the app:
|
|
|
71
71
|
|
|
72
72
|
- `Alt-1` opens the project sidebar.
|
|
73
73
|
- `Alt-2` opens the notification list.
|
|
74
|
-
- `Alt-3` opens
|
|
74
|
+
- `Alt-3` opens Recent Windows.
|
|
75
75
|
- `Alt-4` opens the AI split picker.
|
|
76
76
|
- `Alt-5` opens settings.
|
|
77
77
|
|
|
@@ -94,6 +94,35 @@ For detailed configuration, including `PROJMUX_PROJDIR`, managed roots,
|
|
|
94
94
|
notifications, and usage tracking, see [Configuration](docs/configuration.md).
|
|
95
95
|
For update behavior by installer type, see [Upgrading](docs/upgrading.md).
|
|
96
96
|
|
|
97
|
+
## Agent Skills
|
|
98
|
+
|
|
99
|
+
projmux shortcuts can also live in your AI tool as user-level skills or slash
|
|
100
|
+
commands. A skill is just a thin wrapper around the same CLI contract:
|
|
101
|
+
|
|
102
|
+
```sh
|
|
103
|
+
projmux ai split --agent codex right
|
|
104
|
+
projmux ai split --agent claude down
|
|
105
|
+
projmux ai split --agent antigravity right
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
After registering a Claude slash command such as `/projmux:codex-right`, ask
|
|
109
|
+
Claude to use it with a prompt. Claude runs the projmux command, Codex opens in
|
|
110
|
+
a managed pane attached to the current project, and the prompt is delivered
|
|
111
|
+
there immediately.
|
|
112
|
+
projmux tracks hook events from the opened pane and shows permission or
|
|
113
|
+
completion notifications in tmux.
|
|
114
|
+
Antigravity uses the same managed split path, with manual hook ingest and
|
|
115
|
+
session resume support documented in the CLI reference.
|
|
116
|
+
|
|
117
|
+
Install templates and naming conventions are in
|
|
118
|
+
[AI Agent Shortcuts](docs/ai-agent-shortcuts.md).
|
|
119
|
+
|
|
120
|
+
<p align="center">
|
|
121
|
+
<img src="docs/assets/projmux-skill-workflow.gif" alt="projmux skill workflow demo" width="820">
|
|
122
|
+
<br>
|
|
123
|
+
<em>Claude invokes a registered projmux skill with a prompt, opens a managed Codex pane, and Codex answers there.</em>
|
|
124
|
+
</p>
|
|
125
|
+
|
|
97
126
|
## More Docs
|
|
98
127
|
|
|
99
128
|
- [Install](docs/install.md)
|
|
@@ -105,7 +134,6 @@ For update behavior by installer type, see [Upgrading](docs/upgrading.md).
|
|
|
105
134
|
- [Hooks](docs/hooks.md)
|
|
106
135
|
- [Usage tracking](docs/usage-tracking.md)
|
|
107
136
|
- [Agent Workflow](docs/agent-workflow.md)
|
|
108
|
-
- [README Hero GIF Recording](docs/readme-hero-gif-recording.md)
|
|
109
137
|
|
|
110
138
|
## Development
|
|
111
139
|
|
package/bin/projmux
CHANGED
|
Binary file
|