소스 정보
- 저장소
- JohnNuwan/EVA_CORE
- 최근 소스 활동
- 2026년 7월 18일 08:30
- 감지된 SKILL.md 언어
- 프랑스어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/JohnNuwan/EVA_CORE --skill plcopen-xml명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | plcopen-xml |
| description | Générer et structurer des fichiers d'échange PLCopen XML. |
| version | 1.0.0 |
| author | EVA |
| license | Privée EVA St-Étienne |
| platforms | ["linux","macos","windows"] |
| metadata | {"EVA":{"tags":["industrial","automation","plcopen","xml","codesys","twincat","iec61131-3"],"related_skills":["rockwell-studio5000","siemens-scl"]}} |
Le standard PLCopen XML définit un schéma d'échange ouvert et neutre (indépendant des constructeurs) pour les projets d'automatisation conformes à la norme CEI 61131-3. Il permet d'importer et d'exporter des structures de données (DUT), des variables globales (GVL) et des unités d'organisation de programme (POU) sous forme textuelle XML dans des environnements comme CODESYS, Beckhoff TwinCAT, Schneider Machine Expert ou Omron Sysmac.
À utiliser lorsque l'utilisateur demande :
Un document PLCopen XML valide respecte l'arborescence racine <project> et doit déclarer les namespaces officiels.
<?xml version="1.0" encoding="utf-8"?>
<project xmlns="http://www.plcopen.org/xml/tc6_0201"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.plcopen.org/xml/tc6_0201 tc6_0201.xsd">
<fileHeader companyName="EVA" productName="EVA Agent" productVersion="1.0" creationDateTime="2026-06-17T12:00:00"/>
<contentHeader name="Export_Universal">
<coordinateInfo>
<fbd><x>100</x><y>100</y></fbd>
<ld><x>100</x><y>100</y></ld>
<sfc><x>100</x><>100
Les structures de données sont déclarées sous l'élément <dataTypes> à l'aide de structures de variables :
<dataType name="ST_Motor_Signals">
<baseType>
<struct>
<variable name="bStart">
<type><BOOL/></type>
<initialValue><simpleValue value="false"/></initialValue>
<documentation><xhtml:p>Commande Marche</xhtml:p></documentation>
</variable>
<variable name="bStop">
<type><BOOL/></type>
<initialValue><simpleValue value="false"/></initialValue>
<documentation><xhtml:p>Commande Arret</xhtml:p></documentation>
Consigne de vitesse (Hz)
Les blocs logiques définissent leurs variables d'interface (Entrées, Sorties, Internes) et leur code source ST encapsulé dans un bloc CDATA :
<pou name="FB_UniversalScale" pouType="functionBlock">
<interface>
<inputVars>
<variable name="rInput">
<type><REAL/></type>
</variable>
<variable name="rMinRaw">
<type><REAL/></type>
</variable>
<variable name="rMaxRaw">
<type><REAL/></type>
</variable>
</inputVars>
<outputVars>
<variable name="rOutput">
<type><REAL/></type>
</variable>
</>
<![CDATA[
// Calcul d'echelle universelle
rSpan := rMaxRaw - rMinRaw;
IF rSpan <> 0.0 THEN
rOutput := rInput / rSpan;
ELSE
rOutput := 0.0;
END_IF;
]]>
Namespace et validation XSD manquante :
xmlns="http://www.plcopen.org/xml/tc6_0201" à la racine.Échappement des caractères spéciaux dans le ST :
< ou > dans le code Texte Structuré sans protection.<![CDATA[ ... ]]>.Noms de variables et casse :
<bool/> au lieu de <BOOL/>).<project> déclare les bons namespaces et schémas XSD.<inputVars>, <outputVars> et <localVars>.<![CDATA[ ... ]]>.<REAL/>).fileHeader, contentHeader) sont présents et correctement formatés.