truefoundry/trueforge

Update /healthz to return JSON status payload

Open

#378 opened on Aug 20, 2026

 (1 comment) (0 reactions) (1 assignee)TypeScript (15 forks)github user discovery
good first issue

Repository metrics

Stars
 (664 stars)
PR merge metrics
 (PR metrics pending)

Description

Description

The /healthz endpoint currently returns the plain text OK!. It should return a JSON payload instead.

Expected behavior

Return:

{ "status": "ok", "version": "<PACKAGE_VERSION>" }

PACKAGE_VERSION is already imported in app.ts, so this should be a small, self-contained change.

Contributor guide