diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 000000000..54119b593 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,15 @@ +# Codex Instructions + +## Verification Commands + +Run .NET restore, build, and test commands outside the sandbox by default in this repo. Sandboxed .NET commands can stall on NuGet/package/compiler cache access, while the same commands complete normally with approved unsandboxed execution. + +Preferred verification commands: + +```bash +TZ=UTC dotnet restore ErsatzTV.sln -v minimal +TZ=UTC dotnet build ErsatzTV.sln --no-restore -v minimal +TZ=UTC dotnet test ErsatzTV.sln --no-build -v minimal +``` + +Use scoped escalated execution for these commands rather than first trying a sandboxed run.