All tools
ToolRead
List Project changes
list_project_changesYou need the user's accessible workspace map or a compact context pack.
When to use it
You need the user's accessible workspace map or a compact context pack.
Typical workflow
Orient first, then choose the smallest task-specific tool.
What it returns
Workspace availability, recent objects, tool routing, or query-focused context.
Avoid using it when
You already have the exact source, draft, post, artifact, or portfolio id.
Advanced input contract
Agent hosts use this JSON Schema to validate the exact input shape.
View full registry notes
Read a bounded, resumable audit feed for one authorized Prism Project. Events include a normalized change kind, actor category, stable resource identity, and any recorded revision. Reauthorization is checked on every page, including cursor resumes.
View JSON Schema
{
"type": "object",
"properties": {
"projectId": {
"type": "string",
"format": "uuid"
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 50
},
"cursor": {
"type": "string",
"description": "Opaque nextCursor for older history pages."
},
"sinceCursor": {
"type": "string",
"description": "Opaque resumeCursor from a previous response. Returns only subsequently committed changes in ascending sequence order."
}
},
"required": [
"projectId"
],
"additionalProperties": false
}