From f6d9fc8124c5ab6e9216a7b902e045b1cda61673 Mon Sep 17 00:00:00 2001 From: Agent Zero Date: Fri, 21 Aug 2026 22:15:28 +0200 Subject: [PATCH] docs: BUG-024 (Plugin Detail Route fehlt), BUG-025 (Workflow Execute/Instances API-Pfade falsch) --- docs/test-bugs.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/test-bugs.md b/docs/test-bugs.md index a2ddca2..6977433 100644 --- a/docs/test-bugs.md +++ b/docs/test-bugs.md @@ -242,3 +242,23 @@ Jeder Bug wird wie folgt dokumentiert: - **Tatsächlich:** 1 potential sync I/O (time.sleep, open(), requests.get/post) - **Schweregrad:** Low - **Status:** ⏳ Nicht gefixt + +### BUG-024: Plugin Detail Route fehlt (GET /api/v1/plugins/{name} gibt 404) +- **Kategorie:** API +- **Modul:** Plugins +- **Endpoint:** GET /api/v1/plugins/{name} +- **Erwartet:** 200 mit Plugin-Details +- **Tatsächlich:** 404 Not Found für alle Plugins +- **Schweregrad:** Medium +- **Ursache:** Es gibt `/{name}/config`, `/{name}/activate`, `/{name}/deactivate` aber keine reine `GET /{name}` Route +- **Status:** ⏳ Nicht gefixt + +### BUG-025: Workflow Execute und Instances API-Pfade falsch +- **Kategorie:** API +- **Modul:** Workflows +- **Endpoint:** POST /api/v1/workflows/{id}/execute, GET /api/v1/workflows/{id}/instances +- **Erwartet:** 200/201 für Execute und Instances +- **Tatsächlich:** 405 Method Not Allowed für Execute, 404 für Instances +- **Schweregrad:** Medium +- **Ursache:** Execute ist `POST /{workflow_id}/instances` nicht `POST /{workflow_id}/execute`. Instances sind unter `/instances` (global) nicht unter `/{workflow_id}/instances` +- **Status:** ⏳ Nicht gefixt — API-Pfade in Doku/Test korrigieren