Asset Core Docs

Deterministic world-state engine documentation and API references.

Decision Gate docs

assetcore_register_class_continuous_shape_1d

AssetCore is a deterministic structured memory substrate. It stores all world state explicitly in containers and modifies that state through atomic, replayable transactions. Register a continuous 1D class shape so continuous line placements can enforce geometry rules.

Details

AssetCore is a deterministic structured memory substrate. It stores all world state explicitly in containers and modifies that state through atomic, replayable transactions. Register a continuous 1D class shape so continuous line placements can enforce geometry rules.
nCalls POST /v1/write/namespaces/{namespace_id}/register_class_continuous_shape_1d on the write daemon. Input fields: class_id, stack_key?, span, idempotency_key?. The daemon enforces RBAC, policy class gating, and quota; denied requests return structured errors with auth_reason.

Protocols

  • MCP
  • OpenAI
  • Gemini

Input Schema

{
  "properties": {
    "class_id": {
      "description": "Class receiving the continuous 1D shape registration.",
      "maxLength": 128,
      "minLength": 1,
      "pattern": "^[A-Za-z0-9._~\\-]+$",
      "type": "string"
    },
    "idempotency_key": {
      "description": "Optional idempotency key to deduplicate retries",
      "type": "string"
    },
    "namespace_id": {
      "description": "Required namespace identifier for all namespaced operations.",
      "minimum": 1,
      "type": "integer"
    },
    "span": {
      "description": "Fixed-point span for the class variant.",
      "properties": {
        "length": {
          "description": "Length in fixed-point units.",
          "minimum": 1,
          "type": "integer"
        }
      },
      "required": [
        "length"
      ],
      "type": "object"
    },
    "stack_key": {
      "description": "Optional variant discriminator.",
      "oneOf": [
        {
          "type": "null"
        },
        {
          "minimum": 0,
          "type": "integer"
        }
      ]
    }
  },
  "required": [
    "class_id",
    "span",
    "namespace_id"
  ],
  "type": "object"
}

Examples

No examples are currently available for this tool.