用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/JohnNuwan/EVA_CORE --skill digital-twin-bim-authoring命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Concevoir et maintenir un watchdog auto-correcteur pour services HTTP — checks de santé, auto-restart, état persistant, rapports et pièges bash.
Serveur de messagerie sécurisé auto-hébergé (Signal-like) avec Flask + WebSocket + AES-256-GCM + pont EVA
ADAM-SENTINEL — Veilleur technologique 24h/24h. Scanne 10 domaines, cree des rapports, met a jour les skills, alerte sur les CVE et breaking changes.
基于 SOC 职业分类
正在显示 SKILL.md
| name | digital-twin-bim-authoring |
| description | Créer et maintenir des jumeaux numériques industriels avec BIM, Unity et modélisation 3D. |
| version | 1.0.0 |
| author | EVA |
| license | Privée EVA St-Étienne |
| platforms | ["linux","macos","windows"] |
| metadata | {"EVA":{"tags":["digital-twin","bim","unity-3d","ifc","revit","tekla-structures","point-cloud","scan-to-bim","unreal-engine","omniverse","industry-foundation-classes","usd","lidar","3d-scan","navisworks","clash-detection","digital-thread"],"related_skills":["digital-twins","virtual-commissioning","cad-bom-automation","industrial-flow-simulation"]}} |
Le jumeau numérique (Digital Twin) est une réplique virtuelle d'un actif physique (usine, ligne, machine) connectée aux données temps réel pour la simulation, le monitoring et l'optimisation.
Cette compétence couvre : BIM (Building Information Modeling), modélisation 3D industrielle, scan 3D (LiDAR), jumeau numérique temps réel (Unity/Unreal), et standards IFC/USD.
À utiliser lorsque l'utilisateur demande :
IFC est le format ouvert d'échange BIM (ISO 16739). Structure clé :
| Concept IFC | Équivalent industriel |
|---|---|
| IfcBuilding | L'usine |
| IfcBuildingStorey | Niveau / étage |
| IfcSpace | Zone / hall / atelier |
| IfcEquipmentElement | Machine, équipement |
| IfcFlowSegment | Pipeline, goulotte, convoyeur |
| IfcSensor | Capteur |
| IfcDistributionControlElement | PLC, DCS, automate |
Scan LiDAR → Point Cloud → Registration → Classification → Modèle BIM → Jumeau Numérique
(FARUS) (CloudCompare) (SCENE) (Revit) (Unity / Omniverse)
┌──────────────┐ ┌──────────────┐ ┌──────────────┐
│ Données │ │ Plateforme │ │ Jumeau │
│ Temps réel │────▶│ Data Hub │────▶│ 3D │
│ │ │ │ │ │
│ OPC UA │ │ InfluxDB │ │ Unity 3D │
│ MQTT │ │ Node-RED │ │ Omniverse │
│ Historien │ │ Kafka │ │ Unreal Engine│
└──────────────┘ └──────────────┘ └──────────────┘
// Exemple : binding MQTT vers objet 3D dans Unity
void Start()
{
mqttClient.Subscribe("factory/line1/motor101/speed");
}
void OnMessage(string topic, string payload)
{
if (topic.EndsWith("/speed"))
{
float rpm = float.Parse(payload);
motorObject.transform.rotation *= Quaternion.Euler(0, rpm * Time.deltaTime * 6, 0);
}
}