story-kit: queue 71_bug_server_health_endpoint_missing for merge

This commit is contained in:
Dave
2026-02-23 14:12:02 +00:00
parent 4edf136f38
commit a3183f21db

View File

@@ -1,28 +0,0 @@
---
name: Server health endpoint missing
test_plan: pending
---
# Bug 71: Server health endpoint missing
## Description
GET /api/health returns 404 not found. The server should have a health check endpoint that returns a 200 OK response so monitoring tools and scripts can verify the server is running.
## How to Reproduce
1. Start the story-kit server
2. curl http://localhost:3001/api/health
3. Observe 404 not found response
## Actual Result
404 not found
## Expected Result
200 OK with a simple health status response (e.g. {"status": "ok"})
## Acceptance Criteria
- [ ] Bug is fixed and verified