Conversation
TypeScript + Bun CLI that manages dotfiles via a bare git repo at ~/.dotfiles. Custom commands: help, init, sync, ls, audit, bootstrap, add, diff, merge. All unknown subcommands pass through to git with bare repo flags. Includes 51 passing tests and zero runtime dependencies. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- README, LICENSE, CONTRIBUTING, CHANGELOG, .gitignore - dotfiles init detects gh CLI and offers to create GitHub repo - dotfiles bootstrap accepts username shorthand (defaults to dotfiles repo) - Release script: bun run release <major|minor|patch> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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.
Summary
help,init,sync,ls,audit,bootstrap,add,diff,mergegit --git-dir=$HOME/.dotfiles --work-tree=$HOMEdotfiles initdetects GitHub CLI (gh) and offers guided repo creation (create/enter/skip)dotfiles bootstrapaccepts shorthand:username,user/repo, or full URLbun run release <major|minor|patch>) automates changelog, version bump, tag, and pushTest plan
bun test— 51 tests pass (git module, help output, audit patterns, CLI structure)dotfiles init— creates bare repo, scans dotfiles, interactive selection, guided GitHub remote setupdotfiles sync— pull + stage + commit + push cycledotfiles bootstrap virtualian— shorthand resolves to SSH URL, clones, backs up conflictsdotfiles bootstrap git@github.com:user/repo.git— full URL passes through unchangeddotfiles diff— smart 3-section diff with offline handlingdotfiles merge— interactive per-file conflict resolutiondotfiles audit— detects secrets by filename and content patternsdotfiles add <dir>— dry-run preview before staging directoriesbun run release patch— validates, bumps version, updates changelog, commits, tagsCloses #1
🤖 Generated with Claude Code