Skip to main content

OpenSMI Server

Open Smart Machine Interface (SMI) provides an abstract, standardized, vendor-neutral way to interact safely with real (or simulated) machines. OpenSMI is an asynchronous Python framework, built on top of asyncua for building SMI-compliant OPC UA servers.

It gives you the building blocks for exposing manufacturing capabilities — axes, grippers, robots, conveyors, whole machines — over a standardized, hierarchical OPC UA information model, without having to hand-roll everything yourself.

Why OpenSMI

A common real-world use case is as an adapter in front of a Programmable Logic Controller (PLC): many PLCs can speak OPC UA but don't natively expose SMI's richer skill model — suspendable/resumable skills, composite orchestration, feasibility/precondition checks, standardized locking. OpenSMI lets you sit in front of such a PLC and:

  • Adapt what the PLC already exposes into proper SMI skills/methods, so any SMI-aware client can talk to it uniformly regardless of vendor or PLC platform.
  • Extend it: if the PLC only implements simple atomic skills (e.g. MoveTo, Open, Close), compose them into higher-level composite skills (e.g. PickAndPlace) in Python — where orchestration logic is faster to write, test, and iterate on than in PLC ladder/structured text.

This keeps low-level, safety-critical motion on the PLC where it belongs, while higher-level sequencing and coordination logic lives in a language better suited for rapid development.

Requirements

  • Python 3.11+

Installation

pip install opensmi-server

Quick Start

Define a skill, add it to a machine, and start the OPC UA server:

import asyncio

from asyncua import ua
from opensmi.core import Unit

from opensmi.server import BaseMachine, BaseSkillFinalResultData, BaseSkillFinite, ParameterSet, Server, UaVariable
from opensmi.server.mixins import FinalResultDataMixin, ParameterSetMixin, ParentMixin


class ExampleSkillParameterSet(ParameterSet):
    """Parameters of the example skill."""

    x = UaVariable(0, unit=Unit.NANOAMPERE, range=(0, 10))
    y = UaVariable(0, unit="nA", range=(0, 10))


class ExampleSkillSimpleFinalResultData(BaseSkillFinalResultData):
    """Final result data of the example skill."""

    ComputationResult = UaVariable(0, unit="nA", range=(0, 20))


class ExampleSkill(
    ParentMixin["ExampleMachine"],  # provides type-checkable parent type
    ParameterSetMixin[ExampleSkillParameterSet],  # provides type-checkable parameters
    FinalResultDataMixin[ExampleSkillSimpleFinalResultData],  # provides type-checkable results
    BaseSkillFinite,  # provides finite skill logic etc.
):
    async def _handle_running(self) -> None:
        # define logic that is executed in the RUNNING state

        # read our parameters
        x = await self.parameter_set.x.read()
        y = await self.parameter_set.y.read()

        # simulate long-running calculation etc.
        await asyncio.sleep(1)

        # we are done, write return variables
        await self.final_result_data.ComputationResult.write(x + y)


class ExampleMachine(BaseMachine):
    async def _init(self) -> None:
        await super()._init()

        await self.add_skill(ExampleSkill())

    async def _write_identification(self) -> None:
        # These identification variables must be set for machines
        await self.identification.SerialNumber.write("1234-56789-abc")
        await self.identification.ProductInstanceUri.write(
            "urn:smartfactory.de-model:snr-1234-56789-abc"
        )
        await self.identification.Manufacturer.write(
            ua.LocalizedText("Technologie-Initiative SmartFactory-KL e. V.", "de-DE")
        )


async def main() -> None:
    async with Server() as server:  # will properly shut down the server
        await server.add_machine(ExampleMachine())  # add machine(s)
        await server.start(blocking=True)  # start the server and block while it is running


if __name__ == "__main__":
    asyncio.run(main())

Usage

  1. Connect to the server with any OPC UA client (e.g. UaExpert) at opc.tcp://localhost:4841, authenticating as user operator with password operator.
  2. Navigate to Objects/Machines/ExampleMachine.
  3. Under ExampleMachine/Lock, call the InitLock() method to acquire exclusive access — required before you can write parameters or call skill methods.
  4. Navigate to ExampleMachine/SkillSet/ExampleSkill/SkillExecution. This is where the skill's ParameterSet, StateMachine, and FinalResultData etc. live.
  5. Under ParameterSet, write values for x and y.
  6. Under StateMachine, call Reset(). Skills start in the Halted state and must be reset to Ready before they can run.
  7. Call Start(). The skill moves through StartingRunningCompletingCompleted.
  8. Once StateMachine's CurrentState reads Completed, read the result from ComputationResult under FinalResultData.

