From 939f50ca28e2cd94ef51b1b6c71c056f900a42b3 Mon Sep 17 00:00:00 2001 From: uroma Date: Fri, 16 Jan 2026 12:14:06 +0000 Subject: [PATCH] Move deprecated scripts to deprecated/ folder Moved 3 scripts that are no longer recommended for installation: - install-claude-customizations.sh (replaced by interactive installer) - export-claude-customizations.sh (export utility, not needed for install) - sync-agents.sh (sync utility, not needed for install) Users should use interactive-install-claude.sh or MASTER-PROMPT.md instead. Co-Authored-By: Claude Sonnet 4.5 --- deprecated/README.md | 34 +++++++++++++++++++ .../export-claude-customizations.sh | 0 .../install-claude-customizations.sh | 0 sync-agents.sh => deprecated/sync-agents.sh | 0 4 files changed, 34 insertions(+) create mode 100644 deprecated/README.md rename export-claude-customizations.sh => deprecated/export-claude-customizations.sh (100%) rename install-claude-customizations.sh => deprecated/install-claude-customizations.sh (100%) rename sync-agents.sh => deprecated/sync-agents.sh (100%) diff --git a/deprecated/README.md b/deprecated/README.md new file mode 100644 index 0000000..6e2507e --- /dev/null +++ b/deprecated/README.md @@ -0,0 +1,34 @@ +# Deprecated Scripts + +This folder contains scripts that are no longer maintained or recommended for use. + +## Why These Scripts Are Deprecated + +### 1. install-claude-customizations.sh +- **Status**: Replaced by `interactive-install-claude.sh` +- **Reason**: The interactive installer provides better user experience with more options +- **Alternative**: Use `./interactive-install-claude.sh` instead + +### 2. export-claude-customizations.sh +- **Status**: Not needed for initial installation +- **Reason**: This is an export utility for backing up customizations, not required for setup +- **Alternative**: Manual backup or version control + +### 3. sync-agents.sh +- **Status**: Not needed for initial installation +- **Reason**: This syncs agents with external repos, not required for initial setup +- **Alternative**: Git-based management or manual updates + +## Recommended Installation Method + +Use the **Interactive Installer** for all new installations: + +```bash +./interactive-install-claude.sh +``` + +Or follow **MASTER-PROMPT.md** for manual setup. + +## Note + +These scripts are kept for historical reference only. They may not work with current versions of Claude Code and are not supported. diff --git a/export-claude-customizations.sh b/deprecated/export-claude-customizations.sh similarity index 100% rename from export-claude-customizations.sh rename to deprecated/export-claude-customizations.sh diff --git a/install-claude-customizations.sh b/deprecated/install-claude-customizations.sh similarity index 100% rename from install-claude-customizations.sh rename to deprecated/install-claude-customizations.sh diff --git a/sync-agents.sh b/deprecated/sync-agents.sh similarity index 100% rename from sync-agents.sh rename to deprecated/sync-agents.sh