Files
everything-claude-code/install.sh
Affaan Mustafa d9d0d3c444 fix: resolve symlinks in install.sh for npm/bun bin usage
When installed via `npm install ecc-universal`, the `ecc-install` bin
entry creates a symlink from the package manager's bin directory to
install.sh. The old `$(dirname "$0")` resolved to the bin directory
instead of the actual package directory, causing `cp` to fail with
"cannot stat '.../rules/common/.'".

Now follows the symlink chain with readlink before resolving SCRIPT_DIR.

Fixes #199
2026-02-12 16:12:21 -08:00

167 lines
5.3 KiB
Bash
Executable File

#!/usr/bin/env bash
# install.sh — Install claude rules while preserving directory structure.
#
# Usage:
# ./install.sh [--target <claude|cursor>] <language> [<language> ...]
#
# Examples:
# ./install.sh typescript
# ./install.sh typescript python golang
# ./install.sh --target cursor typescript
# ./install.sh --target cursor typescript python golang
#
# Targets:
# claude (default) — Install rules to ~/.claude/rules/
# cursor — Install rules, agents, skills, commands, and MCP to ./.cursor/
#
# This script copies rules into the target directory keeping the common/ and
# language-specific subdirectories intact so that:
# 1. Files with the same name in common/ and <language>/ don't overwrite
# each other.
# 2. Relative references (e.g. ../common/coding-style.md) remain valid.
set -euo pipefail
# Resolve symlinks — needed when invoked as `ecc-install` via npm/bun bin symlink
SCRIPT_PATH="$0"
while [ -L "$SCRIPT_PATH" ]; do
link_dir="$(cd "$(dirname "$SCRIPT_PATH")" && pwd)"
SCRIPT_PATH="$(readlink "$SCRIPT_PATH")"
# Resolve relative symlinks
[[ "$SCRIPT_PATH" != /* ]] && SCRIPT_PATH="$link_dir/$SCRIPT_PATH"
done
SCRIPT_DIR="$(cd "$(dirname "$SCRIPT_PATH")" && pwd)"
RULES_DIR="$SCRIPT_DIR/rules"
# --- Parse --target flag ---
TARGET="claude"
if [[ "${1:-}" == "--target" ]]; then
if [[ -z "${2:-}" ]]; then
echo "Error: --target requires a value (claude or cursor)" >&2
exit 1
fi
TARGET="$2"
shift 2
fi
if [[ "$TARGET" != "claude" && "$TARGET" != "cursor" ]]; then
echo "Error: unknown target '$TARGET'. Must be 'claude' or 'cursor'." >&2
exit 1
fi
# --- Usage ---
if [[ $# -eq 0 ]]; then
echo "Usage: $0 [--target <claude|cursor>] <language> [<language> ...]"
echo ""
echo "Targets:"
echo " claude (default) — Install rules to ~/.claude/rules/"
echo " cursor — Install rules, agents, skills, commands, and MCP to ./.cursor/"
echo ""
echo "Available languages:"
for dir in "$RULES_DIR"/*/; do
name="$(basename "$dir")"
[[ "$name" == "common" ]] && continue
echo " - $name"
done
exit 1
fi
# --- Claude target (existing behavior) ---
if [[ "$TARGET" == "claude" ]]; then
DEST_DIR="${CLAUDE_RULES_DIR:-$HOME/.claude/rules}"
# Always install common rules
echo "Installing common rules -> $DEST_DIR/common/"
mkdir -p "$DEST_DIR/common"
cp -r "$RULES_DIR/common/." "$DEST_DIR/common/"
# Install each requested language
for lang in "$@"; do
# Validate language name to prevent path traversal
if [[ ! "$lang" =~ ^[a-zA-Z0-9_-]+$ ]]; then
echo "Error: invalid language name '$lang'. Only alphanumeric, dash, and underscore allowed." >&2
continue
fi
lang_dir="$RULES_DIR/$lang"
if [[ ! -d "$lang_dir" ]]; then
echo "Warning: rules/$lang/ does not exist, skipping." >&2
continue
fi
echo "Installing $lang rules -> $DEST_DIR/$lang/"
mkdir -p "$DEST_DIR/$lang"
cp -r "$lang_dir/." "$DEST_DIR/$lang/"
done
echo "Done. Rules installed to $DEST_DIR/"
fi
# --- Cursor target ---
if [[ "$TARGET" == "cursor" ]]; then
DEST_DIR=".cursor"
CURSOR_SRC="$SCRIPT_DIR/.cursor"
echo "Installing Cursor configs to $DEST_DIR/"
# --- Rules ---
echo "Installing common rules -> $DEST_DIR/rules/"
mkdir -p "$DEST_DIR/rules"
# Copy common rules (flattened names like common-coding-style.md)
if [[ -d "$CURSOR_SRC/rules" ]]; then
for f in "$CURSOR_SRC/rules"/common-*.md; do
[[ -f "$f" ]] && cp "$f" "$DEST_DIR/rules/"
done
fi
# Install language-specific rules
for lang in "$@"; do
# Validate language name to prevent path traversal
if [[ ! "$lang" =~ ^[a-zA-Z0-9_-]+$ ]]; then
echo "Error: invalid language name '$lang'. Only alphanumeric, dash, and underscore allowed." >&2
continue
fi
if [[ -d "$CURSOR_SRC/rules" ]]; then
found=false
for f in "$CURSOR_SRC/rules"/${lang}-*.md; do
if [[ -f "$f" ]]; then
cp "$f" "$DEST_DIR/rules/"
found=true
fi
done
if $found; then
echo "Installing $lang rules -> $DEST_DIR/rules/"
else
echo "Warning: no Cursor rules for '$lang' found, skipping." >&2
fi
fi
done
# --- Agents ---
if [[ -d "$CURSOR_SRC/agents" ]]; then
echo "Installing agents -> $DEST_DIR/agents/"
mkdir -p "$DEST_DIR/agents"
cp -r "$CURSOR_SRC/agents/." "$DEST_DIR/agents/"
fi
# --- Skills ---
if [[ -d "$CURSOR_SRC/skills" ]]; then
echo "Installing skills -> $DEST_DIR/skills/"
mkdir -p "$DEST_DIR/skills"
cp -r "$CURSOR_SRC/skills/." "$DEST_DIR/skills/"
fi
# --- Commands ---
if [[ -d "$CURSOR_SRC/commands" ]]; then
echo "Installing commands -> $DEST_DIR/commands/"
mkdir -p "$DEST_DIR/commands"
cp -r "$CURSOR_SRC/commands/." "$DEST_DIR/commands/"
fi
# --- MCP Config ---
if [[ -f "$CURSOR_SRC/mcp.json" ]]; then
echo "Installing MCP config -> $DEST_DIR/mcp.json"
cp "$CURSOR_SRC/mcp.json" "$DEST_DIR/mcp.json"
fi
echo "Done. Cursor configs installed to $DEST_DIR/"
fi