This project strictly follows the **Git Feature Branch Workflow** (as defined by [Atlassian](https://www.atlassian.com/git/tutorials/comparing-workflows/feature-branch-workflow)).
The core idea is that all feature development should take place in a dedicated branch instead of the `main` branch.
1.**Never Commit to Main:** Direct commits to `main` are strictly prohibited. `main` must always be stable and deployable.
2.**Branch Creation:** Create a descriptive branch from the latest `main` state (e.g., `feature/animated-menu-items` or `issue-#1061`):
`git checkout main && git pull origin main && git checkout -b feature/your-feature-name`
3.**Atomic Commits:** Make small, logical, and self-contained commits to your feature branch.
4.**Push & Pull Request:** Push the feature branch to the remote repository and open a Pull Request (PR) against `main`. PRs act as a forum for discussing the feature and performing code reviews before it is merged.
- **GitHub Actions Rule:** When setting up automated workflows (like Gemini AI PR review), **always pin actions to a specific version tag** (e.g., `@v1.0.4`) instead of `@latest` to prevent breaking changes. Ensure secrets are passed safely via repository secrets (`env:`), never hardcoded.
When multiple features are developed simultaneously, `main` might advance before your PR is merged, causing a merge conflict. **The author of the pending PR is solely responsible for resolving conflicts.**
#### Resolution Procedure:
Never force-push blindly or overwrite other developers' work without understanding it. Follow these exact steps to resolve a conflict:
2. **Merge Main into Feature Branch:** Switch back to your feature branch and merge `main` into it.
```bash
git checkout feature/your-feature-name
git merge main
```
3. **Resolve Conflicts:** Git will pause the merge and mark the conflicted files. Open these files in your editor, look for the conflict markers (`<<<<<<<`, `=======`, `>>>>>>>`), and manually choose the correct code. Remove the markers once done.
4. **Stage and Commit:** After resolving all conflicts, stage the files and finish the merge commit.
```bash
git add .
git commit -m "Merge main into feature and resolve conflicts"
```
5. **Push Updates:** Push the resolved feature branch back to the remote repository to update the Pull Request.
- The Current Development Progress is tracked and marked down and always updated in the File `TODO.md`
## Knowledge Management
- Every time you learn something new or worth mentioning about the project (e.g., architecture details, aesthetic conventions, logic workflows), you MUST document it.
- If it is not already recorded in the project's brain file, you must add it to `@[.agents/brain.md]`.