chore: untrack claude code planning artifacts#52
Merged
Conversation
The six docs/plans/ and docs/superpowers/ files were session artifacts produced by the superpowers skill during earlier feature work. They captured design + plan state that only makes sense during implementation and was already landed in the codebase; shipping them in git added permanent noise reviewers had to skim past. docs/plans/ was already in .gitignore but only prevents NEW files from being tracked, so the pre-existing entries lingered. docs/superpowers/ was missing from .gitignore entirely. Untrack both directories with git rm --cached (files remain on disk for local use) and extend the ignore rule to cover docs/superpowers/ so future skill output stays local. Kept in docs/: content-spec.md (rendering contract), deferred- improvements.md (live follow-up tracker), staging-setup.md (deploy runbook), supabase-schema.sql (schema reference). These are durable references cited from CLAUDE.md and unrelated to per-session planning.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
📊 Coverage Report
🤖 Generated by CI · thresholds enforced via vitest |
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
docs/plans/anddocs/superpowers/files that were session artifacts from the superpowers skill — design + plan docs that captured implementation-time state already landed in code.docs/plans/was already in.gitignorebut only blocks new files, so the older committed entries remained;docs/superpowers/was not ignored at all.git rm --cached(still on disk for local reference);.gitignoreextended to coverdocs/superpowers/.Kept:
content-spec.md,deferred-improvements.md,staging-setup.md,supabase-schema.sql— these are durable references cited fromCLAUDE.md.Test plan
git statusafter commit shows clean working tree.git check-ignore -v docs/plans/...md docs/superpowers/.../...mdconfirms both paths ignored.ls docs/plans/ docs/superpowers/still populated.