@cliphijack/santaclaude 1.0.20 → 1.0.21

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 +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cliphijack/santaclaude",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "publishConfig": { "access": "public" },
5
5
  "description": "SantaClaude 커넥터 — 클라우드 예약을 내 로컬 Claude(tmux)에 발사",
6
6
  "bin": { "santaclaude": "./santaclaude.js" },
package/santaclaude.js CHANGED
@@ -76,8 +76,8 @@ function listWindows(session) {
76
76
  }
77
77
  // 각 루돌프(탭) 화면 캡처 — 웹 미러용 (마지막 ~30줄)
78
78
  function captureWindow(session, name) {
79
- // -e: ANSI 색상 보존(웹에서 터미널 색 재현), -S -2000: 최근 2000줄(스크롤백 깊게)
80
- try { return execFileSync('tmux', ['capture-pane', '-t', session + ':' + name, '-p', '-e', '-S', '-2000'], { encoding: 'utf8' }).replace(/\n+$/, '').slice(-120000); }
79
+ // -e: ANSI 색상 보존(웹에서 터미널 색 재현), -S -700: 최근 700 (반응속도 vs 스크롤 균형 — 2000은 렌더 비용 4배라 맥에서 느림)
80
+ try { return execFileSync('tmux', ['capture-pane', '-t', session + ':' + name, '-p', '-e', '-S', '-700'], { encoding: 'utf8' }).replace(/\n+$/, '').slice(-75000); }
81
81
  catch (e) { return ''; }
82
82
  }
83
83
  // 🔍 로컬 스킬 발견 — ~/.claude/skills + 각 루돌프 프로젝트 .claude/skills 스캔 (등록 누를 때만 1회)