What problem does it solve? When a deployed application misbehaves, developers often lack visibility into what is happening in production. This Skill retrieves deployment logs from the current Repl so you can diagnose runtime errors, startup failures, and unexpected behavior without leaving your workspace. ## Core Features & Use Cases - Time-Range Filtering: Fetch logs after or before specific Unix timestamps to focus on the window when an issue occurred. - Regex Message Filtering: Use RE2 regular expressions to isolate errors, warnings, database issues, or any pattern in log messages. - Context Lines: Retrieve surrounding lines before and after each match, similar to grep -C, to understand the full error context. - Use Case: A user reports their deployed site returns errors. You fetch logs from the last hour filtered by "ERROR" with 10 lines of context, identify a database connection failure, and pinpoint the root cause. ## Quick Start Ask the assistant to fetch deployment logs from the last hour and show any errors to debug why the deployed app is failing.