Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions setup
Original file line number Diff line number Diff line change
Expand Up @@ -129,19 +129,6 @@ for skill in $LEGACY_SKILLS; do
fi
done

# Vestigial bare-symlink cleanup. Older setup versions symlinked the repo into
# ~/.claude/plugins/idstack (or ./.claude/plugins/idstack for --local). Current
# Claude Code discovers plugins through the marketplace registry, not bare
# symlinks, so that link is dead weight. Only ever removes a *symlink* — a real
# directory there might be someone's clone, and is left untouched.
for plugins_base in "$HOME/.claude/plugins" "$(pwd)/.claude/plugins"; do
vestigial="$plugins_base/idstack"
if [ -L "$vestigial" ]; then
rm "$vestigial"
echo " removed vestigial symlink: $vestigial (pre-marketplace install method)"
fi
done

# Claude Code install — register this repo as a single-plugin marketplace, then
# install from it. Both commands are idempotent, so re-running setup is safe.
# The marketplace source is this repo's path; `marketplace update` re-reads it,
Expand Down