Skills iot
Create IoT architecture diagrams using PlantUML syntax with device and sensor stencil icons. Best for smart home, industrial IoT (IIoT), fleet management, edge computing, and sensor network layouts.
install
source · Clone the upstream repo
git clone https://github.com/markdown-viewer/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/markdown-viewer/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/iot" ~/.claude/skills/markdown-viewer-skills-iot && rm -rf "$T"
manifest:
iot/SKILL.mdsource content
IoT Architecture Diagram Generator
Quick Start: Select device/sensor icons → Place edge gateways → Connect to cloud services → Group into zones → Wrap in
```plantuml fence.
⚠️ IMPORTANT: Always use
or```plantumlcode fence. NEVER use```puml— it will NOT render as a diagram.```text
Critical Rules
- Every diagram starts with
and ends with@startuml@enduml - Use
for typical IoT data flows (Device → Edge → Cloud)left to right direction - Use
stencil syntax for IoT service and device iconsmxgraph.aws4.* - Default colors are applied automatically — you do NOT need to specify
orfillColorstrokeColor - Use
orrectangle "Zone" { ... }
for groupingpackage "Site" { ... } - Directed flows use
, async/event-driven flows use-->
(dashed)..>
Full stencil reference: See stencils/README.md for 9500+ available icons.
Mxgraph Stencil Syntax
mxgraph.aws4.<icon> "Label" as <alias>
Core IoT Stencils
| Category | Stencils | Purpose |
|---|---|---|
| IoT Platform | , , | Central IoT hub / message broker |
| Edge/Gateway | , , , | Edge computing & device gateway |
| Greengrass | , , | Edge runtime components |
| Device Mgmt | , , , | Fleet provisioning, security, OTA |
| Analytics | , , , , | IoT data processing pipeline |
| Events/Rules | , | Event detection & job execution |
| Digital Twin | , , , | Asset modeling & visualization |
| Fleet | , | Vehicle & device fleet telemetry |
Device & Sensor Stencils
| Category | Stencils |
|---|---|
| Sensors | , , , , , |
| Actuators | , , |
| Industrial | , , |
| Smart Home | , , , , |
| Protocols | , , |
| Boats/Vehicles | , |
| Robotics | , |
Connection Types
| Syntax | Meaning | Use Case |
|---|---|---|
| Solid arrow | Sync API / data flow |
| Dashed arrow | Async telemetry / MQTT publish |
| Solid line | Physical / bidirectional link |
| Labeled connection | Describe protocol or data |
Quick Example
@startuml left to right direction rectangle "Factory Floor" { mxgraph.aws4.sensor "Temp\nSensor" as s1 mxgraph.aws4.iot_thing_plc "PLC" as plc } mxgraph.aws4.greengrass "Greengrass\nEdge" as gg mxgraph.aws4.iot_core "IoT Core" as core mxgraph.aws4.iot_analytics "IoT\nAnalytics" as analytics s1 --> gg : MQTT plc --> gg gg --> core core --> analytics @enduml
IoT Architecture Types
| Type | Purpose | Key Stencils | Example |
|---|---|---|---|
| Smart Factory | Industrial IoT monitoring | , , , | smart-factory.md |
| Smart Home | Home automation | , , , | smart-home.md |
| Fleet Telemetry | Vehicle fleet tracking | , , | fleet-telemetry.md |
| Edge Computing | Local processing at edge | , , | edge-computing.md |
| Digital Twin | Asset modeling & simulation | , , | digital-twin.md |
| Sensor Network | Distributed sensor mesh | , , | sensor-network.md |
| Device Management | Fleet provisioning & OTA | , , | device-management.md |
| Robotics | Robot fleet orchestration | , , | robotics.md |