@suisya-systems/renga 0.18.4 → 0.18.5

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 CHANGED
@@ -1,8 +1,8 @@
1
1
  # @suisya-systems/renga
2
2
 
3
- A terminal multiplexer purpose-built for running multiple [Claude Code](https://docs.anthropic.com/en/docs/claude-code) sessions side-by-sideClaude-aware pane detection, peer messaging between Claude panes via a built-in MCP channel, and an IME-aware composition overlay for JP/CJK input.
3
+ An AI-native terminal for orchestrating multiple [Claude Code](https://docs.anthropic.com/en/docs/claude-code) and Codex agents in one workspace mixed-client peer messaging, pane orchestration via MCP, and an IME-aware composition overlay for JP/CJK input.
4
4
 
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.
5
+ For people already running 2+ coding agents in parallel. If you only ever run one agent at a time, the value over a plain terminal is small.
6
6
 
7
7
  ## Install
8
8
 
@@ -31,22 +31,26 @@ renga /path/to/project # Launch in specified directory
31
31
 
32
32
  ## Features
33
33
 
34
- - Multi-pane terminal splits (vertical/horizontal)
34
+ - Mixed-client peer messaging between Claude Code and Codex panes via the built-in `renga-peers` MCP channel
35
+ - Pane-control MCP tools (`spawn_claude_pane`, `spawn_codex_pane`, `set_pane_identity`, `new_tab`, `send_keys`, `inspect_pane`, ...)
36
+ - Centered IME composition overlay for JP / CJK input with pane freeze + draft restore on reopen
37
+ - Multi-pane splits, tab workspaces, and layout TOML
35
38
  - File tree sidebar with syntax-highlighted preview
36
- - Tab workspaces
37
39
  - Claude Code auto-detection (pane border turns orange)
38
40
  - Mouse support (click, drag resize, text selection)
39
- - Terminal scrollback (10,000 lines)
40
41
  - Cross-platform (Windows, macOS, Linux)
41
42
 
42
43
  ## Links
43
44
 
45
+ - [Landing Page](https://suisya-systems.github.io/renga/)
46
+ - [Docs](https://suisya-systems.github.io/renga/docs)
44
47
  - [GitHub](https://github.com/suisya-systems/renga)
45
48
  - [Full README (with peer messaging, IME overlay, keybindings, configuration)](https://github.com/suisya-systems/renga#readme)
49
+ - [claude-org reference stack built on renga](https://github.com/suisya-systems/claude-org)
46
50
 
47
51
  ## History
48
52
 
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.
53
+ renga was originally derived from [Shin-sibainu/ccmux](https://github.com/Shin-sibainu/ccmux) and has since evolved independently — the AI-agent peer network, mixed-client orchestration flow, 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.
50
54
 
51
55
  ## License
52
56
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@suisya-systems/renga",
3
- "version": "0.18.4",
4
- "description": "Claude Code Multiplexer (fork, formerly ccmux-fork) — manage multiple Claude Code instances in TUI split panes",
3
+ "version": "0.18.5",
4
+ "description": "AI-native terminal for orchestrating multiple Claude Code and Codex agents in one workspace",
5
5
  "bin": {
6
6
  "renga": "bin/cli.js"
7
7
  },
@@ -9,10 +9,16 @@
9
9
  "postinstall": "node scripts/install.js"
10
10
  },
11
11
  "keywords": [
12
+ "ai",
13
+ "agent",
14
+ "agent-orchestration",
12
15
  "claude",
13
16
  "claude-code",
17
+ "codex",
18
+ "mcp",
14
19
  "terminal",
15
20
  "multiplexer",
21
+ "terminal-multiplexer",
16
22
  "tui",
17
23
  "pane",
18
24
  "split",
@@ -27,7 +33,10 @@
27
33
  "type": "git",
28
34
  "url": "https://github.com/suisya-systems/renga"
29
35
  },
30
- "homepage": "https://github.com/suisya-systems/renga",
36
+ "bugs": {
37
+ "url": "https://github.com/suisya-systems/renga/issues"
38
+ },
39
+ "homepage": "https://suisya-systems.github.io/renga/",
31
40
  "os": [
32
41
  "win32",
33
42
  "darwin",
@@ -252,7 +252,7 @@ async function main() {
252
252
  console.log(`${BLUE}██║ ██║███████╗██║ ╚████║╚██████╔╝██║ ██║${RESET}`);
253
253
  console.log(`${BLUE}╚═╝ ╚═╝╚══════╝╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═╝${RESET}`);
254
254
  console.log('');
255
- console.log(`${DIM} Claude Code Multiplexer v${VERSION}${RESET}`);
255
+ console.log(`${DIM} AI-native terminal for agent teams v${VERSION}${RESET}`);
256
256
  console.log(`${DIM} Run 'renga' to start.${RESET}`);
257
257
  console.log('');
258
258
  } catch (err) {