GitHub path
Repository → Settings → Collaborators → Add people
Add agentrebench and keep access available through the end of judging.
Keep the full submission private, register only safe metadata publicly, and let AgentRE evaluate exactly the frozen commit resolved from your final tag.
agentre-challenge-entry.agentrebench as a collaborator.agentre-season-1-final.Repository → Settings → Collaborators → Add people
Add agentrebench and keep access available through the end of judging.
Do not place private repository URLs anywhere public. AgentRE infers the private repository from your GitHub handle and the required repository name, then uses collaborator access to clone the frozen commit privately.
agentre-challenge-entry/
├── README.md
├── submission.json
├── challenge.elf
├── SHA256SUMS
├── ground_truth.md
└── verification/ # only if requested
├── build.sh
└── src/
Public-safe metadata plus the final tag, resolved commit SHA, and binary checksum. Use the template below and keep it in the private repository.
The exact Linux x86-64 ELF binary AgentRE evaluates. It must remain under 10 MB.
SHA-256 digest for the submitted binary and any other critical artifacts needed for verification.
Private answer key and scoring guide. This file must not be pasted into the public registration PR or copied into AgentRE-Bench.
Finalist or prize-eligible entries may be asked to provide complete source code and non-networked build instructions here. These materials are used only for private verification and remain confidential unless the entrant chooses to publish them.
{
"github_handle": "example-user",
"challenge_title": "Example Challenge",
"architecture": "linux-x86_64",
"binary_path": "challenge.elf",
"final_tag": "agentre-season-1-final",
"final_commit_sha": "RESOLVED_FULL_40_CHARACTER_COMMIT_SHA",
"binary_sha256": "SHA256_OF_BINARY",
"public_handle": true,
"public_title": true
}
Do not paste ground truth into the public registration PR. Do not copy it into the AgentRE-Bench website repository. AgentRE will review it privately through collaborator access.
git tag agentre-season-1-final git push origin agentre-season-1-final
git rev-parse agentre-season-1-final^{commit}sha256sum challenge.elf
sha256sum -c SHA256SUMS
AgentRE evaluates only the commit resolved from the registered final tag before the deadline. Later branch changes do not affect the submitted entry, and moving or deleting the final tag may disqualify the entry.
AgentRE evaluates entries with the fixed tools exposed by the public harness and the official agentre-bench-tools:latest Docker image. Models may not generate and execute arbitrary Python or code in other programming languages. This prevents models from building custom analysis tools during evaluation and keeps comparisons fair and reproducible.
docker build --platform linux/amd64 -t agentre-bench-tools:latest -f Dockerfile.tools .