projmux 0.12.2 → 0.13.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 +3 -0
- package/docs/agent-workflow.md +277 -20
- package/docs/ai-agent-shortcuts.md +22 -3
- package/docs/architecture.md +1291 -90
- package/docs/cli-guide.md +572 -69
- package/docs/cli.md +498 -67
- package/docs/configuration.md +220 -35
- package/docs/hooks.md +17 -3
- package/docs/install.md +23 -7
- package/docs/keybindings.md +5 -3
- package/docs/legacy-cli-retirement.md +37 -8
- package/docs/operational-diagnostics.md +58 -2
- package/docs/session-restore.md +73 -157
- package/docs/settings-ia.md +48 -24
- package/docs/statusbar.md +10 -2
- package/docs/testing.md +93 -10
- package/docs/troubleshooting.md +157 -0
- package/docs/upgrading.md +266 -11
- package/docs/usage-tracking.md +56 -10
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -55,6 +55,8 @@ distribution path for normal users.
|
|
|
55
55
|
|
|
56
56
|
Verify with `projmux version`. Then `projmux doctor` provides read-only local
|
|
57
57
|
runtime diagnostics (tmux 3.4+ and hook integration health).
|
|
58
|
+
If installation succeeds but the app cannot enter or npm reports an incomplete
|
|
59
|
+
optional dependency, follow [Troubleshooting](docs/troubleshooting.md).
|
|
58
60
|
|
|
59
61
|
Manual Go, source checkout, GitHub Release, and packaging details live in
|
|
60
62
|
[Install](docs/install.md).
|
|
@@ -151,6 +153,7 @@ Templates and naming conventions for Claude, Codex, and other agents are in
|
|
|
151
153
|
- [Resource Inspector](docs/resource-attribution.md)
|
|
152
154
|
- [Session State](docs/session-restore.md)
|
|
153
155
|
- [Operational Diagnostics](docs/operational-diagnostics.md)
|
|
156
|
+
- [Troubleshooting](docs/troubleshooting.md)
|
|
154
157
|
- [Agent Workflow](docs/agent-workflow.md)
|
|
155
158
|
|
|
156
159
|
## Development
|