Skip to main content
wiring/next-route
check: wiring/next-route · error_code: E-WIRE-003 · doctor exits: 1

What you’re seeing

Every request from the client to /api/vendo/* has nowhere to land. The app builds and runs; the wire itself is absent.

Why

Doctor looked for the catch-all handler at exactly app/api/vendo/[...vendo]/route.ts or src/app/api/vendo/[...vendo]/route.ts and found neither. Doctor checks only these two paths, so a handler mounted somewhere else still fails this check.

The fix

Run npx vendo init; it scaffolds the route for you.
If you composed the wire by hand, create the route yourself at one of the two paths above:
app/api/vendo/[...vendo]/route.ts
Re-run npx vendo doctor once the file exists at the expected path.
  • E-WIRE-004: the route exists but nothing mounts the client provider
  • E-WIRE-009: the route exists but server actions aren’t registered in it
  • E-WIRE-006: the route exists but nothing visible reaches the agent