coxpit 5.3.1 โ†’ 5.3.2

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,5 +1,7 @@
1
1
  <p align="center"><img src="docs/brand/og-lockup.png" alt="coxpit โ€” the cockpit for your agent fleet" width="640"></p>
2
2
 
3
+ > ๐Ÿ““ **Build log** ยท how this was built, on the [AIP Lab blog](https://aiplab.kr/blog/coxpit-fleet.html).
4
+
3
5
  # Coxpit
4
6
 
5
7
  **Own your agent fleet. Run parallel AI coding agents across your own machines โ€” steer them from any browser.**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coxpit",
3
- "version": "5.3.1",
3
+ "version": "5.3.2",
4
4
  "description": "Self-hosted cockpit for running a fleet of AI coding agents across your own machines โ€” parallel worktree runs, live board, compare & merge, web terminal, design capture.",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/board.ts CHANGED
@@ -1801,6 +1801,10 @@ async function renderSettings(){
1801
1801
  + '<label class="set-row"><span class="set-lbl">Public URL '+lockNote(L.publicUrl,'COXPIT_PUBLIC_URL')+'</span>'
1802
1802
  + '<input id="setPublic" value="'+escA(ef.publicUrl||'')+'" placeholder="https://โ€ฆ (deep-link base in notifications)"'+dis(L.publicUrl)+'></label>'
1803
1803
  + '</div>'
1804
+ + '<div class="set-sec"><div class="set-h">Remote access</div>'
1805
+ + '<div class="set-state">Reach this daemon from your other devices โ€” coxpit detects your Tailscale and drives it, or hands a copy-paste recipe. It never hosts a relay.</div>'
1806
+ + '<div id="rmtSettings" class="rmt">checkingโ€ฆ</div>'
1807
+ + '</div>'
1804
1808
  + '<div class="set-sec"><div class="set-h">About</div>'
1805
1809
  + '<div class="set-kv"><span>version</span><b>'+esc(s.version)+'</b></div>'
1806
1810
  + '<div class="set-kv"><span>data folder</span><b>'+esc(s.dataDir)+'</b></div>'
@@ -1808,6 +1812,7 @@ async function renderSettings(){
1808
1812
  + '<div class="set-save"><button type="button" class="btn" id="setSave">Save settings</button>'
1809
1813
  + '<span class="set-saved" id="setSaved"></span></div>';
1810
1814
  wireSettings();
1815
+ loadRemote(); // Remote access ์„น์…˜(#rmtSettings) ์ฑ„์šฐ๊ธฐ + ํ† ๊ธ€ ๋ฐฐ์„ 
1811
1816
  }
1812
1817
  function wireSettings(){
1813
1818
  const save = $('setSave'); if (!save) return;
@@ -1989,10 +1994,9 @@ function paintOnboarding(goalsOnly){
1989
1994
  + '<li><b>Write a task</b> โ€” title + a prompt that names the target files</li>'
1990
1995
  + '<li><b>Run fleet</b> โ€” try <b>Dry run</b> first (free rehearsal), then <b>Real agent</b></li>'
1991
1996
  + '</ol></div>'
1992
- + '<div class="setup-sec"><p class="setup-label">Remote access</p>'
1993
- + '<div id="rmtOnboard" class="rmt">checking Tailscaleโ€ฆ</div></div>'
1994
1997
  + '</div>';
1995
- loadRemote();
1998
+ // Remote access(Serve/Funnel)๋Š” ๋Œ€๋‹ค์ˆ˜ ์‚ฌ์šฉ์ž์—๊ฒ ๋ถˆํ•„์š” โ†’ ์˜จ๋ณด๋”ฉ์—์„œ ์ œ๊ฑฐํ•˜๊ณ  Settings ์—์„œ ์ƒ์„ธํžˆ ๋‹ค๋ฃฌ๋‹ค.
1999
+ // (ํ—ค๋” โคข ๋ฒ„ํŠผ์œผ๋กœ๋„ ์—ฌ์ „ํžˆ ์ ‘๊ทผ ๊ฐ€๋Šฅ)
1996
2000
  }
1997
2001
  function cardHTML(r){
1998
2002
  const task = tasks.get(r.taskId);
@@ -3764,9 +3768,9 @@ async function loadRemote(){
3764
3768
  function paintRemote(){
3765
3769
  const html = remoteCardHTML(remoteData);
3766
3770
  const ov = $('remoteBody'); if (ov) ov.innerHTML = html;
3767
- const ob = $('rmtOnboard'); if (ob) ob.innerHTML = html;
3771
+ const st = $('rmtSettings'); if (st) st.innerHTML = html; // Settings ํŽ˜์ด์ง€ ์ธ๋ผ์ธ
3768
3772
  wireRemote($('remoteOverlay'));
3769
- wireRemote(document.getElementById('empty'));
3773
+ wireRemote(document.getElementById('setbox'));
3770
3774
  }
3771
3775
 
3772
3776
  function wireRemote(scope){