Loading lesson…
Create a delivery router so agent outputs land in the right channel, format, and approval state.
This build lab focuses on the delivery layer that decides where finished agent work should go. The goal is not to copy a private machine setup. The goal is to learn the architecture pattern well enough to build a small, classroom-safe version.
Delivery is a policy decision: some outputs stay local, some create drafts, some send notifications, and some require explicit approval.
| Hermes pattern | Student build | Risk to handle |
|---|---|---|
| Name the boundary | a delivery matrix for local console, email, Discord, dashboard, and teacher review queue | letting background jobs post public messages or emails without a human review path |
| Keep the interface small | Start with one happy path and one failure path | Avoid a demo that only works when everything is perfect |
| Make the system observable | Log decisions, status, and errors in plain language | Do not log private data or secrets |
delivery_policy: lesson_digest: channel: teacher_dashboard approval: none parent_email: channel: email_draft approval: required public_discord_post: channel: discord approval: required local_debug: channel: console approval: noneA classroom-safe skeleton inspired by the local Hermes architecture scan.The big idea: delivery router is not decoration. It is part of the product architecture students need before an agent becomes safe enough to use with real people.
8 questions · take it digitally for instant feedback at tendril.neural-forge.io/learn/quiz/end-hermes-delivery-router-creators
What is the main idea of "Delivery Routing for Cron and Agent Outputs"?
Which concept is most central to "Delivery Routing for Cron and Agent Outputs"?
Which use of AI fits this topic best?
What should a careful learner remember about "From the local Hermes scan"?
You want to use AI after this lesson. What is the safest next step?
How should AI output about delivery router be treated?
Name one way to verify an AI answer about delivery router.
Which action would help you apply "Delivery Routing for Cron and Agent Outputs" responsibly?