Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .claude/memory/MEMORY.md
Original file line number Diff line number Diff line change
@@ -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
16 changes: 16 additions & 0 deletions .claude/memory/feedback_branching.md
Original file line number Diff line number Diff line change
@@ -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 <prefix>/<description>` before touching any file
2. Commit on the branch
3. `git push -u origin <branch>`
4. Open a PR with `gh pr create`
5. Never use `git push origin main` to push new commits
File renamed without changes.
Loading