Add mandatory git workflow instructions to AGENTS.md
Some checks failed
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 44s
Some checks failed
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 44s
This commit is contained in:
29
AGENTS.md
29
AGENTS.md
@@ -2,6 +2,35 @@
|
||||
|
||||
This document provides a comprehensive overview of the project architecture for AI agents working on this codebase.
|
||||
|
||||
---
|
||||
|
||||
## ⚠️ MANDATORY GIT WORKFLOW - MUST BE FOLLOWED
|
||||
|
||||
**Before starting ANY work, you MUST:**
|
||||
|
||||
1. **Pull the latest changes:**
|
||||
```bash
|
||||
cd /home/z/my-project && git pull origin master
|
||||
```
|
||||
|
||||
2. **Do your task** - Make all necessary code changes
|
||||
|
||||
3. **Before finishing, commit and push:**
|
||||
```bash
|
||||
cd /home/z/my-project
|
||||
git add -A
|
||||
git commit -m "descriptive message about changes"
|
||||
git push origin master
|
||||
```
|
||||
|
||||
**This workflow is ENFORCED and NON-NEGOTIABLE.** Every agent session must:
|
||||
- Start with `git pull`
|
||||
- End with `git add`, `git commit`, `git push`
|
||||
|
||||
**Git Remote:** `git@gitea.tailf367e3.ts.net:Anexim/Mana-Loop.git`
|
||||
|
||||
---
|
||||
|
||||
## Project Overview
|
||||
|
||||
**Mana Loop** is an incremental/idle game built with:
|
||||
|
||||
Reference in New Issue
Block a user