What problem does it solve? Running distributed task queues without visibility makes it hard to monitor consumers, retry failed messages, and manage scheduled jobs. This Skill guides you through starting and using funboost's built-in Flask web console (funweb) so you can inspect queue depth, consumer status, consumption curves, and re-deliver failed messages from a browser. ## Core Features & Use Cases - Web Console Startup: Launch the management UI via python -m funboost.funweb.app or start_funboost_web_manager() in code, with correct PYTHONPATH and Redis configuration. - Queue Operations: View queue depth, clear queues, inspect online consumers by IP or queue name, and read full BoosterParams configurations. - Failure Recovery & Scheduling: Re-deliver failed messages from the function result table, and manage APScheduler cron/interval/date jobs stored in Redis. - Use Case: A team runs Redis-backed funboost consumers across multiple machines and needs a single dashboard to watch consumption rates, find which worker died, and re-run failed tasks without touching code. ## Quick Start Ask the AI to start the funboost web manager on port 27018 with heartbeat and result persistence enabled so you can log in at http://127.0.0.1:27018 and inspect your queues.