Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ node_modules
.env*.local
.claude
evals/**/output-*/.worktrees/
.DS_Store
.next

solution/
15 changes: 15 additions & 0 deletions EVAL_PROMPT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
We are completing the Next.js evals here.

solution/ folders have already been bootstrap in each project folder in evals/.

Go through each one and read the prompt.md to understand the task, then implement the solution in the solution/ folder.

Run `npm run build` in each solution/ folder to lint, build, and test the solution.

It's possible the tests are fragile and need to be updated. If so, update the tests in the project folder in evals/.

Do not hack the tests to make your solution pass. Instead, update the tests to be more robust.

See EVAL_DEBUGGING.md for more information on the evals.

You goal is to implement a solution that passes the build and tests. Ideally, without changing the tests unless they are clearly wrong.
Loading