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.
15 questions · take it digitally for instant feedback at tendril.neural-forge.io/learn/quiz/end-hermes-profile-config-layer-creators
What is the core idea behind "Profiles and Config: Let One Agent Have Many Homes"?
Which term best describes a foundational idea in "Profiles and Config: Let One Agent Have Many Homes"?
A learner studying Profiles and Config: Let One Agent Have Many Homes would need to understand which concept?
Which of these is directly relevant to Profiles and Config: Let One Agent Have Many Homes?
Which of the following is a key point about Profiles and Config: Let One Agent Have Many Homes?
Which of these does NOT belong in a discussion of Profiles and Config: Let One Agent Have Many Homes?
What is the key insight about "From the local Hermes scan" in the context of Profiles and Config: Let One Agent Have Many Homes?
What is the key insight about "Safety pitfall" in the context of Profiles and Config: Let One Agent Have Many Homes?
What is the key warning about "Scope your agents tightly" in the context of Profiles and Config: Let One Agent Have Many Homes?
Which statement accurately describes an aspect of Profiles and Config: Let One Agent Have Many Homes?
What does working with Profiles and Config: Let One Agent Have Many Homes typically involve?
Which of the following is true about Profiles and Config: Let One Agent Have Many Homes?
Which best describes the scope of "Profiles and Config: Let One Agent Have Many Homes"?
Which section heading best belongs in a lesson about Profiles and Config: Let One Agent Have Many Homes?
Which of the following is a concept covered in Profiles and Config: Let One Agent Have Many Homes?