assetcore_query_commits
AssetCore is a deterministic structured memory substrate. It stores all world state explicitly in containers and modifies that state through atomic, replayable transactions. Scan committed transactions to audit how structured memory changed over time.
Details
AssetCore is a deterministic structured memory substrate. It stores all world state explicitly in containers and modifies that state through atomic, replayable transactions. Scan committed transactions to audit how structured memory changed over time.
Queries /v1/read/namespaces/{namespace_id}/commits with optional limit (default 10, max 100) and from_world_seq (default 0) for world-seq pagination. Results are ordered by ascending world sequence and include commits[] entries (world_seq_start, world_seq_end, commit_id, commit_time_ms, metadata {actor_id?, idempotency_key?, origin?}) plus pagination {next_world_seq, has_more}, server/client correlation ids, and freshness {namespace, world_seq, commit_log_world_seq, lag, lag_ms}. Use pagination.next_world_seq to continue scanning.
Protocols
- MCP
- OpenAI
- Gemini
Input Schema
{
"properties": {
"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": [
"namespace_id"
],
"type": "object"
}
Examples
No examples are currently available for this tool.