i need to update the terminology of 'capabilities' to 'feature coverage' in the inspector ui and anywhere else its mentioned thats not in the actual api

This commit is contained in:
Nathan Flurry 2026-02-02 09:23:10 -08:00
parent 553f249836
commit 4a56389b42
11 changed files with 35 additions and 32 deletions

View file

@ -51,7 +51,7 @@ await client.createSession("demo-session", {
await client.postMessage("demo-session", { message: "Hello" });
```
List agents and pick a compatible one:
List agents and inspect feature coverage (available on `capabilities`):
```ts
const agents = await client.listAgents();
@ -142,7 +142,7 @@ Parameters:
## Types
The SDK exports OpenAPI-derived types for events, items, and capabilities:
The SDK exports OpenAPI-derived types for events, items, and feature coverage:
```ts
import type { UniversalEvent, UniversalItem, AgentCapabilities } from "sandbox-agent";