Loading lesson…
Use profiles to separate personal, classroom, local, and production agent behavior without rewriting the app.
This build lab focuses on the configuration layer that lets one codebase behave like several safe agents. 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.
Profiles give each agent home its own config, memory, tools, model defaults, and delivery settings.
| Hermes pattern | Student build | Risk to handle |
|---|---|---|
| Name the boundary | a profile matrix that compares demo, classroom, local-private, and production profiles | accidentally sharing memory, tokens, tools, or delivery channels between users or environments |
| 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 |
profiles: demo: home: ./profiles/demo model: mock-fast tools: [calculator, lesson_search] delivery: none local_private: home: ~/.agent/private model: local-hermes tools: [filesystem_read] delivery: desktop production: home: /app/agent-home model: routed tools: [approved_actions] delivery: emailA classroom-safe skeleton inspired by the local Hermes architecture scan.The big idea: profile 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-profile-config-layer-creators
What is the main idea of "Profiles and Config: Let One Agent Have Many Homes"?
Which concept is most central to "Profiles and Config: Let One Agent Have Many Homes"?
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 profile be treated?
Name one way to verify an AI answer about profile.
Which action would help you apply "Profiles and Config: Let One Agent Have Many Homes" responsibly?