Asset Core Docs

Deterministic world-state engine documentation and API references.

Decision Gate docs

assetcore_get_owner_summary

AssetCore is a deterministic structured memory substrate. It stores all world state explicitly in containers and modifies that state through atomic, replayable transactions. Aggregate containers, balances, and instance counts for an owner.

Details

AssetCore is a deterministic structured memory substrate. It stores all world state explicitly in containers and modifies that state through atomic, replayable transactions. Aggregate containers, balances, and instance counts for an owner.

Calls /v1/read/namespaces/{namespace_id}/owners/:id/summary to return containers[] (container_id, kind, display_name?), balances[] (class_id, variant_key?, quantity, balance_scale), instance_count, freshness, and correlation identifiers to drive owner-centric reasoning.

Protocols

  • MCP
  • OpenAI
  • Gemini

Input Schema

{
  "properties": {
    "namespace_id": {
      "description": "Required namespace identifier for all namespaced operations.",
      "minimum": 1,
      "type": "integer"
    },
    "owner_id": {
      "description": "Owner identifier to summarize.",
      "maxLength": 128,
      "minLength": 1,
      "pattern": "^[A-Za-z0-9._~\\-]+$",
      "type": "string"
    }
  },
  "required": [
    "owner_id",
    "namespace_id"
  ],
  "type": "object"
}

Examples

No examples are currently available for this tool.