Tier 2 corpus for the QuantCode autonomous agent e2e harness.
A small TypeScript HTTP API (Hono) with a shared utilities package. Contains intentional bugs and unimplemented stubs for the agent to find and fix.
packages/
api/ Hono HTTP server — routes, middleware, in-memory DB
shared/ Shared types and utilities consumed by the API
bun test --recursivepackages/api/src/middleware/auth.ts— method check uses'post'instead of'POST'packages/shared/src/types.ts—User.userNameshould beusernameto match API usagepackages/api/src/routes/users.ts—badRequestis used but not importedpackages/shared/src/utils/pagination.ts—paginate()is not implemented (stub throws)