Files
claude-launcher/launch.ps1
T
gitadmin d5d6703a1a Initial commit: Claude Code session launcher
TUI launcher built with Ink/React for managing Claude Code sessions.
Features: local project browser, Gitea integration, Infisical auth, remote sessions.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 20:52:26 +03:00

6 lines
168 B
PowerShell

# Claude Launcher — PowerShell entry point
$env:NODE_TLS_REJECT_UNAUTHORIZED = "0"
Push-Location $PSScriptRoot
try { npx tsx src/index.tsx }
finally { Pop-Location }