@ghackk/multi-claude 1.0.0

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.
@@ -0,0 +1,22 @@
1
+ #!/bin/bash
2
+ # ─── Claude Account Manager Installer (Unix) ───────────────────────────────
3
+
4
+ set -e
5
+
6
+ INSTALL_DIR="$HOME/claude-accounts"
7
+
8
+ echo "Installing Claude Account Manager..."
9
+ mkdir -p "$INSTALL_DIR/unix"
10
+
11
+ # Copy scripts
12
+ SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
13
+ cp "$SCRIPT_DIR/claude-menu.sh" "$INSTALL_DIR/unix/claude-menu.sh"
14
+ chmod +x "$INSTALL_DIR/unix/claude-menu.sh"
15
+
16
+ # Create alias helper
17
+ echo ""
18
+ echo "Add this to your ~/.bashrc or ~/.zshrc:"
19
+ echo ""
20
+ echo " alias claude-menu='$INSTALL_DIR/unix/claude-menu.sh'"
21
+ echo ""
22
+ echo "Done! Run 'claude-menu' to start."
@@ -0,0 +1,2 @@
1
+ @echo off
2
+ powershell -ExecutionPolicy Bypass -File "%USERPROFILE%\claude-accounts\claude-menu.ps1"