Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions cmd/contexts.go
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
1 change: 1 addition & 0 deletions cmd/contexts_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down