Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 1.41 KB

File metadata and controls

24 lines (20 loc) · 1.41 KB

AGENTS.md

Mission

Use Codex/LLMs to explore ideas, prototypes, and design alternatives only. Any LLM-produced code or content must not be committed to the repository.

Absolute Rules

  • No LLM-written code may be committed. This includes direct code, generated tests, configs, migrations, scripts, or documentation intended for production use.
  • LLM work is for experimentation and throwaway prototypes only. If a change is worth keeping, a human must rewrite or re-implement it from scratch before committing.
  • Do not stage, commit, or open PRs containing LLM-authored code or text. If you created files, clearly mark them as prototypes and remove them before any commit.

Review Guidelines

  • Focus only on critical security, reliability, performance, and scalability issues.
  • Ignore style, performance micro-optimizations, and readability nits unless they are tied to a significant failure

What to Look For

  • Authentication/authorization bypasses
  • Secret leakage, unsafe logging, or credential exposure
  • Unsafe defaults in security-sensitive areas
  • Injection risks (SQL, command, template, path traversal, SSRF)
  • Insecure crypto usage or key handling
  • Privilege escalation or sandbox escapes
  • Data corruption, durability failures, or irreversible loss scenarios
  • Concurrency hazards that can cause outages or data races
  • Reliability regressions: crash loops, panics, deadlocks, unbounded retries