mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-29 18:46:59 +00:00
docs(telemetry): disclose local profile identity
Signed-off-by: Alex Fournier <afournier@nvidia.com>
This commit is contained in:
parent
31387a4621
commit
e1a6becf86
3 changed files with 16 additions and 0 deletions
|
|
@ -1408,6 +1408,8 @@ display:
|
|||
# Shared metrics are disabled by default. When enabled, Hermes writes only
|
||||
# allowlisted aggregate counters and immutable JSON
|
||||
# packages under $HERMES_HOME/telemetry/shared_metrics; it does not upload them.
|
||||
# Packages include a random profile-scoped ID that stays stable until this
|
||||
# directory is deleted. It is not derived from hardware, account, or host data.
|
||||
telemetry:
|
||||
shared_metrics:
|
||||
enabled: false
|
||||
|
|
|
|||
|
|
@ -74,6 +74,19 @@ The database keeps transactional aggregate and package-outbox state. Package
|
|||
files are immutable delta documents that conform to a closed JSON schema and
|
||||
are written with atomic replacement.
|
||||
|
||||
Each package contains an `install_id` generated as a random UUID. Despite the
|
||||
schema field name, its current scope is one `HERMES_HOME`, so it is more
|
||||
precisely a persistent pseudonymous profile identifier. It is not derived from
|
||||
hardware, account, host, path, or credential data. It remains stable across
|
||||
packages from that profile and can therefore link those local packages.
|
||||
Deleting `$HERMES_HOME/telemetry/shared_metrics` resets the identifier together
|
||||
with all aggregates and package files.
|
||||
|
||||
This slice has no remote-delivery path. A future remote exporter must not reuse
|
||||
the persistent local identifier by default. It requires a separate product and
|
||||
privacy decision covering consent, identity scope, rotation or keyed
|
||||
pseudonymization, reset behavior, retention, and deletion.
|
||||
|
||||
## Smoke Test
|
||||
|
||||
Run a real Hermes CLI turn against the deterministic local model server:
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@
|
|||
"$ref": "#/$defs/uuid"
|
||||
},
|
||||
"install_id": {
|
||||
"description": "Random persistent identifier scoped to one HERMES_HOME; local-only in schema v1.",
|
||||
"$ref": "#/$defs/uuid"
|
||||
},
|
||||
"period_start": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue