From c6b30d205299db98e30ca352cdf6af2eeacc3463 Mon Sep 17 00:00:00 2001 From: Dave Date: Mon, 23 Feb 2026 13:52:10 +0000 Subject: [PATCH] story-kit: create 71_bug_server_health_endpoint_missing --- .../71_bug_server_health_endpoint_missing.md | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .story_kit/work/1_upcoming/71_bug_server_health_endpoint_missing.md diff --git a/.story_kit/work/1_upcoming/71_bug_server_health_endpoint_missing.md b/.story_kit/work/1_upcoming/71_bug_server_health_endpoint_missing.md new file mode 100644 index 0000000..c59d8ee --- /dev/null +++ b/.story_kit/work/1_upcoming/71_bug_server_health_endpoint_missing.md @@ -0,0 +1,23 @@ +# 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