You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dashboard: autodev --status displays a table of all tracked issues with their state, project, MR link, and contextual comments. Color-coded by status with a summary line.
Fixed
Fix clarification detection: compare timestamps as parsed Time objects instead of raw strings. SQLite's datetime('now') format and GitLab's ISO 8601 format were compared lexicographically, causing needs_clarification issues to never detect human replies.
Fix clarification_requested_at stored as literal string "datetime('now')" instead of evaluated timestamp. Sequel.lit() is not interpreted by Sequel::Model#update — use dataset-level update instead.
Fix GitLab image download failing with 302: follow HTTP redirects (up to 3 hops) when downloading issue attachments. GitLab redirects authenticated upload URLs, and Net::HTTP does not follow redirects automatically.