From e1b620ace2020036780d863fe8bb13e9d567b269 Mon Sep 17 00:00:00 2001 From: Jeremy Cohn Date: Thu, 27 Aug 2026 12:26:02 -0700 Subject: [PATCH] docs: align context help with Agent Context Infrastructure Signed-off-by: Jeremy Cohn --- README.md | 15 +++++++++------ cmd/contexts.go | 8 ++++---- cmd/contexts_test.go | 1 + 3 files changed, 14 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9e7e81a..5e60215 100644 --- a/README.md +++ b/README.md @@ -29,13 +29,16 @@ rossoctl login rossoctl agents list ``` -## Agent context infrastructure +## Agent Context Infrastructure -`rossoctl context` creates, lists, and attaches the context resources provided -by Rosso's optional Context Service integration. See Rosso's canonical -[Context Service documentation](https://github.com/rossoctl/rossoctl/blob/main/docs/concepts/context-service.md) -for the resource model, storage behavior, and lifecycle. The underlying service -is maintained in the +Agent Context Infrastructure makes workspaces, memory, knowledge, artifacts, and +related runtime state available to agents. It is distinct from the finite context +window sent to an LLM. + +`rossoctl context` creates, lists, and attaches these resources through Rosso's +optional Context Service integration. See Rosso's canonical +[Agent Context Infrastructure documentation](https://github.com/rossoctl/rossoctl/blob/main/docs/concepts/context-service.md) +for the resource model, storage behavior, and lifecycle. The component is maintained in the [context-service repository](https://github.com/rossoctl/context-service). ```sh diff --git a/cmd/contexts.go b/cmd/contexts.go index ff2a13d..268c0a6 100644 --- a/cmd/contexts.go +++ b/cmd/contexts.go @@ -226,10 +226,10 @@ func init() { contextsCmd.Aliases = []string{"context"} contextsCmd.Long = `Manage durable context infrastructure for agents. -Context resources make files available to agents as workspaces, memory, -knowledge, or artifacts. They are distinct from rossoctl configuration -contexts and from an LLM's finite context window. The current backend is -PVC-backed storage mounted into StatefulSet or Sandbox agents. +This is Rosso's Agent Context Infrastructure: context resources make files +available to agents as workspaces, memory, knowledge, or artifacts. +They are distinct from rossoctl configuration contexts and from an LLM's finite context window. +The current backend is PVC-backed storage mounted into StatefulSet or Sandbox agents. Learn more: https://github.com/rossoctl/rossoctl/blob/main/docs/concepts/context-service.md` diff --git a/cmd/contexts_test.go b/cmd/contexts_test.go index 03a9a0d..e24198c 100644 --- a/cmd/contexts_test.go +++ b/cmd/contexts_test.go @@ -241,6 +241,7 @@ func TestContextGroupHelpDefinesContextInfrastructure(t *testing.T) { } for _, expected := range []string{ "durable context infrastructure for agents", + "Agent Context Infrastructure", "distinct from rossoctl configuration", "LLM's finite context window", "PVC-backed storage",