#!/usr/bin/env bun const VERSION = "0.1.0"; function printHelp(): void { console.log(`tmux-session - Instruction-set skill DESCRIPTION: Guides an agent through grouped tmux session setup with workspace-aware naming: - create source sessions - add windows for repos or local tools - attach named sessions to the correct window index - verify pane focus and dead sessions USAGE: skills docs tmux-session skills install tmux-session --for claude `); } const args = process.argv.slice(2); if (args.includes("--version") || args.includes("-v")) { console.log(VERSION); process.exit(0); } if (args.includes("--help") || args.includes("-h") || args.length === 0) { printHelp(); process.exit(0); } console.log("This is an instruction-set skill. Install it for an agent with:"); console.log(" skills install tmux-session --for claude");