From c23bddd44685e33c1d6b380ca141abf26413700c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D7=A0=CF=85=CE=B1=CE=B7=20=D7=A0=CF=85=CE=B1=CE=B7=D1=95?= =?UTF-8?q?=CF=83=CE=B7?= Date: Wed, 4 Mar 2026 17:08:26 -0800 Subject: [PATCH] docs(readme): clarify agent details vs Facts map MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Distinguish between structured typed fields (OS, CPU, memory, network interfaces) returned by Agent.Get() and the open-ended Facts map for additional agent-side provider data. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6b3489c..2dfac95 100644 --- a/README.md +++ b/README.md @@ -47,9 +47,9 @@ the request: | `hostname` | Send to a specific host | | `key:value` | Send to agents matching a label | -Agents expose labels (used for targeting) and extended system facts via -`client.Agent.Get()`. Facts come from agent-side providers and include OS, -hardware, and network details. +Agents expose labels (used for targeting) and structured system details +(OS, CPU, memory, network interfaces) via `client.Agent.Get()`. An +additional `Facts` map carries open-ended data from agent-side providers. ## 🔀 Orchestration