feat: add uninstall script#53
Merged
Merged
Conversation
Reverse install.sh and the remote installer: remove the devloop symlink, the staged ~/.local/share/devloop runtime, and devloop-managed skills from ~/.agents/skills and ~/.claude/skills. Checksum-guards copied skills (skips hand-modified ones unless DEVLOOP_FORCE=1), removes link-mode skills directly, and is idempotent. Supports --dry-run, --bin-dir, --install-dir. Adds devloop_uninstall_skills/_from_dir to skill_helpers.sh with in-process helper tests plus an end-to-end test against the remote installer footprint.
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
devloop | 45bc034 | Commit Preview URL Branch Preview URL |
Jun 09 2026, 06:26 AM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
install.shand the remote installer drop adevloopsymlink, a staged~/.local/share/devloopruntime, and copied skills into~/.agents/skills+~/.claude/skills, but there was no inverse. Uninstalling meant reverse-engineering the install by hand.Approach
Add
scripts/uninstall.shthat mirrors both installers' paths and reuses the existing skill helpers:~/.local/bin/devloopsymlink (guarded by-L, never follows to the source checkout).~/.local/share/devloopstaged runtime (--install-diroverride).devloop_uninstall_skills/_from_dirinskill_helpers.sh: checksum-guarded for copied skills (skips hand-modified ones unlessDEVLOOP_FORCE=1), removes link-mode skills directly.--dry-runpreview, idempotent re-runs, leaves the source checkout,gum,fzf, andghalone.Docs updated (README, AGENTS.md).
Test evidence
bash scripts/devloop_test.sh→ green, including the 100% function-coverage gate. New coverage:DEVLOOP_FORCEoverride).