Skip to main content

Documentation Index

Fetch the complete documentation index at: https://developers.klarity.ai/llms.txt

Use this file to discover all available pages before exploring further.

The Context Graph is the layer that sits beneath the Process Index and Process observations. It holds the entities, communities, relationships, claims, and text chunks derived from the underlying artifacts — the raw material from which the Process Index is constructed. Querying the graph is querying that raw layer directly.
For most agent use cases, prefer the Process Index and Process observations — they’re the higher-order abstractions on top of this raw layer and handle entity resolution and disambiguation for you. Reach for the Context Graph directly when you need to query the underlying entities, claims, or chunks the Process Index aggregated from.

What lives in the graph

ObjectWhat it represents
EntityA specific thing in the organization: a system, team, person, control, policy, or named concept
RelationshipA typed edge between two entities — handoff, dependency, ownership, supports, etc.
CommunityA cluster of entities that frequently appear together; represents a sub-area of how the org works
ClaimA specific statement extracted from an artifact, attached to one or more entities
Text chunkThe source passage of text behind a claim

What you ask of it

User questionTool to start with
”Find the entity for X”search_knowledge_graph
”What does System X cover?”get_entity_details
”What feeds this?”get_upstream_sources
”What breaks if this changes?”get_downstream_dependencies
”Map the area around this entity”explore_graph_neighbors
”Summarize this community”summarize_community_subgraph

Always follow up search with detail

search_knowledge_graph returns starting points — entities, communities, claims, chunks — with short snippets. Never answer from those snippets alone. Always chain into one of the get_* or explore_* tools to read the full entity, walk the neighborhood, or pull the supporting text chunk. The snippets are the lookup, not the answer. See Tools by purpose → Context Graph for the full toolset.