feat: add git workflow standards and update code review guidelines

This commit is contained in:
2026-05-10 19:52:54 +02:00
parent 9a45a078a6
commit f433e3c74a
2 changed files with 16 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
---
name: nexus-git-workflow
description: Guidelines and standards for Git workflow, commits, and PRs in NexusReader
---
# NexusReader Git Workflow Standards
When working with Git and remote repositories for NexusReader, adhere to the following standards:
- **System Prompts in Tasks**: Tasks in the tracker *usually include* a system prompt that you should use directly for implementation.
- **Pull Request Traceability**: When you create a pull request, it must include a reference to at least one task from the tracker (e.g., "Fixes #123" or "Resolves #456").
- **Gitea MCP Server**: Use the **Gitea MCP server** whenever possible when exchanging data with a remote repository.
- **Atomic Commits**: Create *atomic commits* that represent a single logical change. This makes reviewing, reverting, and bisecting easier.
- **Addressing Comments**: When addressing comments on a pull request, always refer to specific comments and try to resolve them within the conversation.