Osloq — ให้ AI reproduction เวลาเกิด bug
Osloq is an AI agent designed to act as a 'bug detective' rather than a typical AI coding tool that simply offers to fix bugs. When a GitHub issue is opened, Osloq reads it, traces the code, reproduces the bug in a sandbox environment, and then sends a report with evidence. For example, given an issue about a submit button not working on Safari, Osloq would trace from the handler to the service to the DOM event, reproduce the issue by running Safari in a sandbox, capture logs, screenshots, and call stacks, and then conclude that the event listener used 'click' but Safari on iOS 18 does not bubble the event, requiring 'pointerdown' instead. This approach provides developers with a clear understanding of the bug's cause and evidence, rather than just an automated fix that might break other things.
Developers get root-cause analysis and evidence instead of blind fixes, reducing risk of regressions.