From e2d2e4ec13bb57978410df7bfa74843f64e45371 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 15 Feb 2026 23:28:12 +0000 Subject: [PATCH] feat(install): add agentic repo clone command Clone jimeh/agentic repo to ~/.config/agentic, following the same pattern as the private dotfiles clone. Co-Authored-By: Claude Opus 4.6 --- install.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/install.sh b/install.sh index ee72ac5..38a6821 100755 --- a/install.sh +++ b/install.sh @@ -87,6 +87,11 @@ install_private() { "$ROOT_PATH/$PRIVATE_PATH" } +install_agentic() { + git_clone "git@github.com:jimeh/agentic.git" \ + "$HOME/.config/agentic" +} + install_launch_agents() { mkdir -p "$HOME/Library/LaunchAgents" for file in $ROOT_PATH/launch_agents/*.plist; do @@ -256,6 +261,7 @@ display_help() { echo ' info: Display target and source directory information.' echo ' emacs_config: Install Emacs configuration.' echo ' private: Install private dotfiles.' + echo ' agentic: Clone agentic repo to ~/.config/agentic.' echo ' homebrew: Install Homebrew (Mac OS X only).' echo ' rbenv: Install rbenv, a Ruby version manager.' echo ' launch_agents: Install launchd plists to ~/Library/LaunchAgents/' @@ -278,6 +284,9 @@ case "$1" in private) install_private ;; + agentic) + install_agentic + ;; homebrew | brew) install_homebrew ;;