Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 532 Bytes

File metadata and controls

25 lines (20 loc) · 532 Bytes

AGENTS.md

All AI coding agents working in this repository must follow AI Engineering Operating System.

Required loop

flowchart TD
    A[Goal] --> B[Load context]
    B --> C[Plan]
    C --> D[Work]
    D --> E[Verify]
    E --> F{Done?}
    F -- No --> D
    F -- Yes --> G[Report]
Loading

Agent rules

  • Load context before editing.
  • Plan before implementation.
  • Work in small reversible steps.
  • Verify with available tools.
  • Update docs and wiki sources when public docs change.
  • Report evidence honestly.