diff --git a/.claude/memory/MEMORY.md b/.claude/memory/MEMORY.md new file mode 100644 index 0000000..1577884 --- /dev/null +++ b/.claude/memory/MEMORY.md @@ -0,0 +1,4 @@ +# Memory Index + +## Feedback +- [feedback_branching.md](feedback_branching.md) — Never commit directly to main; all changes go through a feature branch and PR diff --git a/.claude/memory/feedback_branching.md b/.claude/memory/feedback_branching.md new file mode 100644 index 0000000..8e035b0 --- /dev/null +++ b/.claude/memory/feedback_branching.md @@ -0,0 +1,16 @@ +--- +name: Always use feature branches +description: Never commit directly to main — all changes go through a feature branch and PR per CONTRIBUTING.md +type: feedback +--- + +Always create a feature branch before making any changes, no matter how small. This includes chore commits like adding LICENSE files, updating .gitignore, or any other "trivial" change. + +**Why:** The project follows CONTRIBUTING.md strictly — nothing goes to main directly. + +**How to apply:** +1. `git checkout -b /` before touching any file +2. Commit on the branch +3. `git push -u origin ` +4. Open a PR with `gh pr create` +5. Never use `git push origin main` to push new commits diff --git a/landing/index.html b/docs/index.html similarity index 100% rename from landing/index.html rename to docs/index.html