@ghackk/multi-claude 1.0.9 → 1.0.10

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/unix/claude-menu.sh +19 -18
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ghackk/multi-claude",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "Run multiple Claude CLI accounts with shared settings, plugins, marketplace sync, and backup/restore",
5
5
  "bin": {
6
6
  "multi-claude": "bin/claude-multi.js"
@@ -1255,13 +1255,14 @@ show_menu() {
1255
1255
  echo " 3. Launch Account"
1256
1256
  echo " 4. Rename Account"
1257
1257
  echo -e " \033[31m5. Delete Account\033[0m"
1258
- echo " 6. Backup Sessions"
1259
- echo " 7. Restore Sessions"
1260
- echo -e " \033[33m8. Shared Settings (MCP/Skills)\033[0m"
1261
- echo -e " \033[35m9. Plugins & Marketplace\033[0m"
1262
- echo -e " \033[32mE. Export Profile (Pair Code)\033[0m"
1263
- echo -e " \033[32mI. Import Profile (Pair Code)\033[0m"
1264
- echo " 0. Exit"
1258
+ echo -e " \033[33m6. Shared Settings (MCP/Skills)\033[0m"
1259
+ echo -e " \033[35m7. Shared Plugins & Marketplace\033[0m"
1260
+ echo -e " \033[32m8. Remote Session Backup\033[0m"
1261
+ echo -e " \033[32m9. Remote Session Restore\033[0m"
1262
+ echo -e " \033[32mE. Send Account (Pair Code)\033[0m"
1263
+ echo -e " \033[32mI. Receive Account (Pair Code)\033[0m"
1264
+ echo -e " \033[90mH. Help\033[0m"
1265
+ echo -e " \033[31m0. Exit\033[0m"
1265
1266
  echo -e "\033[36m======================================\033[0m"
1266
1267
  echo ""
1267
1268
  }
@@ -1274,23 +1275,23 @@ show_help() {
1274
1275
  echo -e " \033[90m Create, launch, rename, and delete Claude CLI accounts.\033[0m"
1275
1276
  echo -e " \033[90m Each account gets its own isolated config directory.\033[0m"
1276
1277
  echo ""
1277
- echo -e " \033[37m6-7. Backup & Restore\033[0m"
1278
- echo -e " \033[90m Create timestamped local backups of all accounts and settings.\033[0m"
1279
- echo ""
1280
- echo -e " \033[37m8. Shared Settings\033[0m"
1278
+ echo -e " \033[37m6. Shared Settings (MCP/Skills)\033[0m"
1281
1279
  echo -e " \033[90m Define MCP servers, env vars, and CLAUDE.md instructions\033[0m"
1282
1280
  echo -e " \033[90m that automatically apply to ALL accounts on launch.\033[0m"
1283
1281
  echo ""
1284
- echo -e " \033[37m9. Plugins & Marketplace\033[0m"
1282
+ echo -e " \033[37m7. Shared Plugins & Marketplace\033[0m"
1285
1283
  echo -e " \033[90m Enable/disable plugins globally or per-account.\033[0m"
1286
1284
  echo -e " \033[90m Browse and manage marketplace indexes.\033[0m"
1287
1285
  echo ""
1288
- echo -e " \033[37mE. Export Profile (Pair Code)\033[0m"
1286
+ echo -e " \033[37m8-9. Remote Backup & Restore\033[0m"
1287
+ echo -e " \033[90m Cloud backup/restore of all accounts and settings.\033[0m"
1288
+ echo ""
1289
+ echo -e " \033[37mE. Send Account (Pair Code)\033[0m"
1289
1290
  echo -e " \033[90m Send a single account to another machine. You get a short code\033[0m"
1290
1291
  echo -e " \033[90m like A7X4B-K9M4PX — the other person enters it using 'I'.\033[0m"
1291
1292
  echo -e " \033[90m The code expires in 10 minutes and works only once.\033[0m"
1292
1293
  echo ""
1293
- echo -e " \033[37mI. Import Profile (Pair Code)\033[0m"
1294
+ echo -e " \033[37mI. Receive Account (Pair Code)\033[0m"
1294
1295
  echo -e " \033[90m Receive an account from someone else. Enter the pairing code\033[0m"
1295
1296
  echo -e " \033[90m they gave you and the account appears on your machine.\033[0m"
1296
1297
  echo ""
@@ -1306,10 +1307,10 @@ while true; do
1306
1307
  3) launch_account ;;
1307
1308
  4) rename_account ;;
1308
1309
  5) delete_account ;;
1309
- 6) backup_sessions ;;
1310
- 7) restore_sessions ;;
1311
- 8) manage_shared_settings ;;
1312
- 9) manage_plugins ;;
1310
+ 6) manage_shared_settings ;;
1311
+ 7) manage_plugins ;;
1312
+ 8) cloud_backup ;;
1313
+ 9) cloud_restore ;;
1313
1314
  [eE]) pair_export ;;
1314
1315
  [iI]) pair_import ;;
1315
1316
  [hH]) show_help ;;