Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 880 Bytes

File metadata and controls

26 lines (18 loc) · 880 Bytes

quantcode-e2e-small

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.

Structure

packages/
  api/      Hono HTTP server — routes, middleware, in-memory DB
  shared/   Shared types and utilities consumed by the API

Running tests

bun test --recursive

Known issues (intentional — for agent testing)

  1. packages/api/src/middleware/auth.ts — method check uses 'post' instead of 'POST'
  2. packages/shared/src/types.tsUser.userName should be username to match API usage
  3. packages/api/src/routes/users.tsbadRequest is used but not imported
  4. packages/shared/src/utils/pagination.tspaginate() is not implemented (stub throws)