Introduction In the previous post we set up Huginn in Docker, giving you your own self-hosted automation platform. Now it’s time to do something fun with it! In this guide, we’ll walk through creating a Huginn Scenario that checks the daily weather forecast and tells you what to wear when heading outside. Scenarios are containers of agents, and have properties that we will make use of in future posts. This scenario will: Use a weather API to get your local forecast Analyze temperature and conditions Recommend clothing (e.g., "wear a jacket" or "shorts are fine today") Send you the advice by email or another notification agent Let’s get started! Step 1: Create a New Scenario In Huginn, a Scenario is a collection of agents that work together. After logging into your Huginn dashboard: Click Scenarios on the top nav bar Click New Scenario Choose an appropriate icon, such as the cloud Name it something like Weather Outfit Advisor (Optional) Add ...
Comments