@suisya-systems/renga 0.18.2 → 0.18.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.
- package/README.md +11 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# @suisya-systems/renga
|
|
2
2
|
|
|
3
|
-
Claude Code
|
|
3
|
+
A terminal multiplexer purpose-built for running multiple [Claude Code](https://docs.anthropic.com/en/docs/claude-code) sessions side-by-side — Claude-aware pane detection, peer messaging between Claude panes via a built-in MCP channel, and an IME-aware composition overlay for JP/CJK input.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
For people running 2+ Claude Code instances in parallel (orchestrator + workers, side-by-side comparisons, etc.). If you only ever run one Claude at a time, the value over a plain terminal is small.
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
@@ -16,10 +16,10 @@ Migrating from previous `ccmux-fork`:
|
|
|
16
16
|
npm uninstall -g ccmux-fork && npm install -g @suisya-systems/renga
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
Migrating from the upstream `
|
|
19
|
+
Migrating from the upstream `ccmux-cli`:
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
|
-
npm uninstall -g
|
|
22
|
+
npm uninstall -g ccmux-cli && npm install -g @suisya-systems/renga
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
## Usage
|
|
@@ -41,9 +41,13 @@ renga /path/to/project # Launch in specified directory
|
|
|
41
41
|
|
|
42
42
|
## Links
|
|
43
43
|
|
|
44
|
-
- [GitHub
|
|
45
|
-
- [
|
|
44
|
+
- [GitHub](https://github.com/suisya-systems/renga)
|
|
45
|
+
- [Full README (with peer messaging, IME overlay, keybindings, configuration)](https://github.com/suisya-systems/renga#readme)
|
|
46
|
+
|
|
47
|
+
## History
|
|
48
|
+
|
|
49
|
+
renga was originally derived from [Shin-sibainu/ccmux](https://github.com/Shin-sibainu/ccmux) and has since evolved independently — peer messaging, IME overlay, layout TOML, and the bilingual UX layer are renga-specific. See [`BRANCHING.md`](https://github.com/suisya-systems/renga/blob/main/BRANCHING.md) for the divergence policy.
|
|
46
50
|
|
|
47
51
|
## License
|
|
48
52
|
|
|
49
|
-
MIT
|
|
53
|
+
MIT — upstream `Shin-sibainu/ccmux` copyright is retained per the license terms.
|
package/package.json
CHANGED