Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 891 Bytes

File metadata and controls

19 lines (15 loc) · 891 Bytes

Agents Instructions

Version control

  • Do not create branches or commits unless the engineer has explicitly asked for it. Make changes in the working tree and leave staging, branching, and committing to the engineer unless told otherwise.
  • The same applies to other history-affecting actions (rebases, amends, tags, pushes): only perform them when explicitly requested.

UI / colors

  • Never use colors that are hard to read against a terminal background. In particular, do not use Color::DarkGray for text — it maps to ANSI "bright black" and is nearly invisible on many terminals. Use Color::Gray (light grey) for dimmed/secondary text instead.
  • More generally, pick foreground colors that stay legible on both dark and light terminal themes; when in doubt prefer the standard ANSI named colors that respect the user's theme over fixed RGB values.