@cliphijack/santaclaude 0.9.0 → 0.9.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/santaclaude.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cliphijack/santaclaude",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "publishConfig": { "access": "public" },
5
5
  "description": "SantaClaude 커넥터 — 클라우드 예약을 내 로컬 Claude(tmux)에 발사",
6
6
  "bin": { "santaclaude": "./santaclaude.js" },
package/santaclaude.js CHANGED
@@ -67,7 +67,7 @@ function listWindows(session) {
67
67
  // 각 루돌프(탭) 화면 캡처 — 웹 미러용 (마지막 ~30줄)
68
68
  function captureWindow(session, name) {
69
69
  // -e: ANSI 색상 보존(웹에서 터미널 색 재현), -S -40: 최근 40줄
70
- try { return execFileSync('tmux', ['capture-pane', '-t', session + ':' + name, '-p', '-e', '-S', '-40'], { encoding: 'utf8' }).replace(/\n+$/, '').slice(-8000); }
70
+ try { return execFileSync('tmux', ['capture-pane', '-t', session + ':' + name, '-p', '-e', '-S', '-200'], { encoding: 'utf8' }).replace(/\n+$/, '').slice(-16000); }
71
71
  catch (e) { return ''; }
72
72
  }
73
73
  function captureAll(session) {