SkillGuard: complete frontend wiring and harden backend
Original task: build "SkillGuard", a German web app to audit agent skills on
two axes (IT-Sicherheit, Datenschutz) with static rule engine + Replit-independent
AI analysis configured via an admin backend.
This session:
- Fixed frontend TS errors: lucide-react name collisions (Badge from ui, Activity
from lucide), widened apiType to AiProviderApiType, added queryKey to useGetScan.
- Verified all pages render in German (Dashboard, Prüfen, Bericht, Verlauf, Admin)
and the full scan flow works end-to-end (malicious sample -> verdict block).
Code-review-driven hardening:
- POST /api/scans now returns the full ScanDetail (files + findings) to match the
OpenAPI contract, instead of only the summary.
- AI provider error bodies are redacted (token, Bearer, sk- patterns) before being
returned/persisted, and provider fetches now have a 60s timeout.
- ZIP parsing now enforces limits (max files, total + per-file size) to mitigate
zip-bomb DoS.
Updated replit.md (project overview, decisions, gotchas) and added a memory note
on lucide-react icon name collisions.
2026-06-08 14:59:17 +00:00
- [lucide-react icon name collisions ](lucide-icon-name-collisions.md ) — `Badge` /`Activity` from lucide collide with shadcn/ui Badge and React 19 Activity; import Badge from ui, Activity from lucide.
2026-06-10 13:56:15 +00:00
- [OpenAI gpt-5 temperature ](openai-temperature-gpt5.md ) — gpt-5* reject `temperature != 1` ; omit temperature in OpenAI-compatible clients or AI analysis silently fails.
2026-06-10 18:53:17 +00:00
- [NDJSON streaming on Replit ](ndjson-streaming-express-replit.md ) — use `res.on("close")` +`writableFinished` (NOT `req.on("close")` ); persist on disconnect; proxy doesn't buffer; gate fallback to avoid dup rows.