projmux 0.10.1 → 0.11.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-ko.md +3 -2
- package/README.md +3 -2
- package/docs/agent-workflow.md +81 -24
- package/docs/ai-agent-shortcuts.md +63 -278
- package/docs/architecture.md +678 -16
- package/docs/cli-guide.md +1427 -0
- package/docs/cli.md +1241 -1123
- package/docs/configuration.md +185 -136
- package/docs/globalization.md +7 -5
- package/docs/hooks.md +62 -52
- package/docs/install.md +22 -6
- package/docs/keybindings.md +223 -60
- package/docs/legacy-cli-retirement.md +80 -0
- package/docs/legacy-diagnostics-inventory.md +3 -3
- package/docs/migration-plan.md +6 -3
- package/docs/notify-os-focus-poc.md +36 -15
- package/docs/notify-queue.md +21 -19
- package/docs/operational-diagnostics.md +37 -24
- package/docs/repo-layout.md +4 -1
- package/docs/session-restore.md +9 -9
- package/docs/settings-ia.md +232 -163
- package/docs/statusbar.md +222 -41
- package/docs/testing.md +9 -9
- package/docs/theme-palette.md +0 -3
- package/docs/tmux-surface-inventory.md +2 -2
- package/docs/upgrading.md +155 -16
- package/docs/usage-tracking.md +120 -34
- package/package.json +5 -5
package/README-ko.md
CHANGED
|
@@ -87,7 +87,7 @@ projmux 안에서는 다음 키를 사용합니다.
|
|
|
87
87
|
세션을 다시 사용합니다.
|
|
88
88
|
- 자주 쓰는 프로젝트는 `pin`으로 고정해 목록 위쪽에서 쉽게 찾을 수
|
|
89
89
|
있습니다.
|
|
90
|
-
- 전환하기 전에 창(window)과 pane, Git 브랜치,
|
|
90
|
+
- 전환하기 전에 창(window)과 pane, Git 브랜치, AI pane
|
|
91
91
|
상태를 미리 확인할 수 있습니다.
|
|
92
92
|
- 기존 Claude, Codex, Antigravity 대화를 이어서 열거나 projmux가 관리하는 새
|
|
93
93
|
AI 분할 창을 만들 수 있습니다.
|
|
@@ -142,7 +142,8 @@ Claude, Codex를 비롯한 여러 에이전트용 템플릿과 이름 규칙은
|
|
|
142
142
|
- [설정](docs/configuration.md)
|
|
143
143
|
- [터미널 키 설정](docs/keybindings.md)
|
|
144
144
|
- [AI 에이전트 바로가기](docs/ai-agent-shortcuts.md)
|
|
145
|
-
- [CLI 명령어](docs/cli.md)
|
|
145
|
+
- [CLI 명령어](docs/cli.md) — 커맨드 매니페스트에서 생성됨
|
|
146
|
+
- [CLI 사용 가이드](docs/cli-guide.md)
|
|
146
147
|
- [상태 표시줄](docs/statusbar.md)
|
|
147
148
|
- [훅](docs/hooks.md)
|
|
148
149
|
- [사용량 추적](docs/usage-tracking.md)
|
package/README.md
CHANGED
|
@@ -89,7 +89,7 @@ fallbacks.
|
|
|
89
89
|
|
|
90
90
|
- Pick a project directory and projmux creates or reuses its tmux session.
|
|
91
91
|
- Pin important projects so they stay easy to reach.
|
|
92
|
-
- Preview windows, panes, git branch,
|
|
92
|
+
- Preview windows, panes, git branch, and AI pane state
|
|
93
93
|
before switching.
|
|
94
94
|
- Resume an existing Claude, Codex, or Antigravity conversation, or open a new
|
|
95
95
|
managed AI split.
|
|
@@ -143,7 +143,8 @@ Templates and naming conventions for Claude, Codex, and other agents are in
|
|
|
143
143
|
- [Configuration](docs/configuration.md)
|
|
144
144
|
- [Terminal Keybindings](docs/keybindings.md)
|
|
145
145
|
- [AI Agent Shortcuts](docs/ai-agent-shortcuts.md)
|
|
146
|
-
- [CLI Reference](docs/cli.md)
|
|
146
|
+
- [CLI Reference](docs/cli.md) — generated from the command manifest
|
|
147
|
+
- [CLI Task Guide](docs/cli-guide.md)
|
|
147
148
|
- [Statusbar](docs/statusbar.md)
|
|
148
149
|
- [Hooks](docs/hooks.md)
|
|
149
150
|
- [Usage tracking](docs/usage-tracking.md)
|