chore: track GSD planning docs (un-ignore .planning + docs/superpowers)#168
Merged
Conversation
PR #61 added `.planning/`, `.superpowers/`, and `docs/superpowers/` to .gitignore as "local workflow artifacts". But git only ignores untracked files — 75 `.planning` files were already tracked and kept getting committed, while every planning doc created afterward was silently swallowed: 408 files (~6.8 MB) sat on disk but never entered the repo. Drop the `.planning/` and `docs/superpowers/` ignore rules and commit the previously-hidden GSD planning docs — PROJECT.md, MILESTONES.md, config.json, REQUIREMENTS/ROADMAP/STATE, codebase/, debug/, milestones/, research/, and the phase/quick directories. `.superpowers/` stays ignored (currently empty). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Owner
Author
|
ℹ️ Heads-up: the failing "Example Smoke Tests" check is pre-existing on This change is docs-only (un-ignores The same workflow is already red on
That's an unrelated example/engine bug and is best fixed in its own PR rather than bundled here. |
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.
What & why
.gitignorehas been silently swallowing GSD planning docs since #61, which added.planning/,.superpowers/, anddocs/superpowers/as "local workflow artifacts."The catch: git only ignores untracked files. When that rule landed, 75
.planningfiles were already tracked, so they kept getting committed — while every planning doc created afterward was hidden. The result in the main checkout:.planning/docs/superpowers/.superpowers/That's ~6.8 MB of planning history (
PROJECT.md,MILESTONES.md,config.json,REQUIREMENTS/ROADMAP/STATE,codebase/,debug/,milestones/,research/, and thephases/+quick/dirs) that never made it into the repo.Change
.planning/anddocs/superpowers/ignore rules..superpowers/ignored — it's empty, and is brainstorm scratch rather than durable planning output.Notes
ANTHROPIC_API_KEY=) — none found..gitignorelines.git statusinstead of being silently ignored.🤖 Generated with Claude Code