From 598fec5aeb3ba4b0970f911a841158b6acceac3d Mon Sep 17 00:00:00 2001 From: Ryan Hamamura <58859899+ryanhamamura@users.noreply.github.com> Date: Mon, 2 Mar 2026 23:07:38 -1000 Subject: [PATCH] docs: add AGENTS.md with PR-based development workflow --- .gitignore | 1 + AGENTS.md | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 AGENTS.md diff --git a/.gitignore b/.gitignore index 90c8dd5..26b0262 100644 --- a/.gitignore +++ b/.gitignore @@ -19,6 +19,7 @@ !.env.example !LICENSE +!AGENTS.md !assets/**/* diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..8ccde46 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,10 @@ +# Agent Instructions + +## Development Workflow + +Never push directly to `main`. The correct process is: + +1. Create a feature branch from `main`. +2. Make commits on the feature branch. +3. Push the branch and open a pull request. +4. Wait for the user to review and merge.