Or simply use our OpenSMI-Client.

Explore the safety features:

  • Try writing parameters or calling skill methods without holding the Lock — it will be rejected.
  • Try writing x or y outside their allowed range — it will be rejected.
  • Try acquiring the Lock while authenticated as user visitor with password visitor — it will be rejected.

See here for more OpenSMI server examples.

Core Concepts

Concept What it is
Machinery Items Common base for Machines and Components: attributes, identification, parameters, monitoring, sub-components, skills, methods, etc.
Components One piece of a machine's hierarchy, e.g. an axis or a gripper. May nest further sub-components.
Machines The top-level unit a client addresses as "the machine," e.g. a robot + storage + transport port. A single server can expose several machines.
Skills Asynchronous, stateful capabilities — finite (run once, complete) or continuous (run indefinitely), atomic or composite.
Methods Synchronous, quick operations — no state machine, just call() in, result out.

Project Status

OpenSMI began as a closed-source project at SmartFactory-KL, in active use in our model factory since 2020. Its OPC UA information model has been refined across many iterations of research and demonstrator use. The framework was open-sourced in 2026 following substantial refactoring and cleanup.

Most of the framework is stable and well-tested, but it remains pre-1.0 — expect minor API changes before the 1.0 release.

Publications

Get more information of OpenSMI by reading our publications:

Scientific Publications

Title Content
Seamless Machine Integration in Smart Manufacturing: Utilizing OPC UA for Machinery with Skill-Based Engineering of Varying Granularity Application of skills in robotics and an introduction to OpenSMI's OPC UA modeling
Developing a skill-based flexible transport system using OPC UA Application of skills in intralogistic
Interaction between FeasibilityCheck, PreconditionCheck and SkillExecution in skill-based machining Application of skills in machining

Joint Publications

Title Content
Capabilities and Skills in Production Automation Guidline for capabilities and skills with a focus on OPC UA
Information Model for Capabilities, Skills & Services Presenting an information model for flexible manufacturing in Industry 4.0 based on capabilities, skills and services
Capabilities, Skills and Services CSS Model Extensions and Engineering Methodology Refinement of the information model for capabilities, skills and services

License

The library itself is licensed under the MIT License.

Example code contained in the examples directory is dedicated to the public domain under the CC0 1.0 Universal license.


This text was drafted with AI assistance (Claude, Anthropic) and reviewed/edited by the author before publication.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

opensmi_server-0.1.tar.gz (138.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

opensmi_server-0.1-py3-none-any.whl (137.0 kB view details)

Uploaded Python 3

File details

Details for the file opensmi_server-0.1.tar.gz.

File metadata

  • Download URL: opensmi_server-0.1.tar.gz
  • Upload date:
  • Size: 138.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for opensmi_server-0.1.tar.gz
Algorithm Hash digest
SHA256 15f109e79f6fc3772911bf05e019aa520565bbe956f8108e9cdd2a912bcb6510
MD5 a49685a763c01a2a51486bbf6b00ebeb
BLAKE2b-256 5feaa877c5391200a4156c3eaef0f111405ae08daf7a72727c7a9773ae4b9098

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensmi_server-0.1.tar.gz:

Publisher: python-publish.yml on SmartFactory-KL/opensmi-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file opensmi_server-0.1-py3-none-any.whl.

File metadata

  • Download URL: opensmi_server-0.1-py3-none-any.whl
  • Upload date:
  • Size: 137.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for opensmi_server-0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 da4e6c36f14458dc46dd8b59c420c79c342a6285362962e0f4dee2c089e96c8d
MD5 50699efe1c4f1cbdf745c9be9a3ad53f
BLAKE2b-256 0c36d29f4fe82f40d5b5357943e192386a3d654ea9358a1f686c26311657411c

See more details on using hashes here.

Provenance

The following attestation bundles were made for opensmi_server-0.1-py3-none-any.whl:

Publisher: python-publish.yml on SmartFactory-KL/opensmi-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.1 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page