Asset Core Docs

Deterministic world-state engine documentation and API references.

Decision Gate docs

assetcore_get_instance

AssetCore is a deterministic structured memory substrate. It stores all world state explicitly in containers and modifies that state through atomic, replayable transactions. Fetch an instance with class and placement metadata for verification.

Details

AssetCore is a deterministic structured memory substrate. It stores all world state explicitly in containers and modifies that state through atomic, replayable transactions. Fetch an instance with class and placement metadata for verification.

Calls /v1/read/namespaces/{namespace_id}/instances/:id to return instance {inst_id, class_id, variant_key?, location? (type=grid anchor+shape+rotation, type=slot, or type=continuous_1d coord+span, type=continuous_2d coord+rect+rotation_millideg)} together with freshness and correlation identifiers. Errors on invalid or unknown instance identifiers.

Protocols

  • MCP
  • OpenAI
  • Gemini

Input Schema

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

Examples

No examples are currently available for this tool.