What problem does it solve? When a deployed app backend fails or misbehaves, you cannot inspect it like a local process. This Skill explains how to retrieve build logs and runtime logs from the cloud so you can diagnose failed deployments, startup crashes, and container issues without guesswork. ## Core Features & Use Cases - Build Log Retrieval: Fetch logs from the most recent deployment to diagnose Dockerfile errors, npm install failures, and build-time issues. - Runtime Log Inspection: Stream console (stdout/stderr) or system logs from the running backend, with tail counts up to 300 entries. - Sidecar Container Filtering: Isolate logs from a specific container (e.g., api or a named sidecar) when multiple containers run together. - Use Case: Your app deploys successfully but crashes on startup. Run fusebase remote-logs runtime <appId> --tail 50 to see the unhandled exception, fix the code, and redeploy. ## Quick Start Ask the AI to fetch the runtime logs for your deployed app using fusebase remote-logs so you can diagnose why the backend is failing.