Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 548 Bytes

File metadata and controls

13 lines (7 loc) · 548 Bytes

Agent Guidelines

Git Commit Messages

Git commit messages should be concise and limited to a single line.

Code Comments

When generating code, include comments only when necessary. Avoid adding excessive comments to explain self-evident code.

User Interaction

Do not predict next steps. Only make changes that are explicitly requested by the user. Do not proactively modify other parts of the codebase or assume what the user wants to do next. Wait for the user's explicit instructions before proceeding with additional changes.