Help us improve
Share bugs, ideas, or general feedback.
From totally-integrated-claude
Provides C# Openness implementations for device-level operations in TIA Portal, including enumeration, creation, attributes, hardware parameters, device items, and networks.
npx claudepluginhub czarnak/totally-integrated-claude --plugin totally-integrated-claudeHow this skill is triggered — by the user, by Claude, or both
Slash command
/totally-integrated-claude:tia-devices-generalThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Device-level engineering — full C# Openness implementation.
Implements PLC software engineering via Siemens TIA Portal Openness API in C#. Covers online status, block management, tags, alarms, safety, OPC UA, and supervision.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Device-level engineering — full C# Openness implementation.
When the roadmap routes here, the entire solution is C#.
Do not mix with Python wrapper calls.
Always load tia-csharp-common first (done by roadmap).
Load ONLY the reference file(s) relevant to the task. Do not load all files at once.
| Reference file | Load when the task involves |
|---|---|
references/device-enumeration.md | Listing, finding, or iterating devices; device groups; ungrouped devices; navigating DeviceItems. |
references/device-creation.md | Creating or deleting devices; understanding TypeIdentifier formats (OrderNumber, GSD, System). |
references/device-attributes.md | Reading/writing basic device or device-item attributes; using GsdDevice service; managing Application IDs (CustomIdentityProvider). |
references/hardware-parameters.md | Setting specific hardware parameters via SetAttribute (e.g., IO addresses, diagnostic settings, module-specific enums). |
references/software-container.md | Accessing PlcSoftware or HmiTarget from a device; using the SoftwareContainer service. |
references/device-item-operations.md | Plugging, moving, copying, or deleting device items/modules; changing device/module types; hardware catalog queries. |
references/device-item-interfaces.md | NetworkInterface service; IOController/IOConnector attributes; hardware identifiers; managing addresses and channels. |
references/networks-and-connections.md | Opening hardware/network editors; querying targets from a network perspective; address object attributes. |
For tasks spanning multiple areas, load all relevant reference files before generating code.
Project.Devices composition (or DeviceGroups / UngroupedDevicesGroup)Device objectsDeviceItem hierarchy as neededSoftwareContainer via GetService<SoftwareContainer>() when PLC/HMI software is neededICompilable for hardware or software compile (see tia-project-general/references/compile.md)