Context SpacesDashboard testing

Dashboard testing

Inspect Context Spaces, sources, skills, and context events in the embedded dashboard.

The embedded dashboard shows registered Context Spaces from runtime metadata.

Dashboard examples

Context Spaces dashboard

This view confirms that the runtime registered the travel-planning Context Space and shows its source and attached agent counts.

Context source preview

The source preview lets you inspect a selected document exactly as the dashboard will make it available for source search and debugging.

Context events in agent run

The agent run stream shows the loaded skill and selected source excerpts before the provider response, which makes context usage visible during testing.

What to inspect

Dashboard areaWhat it shows
Context Spaces listRegistered context spaces and high-level metadata.
SourcesSource ids, names, kinds, paths, and document counts.
Source documentsReadable documents grouped by source.
Source previewSupported document content preview.
SkillsDiscovered SKILL.md files, version, tags, and descriptions.
Attached agentsAgents that use the Context Space.
Agent run eventsskill_loaded, context_provided, and context_searched stream events.

Test Travel Agent

Use a prompt that should retrieve source context:

Text
Create a practical two-day Istanbul plan focused on historic places and light walking.

Expected behavior:

AreaWhat to inspect
Context Spacetravel-planning should be attached to Travel Agent.
Skill eventThe trip planning skill can appear as loaded.
Search eventThe run can show searched documents and selected source results.
Final answerThe answer should use retrieved city-guide context when relevant.

Use a prompt for a city with weak or missing source coverage:

Text
Create a short two-day Tokyo plan based on the attached sources.

Expected behavior:

AreaWhat to inspect
Search resultsSource search may find no relevant Tokyo guide.
Final answerThe agent should be transparent if attached context does not contain relevant destination information.

Useful endpoints

With dashboard path /dashboard, source document APIs are available under:

HTTP
GET /dashboard/api/context-spaces/{contextSpaceId}/source-documents
GET /dashboard/api/context-spaces/{contextSpaceId}/source-documents/preview?sourceId={sourceId}&path={path}
GET /dashboard/api/context-spaces/{contextSpaceId}/skill-documents
GET /dashboard/api/context-spaces/{contextSpaceId}/skill-documents/preview?skillId={skillId}

These endpoints are read-only dashboard APIs.

On this page