assetcore_query_container_history
AssetCore is a deterministic structured memory substrate. It stores all world state explicitly in containers and modifies that state through atomic, replayable transactions. Inspect the commit history for a specific container (memory region) to understand its evolution.
Details
AssetCore is a deterministic structured memory substrate. It stores all world state explicitly in containers and modifies that state through atomic, replayable transactions. Inspect the commit history for a specific container (memory region) to understand its evolution.
Hits /v1/read/namespaces/{namespace_id}/containers/:id/commits to return commit batches that touched the specified container. Parameters: container_id is required; limit is optional (default 10, max 100); from_world_seq is optional for pagination. Results mirror the commits response shape (commits[] + pagination with next_world_seq/has_more, correlation ids, and freshness) and stay ordered by world sequence starting from the beginning.
Protocols
- MCP
- OpenAI
- Gemini
Input Schema
{
"properties": {
"container_id": {
"description": "Container identifier to query history for.",
"maxLength": 128,
"minLength": 1,
"pattern": "^[A-Za-z0-9._~\\-]+$",
"type": "string"
},
"from_world_seq": {
"description": "Starting world sequence to return (default: 0)",
"minimum": 0,
"type": "integer"
},
"limit": {
"description": "Maximum number of commits to return (default: 10, max: 100)",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"namespace_id": {
"description": "Required namespace identifier for all namespaced operations.",
"minimum": 1,
"type": "integer"
}
},
"required": [
"container_id",
"namespace_id"
],
"type": "object"
}
Examples
No examples are currently available for this tool.