From 3657e7c945f5cb098bc8b7878b033a3fd37c4e7a Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sun, 15 Feb 2026 18:43:07 +0000 Subject: [PATCH] Remove run_once claude plugin install script Was launching interactive Claude sessions on every chezmoi apply since chezmoi had no record of it completing. --- run_once_after_install-claude-plugins.sh | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100755 run_once_after_install-claude-plugins.sh diff --git a/run_once_after_install-claude-plugins.sh b/run_once_after_install-claude-plugins.sh deleted file mode 100755 index 79afe12..0000000 --- a/run_once_after_install-claude-plugins.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash -# This script runs once after chezmoi apply on a new machine - -set -e - -# Check if claude is available -if ! command -v claude &> /dev/null; then - echo "Claude CLI not found, skipping plugin installation" - exit 0 -fi - -echo "Installing Claude marketplaces..." -claude /add-marketplace anthropics/claude-plugins-official 2>/dev/null || true -claude /add-marketplace anthropics/skills 2>/dev/null || true -claude /add-marketplace obra/superpowers-marketplace 2>/dev/null || true - -echo "Installing Claude plugins..." -claude /install-plugin code-simplifier@claude-plugins-official 2>/dev/null || true -claude /install-plugin ralph-loop@claude-plugins-official 2>/dev/null || true -claude /install-plugin superpowers@claude-plugins-official 2>/dev/null || true - -echo "Claude plugins installed successfully"