projmux 0.5.0 → 0.5.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/docs/notify-queue.md +4 -1
- package/package.json +5 -5
package/docs/notify-queue.md
CHANGED
|
@@ -102,7 +102,10 @@ output becomes `{queue, live, rows, errors}`. Typical states:
|
|
|
102
102
|
- `live-ai-reply-missing-queue` — a live AI reply pane lacks the derived
|
|
103
103
|
queue entry; run `projmux notify reconcile` to back-fill it.
|
|
104
104
|
- `queue-stale` — an `ai:` queue entry exists, but the live pane no longer
|
|
105
|
-
matches reply+agent state; it remains pending until explicit ack.
|
|
105
|
+
matches reply+agent state; it remains pending until explicit ack. Surfaced
|
|
106
|
+
in the sidebar/statusbar as `STALE` / `STL`.
|
|
107
|
+
- `queue-gone` — a queue entry has no routable target (empty session); it
|
|
108
|
+
can only be ack'd. Surfaced as `GONE` / `GON`.
|
|
106
109
|
- `queue-only` — a non-AI/external queue entry is pending and has no live AI
|
|
107
110
|
reply-pane requirement.
|
|
108
111
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "projmux",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "tmux project session manager",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/crevissepartners/projmux#readme",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"LICENSE"
|
|
25
25
|
],
|
|
26
26
|
"optionalDependencies": {
|
|
27
|
-
"@projmux/darwin-arm64": "0.5.
|
|
28
|
-
"@projmux/darwin-x64": "0.5.
|
|
29
|
-
"@projmux/linux-arm64": "0.5.
|
|
30
|
-
"@projmux/linux-x64": "0.5.
|
|
27
|
+
"@projmux/darwin-arm64": "0.5.1",
|
|
28
|
+
"@projmux/darwin-x64": "0.5.1",
|
|
29
|
+
"@projmux/linux-arm64": "0.5.1",
|
|
30
|
+
"@projmux/linux-x64": "0.5.1"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"package:npm": "scripts/package-npm.sh",
|