mirror of
https://github.com/thedotmack/claude-mem
synced 2026-04-25 17:15:04 +02:00
Removes installer/ directory (16 files) — fully replaced by src/npx-cli/. Updates install.sh and installer.js to redirect to npx claude-mem. Adds npx claude-mem as primary install method in docs and README. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
26 lines
703 B
Bash
26 lines
703 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# claude-mem installer redirect
|
|
# The old curl-pipe-bash installer has been replaced by npx claude-mem.
|
|
# This script now redirects users to the new install method.
|
|
|
|
# Colors
|
|
RED='\033[0;31m'
|
|
GREEN='\033[0;32m'
|
|
CYAN='\033[0;36m'
|
|
YELLOW='\033[0;33m'
|
|
NC='\033[0m' # No Color
|
|
|
|
echo ""
|
|
echo -e "${YELLOW}The curl-pipe-bash installer has been replaced.${NC}"
|
|
echo ""
|
|
echo -e "${GREEN}Install claude-mem with a single command:${NC}"
|
|
echo ""
|
|
echo -e " ${CYAN}npx claude-mem install${NC}"
|
|
echo ""
|
|
echo -e "This requires Node.js >= 18. Get it from ${CYAN}https://nodejs.org${NC}"
|
|
echo ""
|
|
echo -e "For more info, visit: ${CYAN}https://docs.claude-mem.ai/installation${NC}"
|
|
echo ""
|