Loading lesson…
Teach students to protect secrets and private context while still keeping enough evidence to debug agent behavior.
This build lab focuses on the logging boundary that protects secrets while preserving accountability. 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.
Redaction should happen before logs leave the process, and audit logs should record action, actor, approval, result, and risk without exposing sensitive values.
| Hermes pattern | Student build | Risk to handle |
|---|---|---|
| Name the boundary | a redaction checklist and audit-log schema for agent actions | logging tokens, private messages, auth headers, prompts with personal data, or raw tool outputs into a dashboard |
| 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 |
audit_event:
time: 2026-04-27T12:00:00Z
actor: student-demo
action: send_email_draft
approval: teacher_confirmed
inputs_redacted: true
result: draft_created
risk: medium
Never log:
- tokens
- auth headers
- private message bodies
- service-role keysA classroom-safe skeleton inspired by the local Hermes architecture scan.The big idea: redaction 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-redaction-audit-creators
What is the core idea behind "Redaction and Audit Logs for Agent Systems"?
Which term best describes a foundational idea in "Redaction and Audit Logs for Agent Systems"?
A learner studying Redaction and Audit Logs for Agent Systems would need to understand which concept?
Which of these is directly relevant to Redaction and Audit Logs for Agent Systems?
Which of the following is a key point about Redaction and Audit Logs for Agent Systems?
Which of these does NOT belong in a discussion of Redaction and Audit Logs for Agent Systems?
What is the key insight about "From the local Hermes scan" in the context of Redaction and Audit Logs for Agent Systems?
What is the key insight about "Safety pitfall" in the context of Redaction and Audit Logs for Agent Systems?
What is the key warning about "Scope your agents tightly" in the context of Redaction and Audit Logs for Agent Systems?
Which statement accurately describes an aspect of Redaction and Audit Logs for Agent Systems?
What does working with Redaction and Audit Logs for Agent Systems typically involve?
Which of the following is true about Redaction and Audit Logs for Agent Systems?
Which best describes the scope of "Redaction and Audit Logs for Agent Systems"?
Which section heading best belongs in a lesson about Redaction and Audit Logs for Agent Systems?
Which of the following is a concept covered in Redaction and Audit Logs for Agent Systems?