Developer Open SDK & API Reference

Build custom CAD connectors, post-processors, and FEA plugins using Python and JSON-RPC sockets.

Python Connector SDK (`connector_sdk.py`)

from zylforge_os.connectors.base_connector import BaseCADConnector

class CustomCADConnector(BaseCADConnector):
    def __init__(self):
        super().__init__("CustomCAD", "1.0.0")

    def execute(self, payload):
        return {"status": "PASS", "cad_script": "create_part()"}