Artifacts are the underlying documents, recordings, and source files behind processes — BRDs, SOPs, video recordings, screenshots, audio, diagrams, logs.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.
| Tool | When to use |
|---|---|
search_artifacts | Hybrid semantic + lexical search across artifact text chunks. Returns short snippets. Start here for artifact discovery. |
search_workspace_artifacts | Lookup by display name. |
get_artifact_detail | Latest artifact matching exact display name or resource key. |
get_artifact_details | Full metadata + content (~15k token cap). |
get_artifact_content | Full text up to ~15k tokens. |
get_artifact_lines | Line-numbered text up to ~5k tokens. Use when you need to cite specific lines. |
search_artifact_text | Within one artifact, find line-numbered matches. |
get_artifact_screenshots | Pull PNG screenshots from a VIDEO artifact at specific timestamps. |
sample_video_frames | Same idea — up to 5 timestamps, returns image files. |
Artifact types and origins
| Field | Values |
|---|---|
| Type | video, audio, document, diagram, log, image, folder, rav_session_data, session_analysis |
| Origin | user_input, system_input, ai_generated, system_processed, gold_document |
Common chains
- Cite a passage:
search_artifacts→get_artifact_lineswith the line range → quote the lines back to the user - Read a full SOP:
search_workspace_artifacts(exact name) →get_artifact_detail→get_artifact_content - Pull a frame from a recording:
search_artifacts→get_artifact_screenshotswith the timestamps the user cares about - Search inside one artifact:
get_artifact_detail→search_artifact_textto find specific mentions

