Sharp Edges Living catalogue of confirmed hazard patterns in agent-studio. Each entry documents a real bug we've shipped. Invoke this skill during debugging and code review to check against known failure modes. SE-01: Windows Backslash Paths Symptom: Glob patterns match correctly in CI (Linux) but silently fail on developer machines (Windows). Root cause: returns backslash-separated paths on Windows ( ), but glob patterns use forward slashes. in regex won't block . Fix: Test assertion: Files affected: , any glob-based exclusion logic. --- SE-02: Prototype Pollution via JSON.parse Symptom: gai…