chore: untrack .codebuddy/.continue/.junie/.kiro skill files#42
Merged
Conversation
These per-IDE integration files materialized by `openspec init` were added to .gitignore in dd465fc but the already-tracked copies were never removed from the index — `git status` was permanently showing 40 stale tracked entries that nobody intended to version. Removes them so the index matches the .gitignore intent. The directories themselves stay ignored — anyone running `openspec init` locally will re-materialize their own per-IDE copy without it ever showing up in `git status` again.
6255cb1 to
a58371b
Compare
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
These 40 per-IDE integration files (symlinks into
.claude/skills/) materialized byopenspec initwere added to.gitignorein dd465fc, but the already-tracked copies were never removed from the index.git statuswas permanently showing them as deleted/modified for anyone who later ranopenspec initand regenerated them.This commit removes them so the index matches the
.gitignoreintent. The directories themselves stay ignored — anyone runningopenspec initlocally re-materializes their own per-IDE copy without it showing up ingit statusagain.Pure index cleanup — no code changes, no behavior changes, no impact on the
.claude/skills/pupila-*skills that ship with the repo (those have explicit allowlist entries in.gitignore).Test plan
git ls-files .codebuddy .continue .junie .kiroreturns empty after the commit.git cloneofmainon a fresh machine has no.codebuddy/.continue/.junie/.kirodirectories.openspec initlocally materializes those dirs again andgit statusstays clean.