Get stable library content chunk
get_library_content_chunkRead one stable, citation-ready Project chunk with its source location and provenance.
When to use it
Resolve any stable Prism content citation exactly, including historical file, document, artifact, and canvas chunks.
Search chunks, read only the precise chunk or bounded text needed, cite ids.
Source text, chunks, snippets, ids, and citation-ready context.
Avoid using it when
Use get_library_file_chunk only for legacy file chunks that do not have a library_content_chunk id.
Advanced input contract
Agent hosts use this JSON Schema to validate the exact input shape.
View full registry notes
Resolve one authorized stable Prism citation by chunk id across files, documents, artifacts, and canvases. Historical superseded chunks remain readable for citation verification. Use when: Resolve any stable Prism content citation exactly, including historical file, document, artifact, and canvas chunks. Avoid when: Use get_library_file_chunk only for legacy file chunks that do not have a library_content_chunk id.
View JSON Schema
{
"type": "object",
"properties": {
"chunkId": {
"type": "string",
"format": "uuid"
}
},
"required": [
"chunkId"
],
"additionalProperties": false
}