From 0614390b5964665270aa793e69cd445917e99dcc Mon Sep 17 00:00:00 2001 From: Zsolt Tasnadi Date: Tue, 9 Dec 2025 17:17:38 +0100 Subject: [PATCH] Docs: Add agent directive regarding git operations Added a new section to GEMINI.md to explicitly state that the agent should not perform git add or git commit operations in the future, as this responsibility will be handled by the user. --- GEMINI.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/GEMINI.md b/GEMINI.md index 62085b2..33c3002 100644 --- a/GEMINI.md +++ b/GEMINI.md @@ -45,4 +45,10 @@ Based on the analysis of `mranderson.lua`, the following regularities and conven 14. **Indentation:** Use consistent indentation, likely 2 spaces, for code blocks to enhance readability. 15. **Comments:** Employ comments to explain complex logic, delineate code sections, or clarify non-obvious design choices. -16. **Code Sections:** Use comments (e.g., `--- INIT ---`, `--- UPDATE ---`, `--- DRAW ---`, `--- HELPERS ---`) to clearly delineate logical sections of the codebase. \ No newline at end of file +16. **Code Sections:** Use comments (e.g., `--- INIT ---`, `--- UPDATE ---`, `--- DRAW ---`, `--- HELPERS ---`) to clearly delineate logical sections of the codebase. + +--- + +## Agent Directives + +- **Git Operations:** In the future, do not perform `git add` or `git commit` operations. This responsibility will be handled by the user. \ No newline at end of file