Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计未展示

eae-sln-overvieweae sln 概述

Agent Skill

eae-sln-overview 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

630

周安装

26

GitHub Stars

公开资料未说明

下载量

206
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:eae-sln-overview(eae sln 概述)
来源仓库:https://github.com/sapiencezk/eae-skills
仓库路径:skills/eae-sln-overview
安装命令:
npx skills add sapiencezk/eae-skills --skill "eae-sln-overview"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add sapiencezk/eae-skills --skill "eae-sln-overview"

简介

eae-sln-overview 用于查找、检索和筛选相关信息,适用于 Codex、Claude、Cursor、Gemini CLI 中的线索定位需求。

  • 可根据关键词或任务场景快速筛选候选结果并返回结构化概览。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装。
  • 安装前需评估权限范围及是否涉及敏感操作如联网或文件写入。
  • 建议查阅原始 SKILL.md 以明确实际功能细节与使用限制。

SKILL.md

name
eae-sln-overview
description
>
license
MIT
compatibility
Designed for EcoStruxure Automation Expert 24.0+, Python 3.8+
metadata
version
1.1.0
author
Claude
domain
industrial-automation
platform
EcoStruxure Automation Expert
parent-skill
eae-skill-router
user-invocable
true
standard
IEC-61499

EAE Solution Overview

Analyzes EcoStruxure Automation Expert (EAE) projects and generates comprehensive reports.

Quick Start

# Basic analysis - generates markdown report
python scripts/analyze_project.py --project-dir /path/to/project

# JSON output for automation
python scripts/analyze_project.py --project-dir /path/to/project --json

# Quick summary
python scripts/analyze_project.py --project-dir /path/to/project --format summary

# Save report to file
python scripts/analyze_project.py --project-dir /path/to/project --output report.md

Triggers

Use this skill when:

  • "analyze EAE project"
  • "generate project report"
  • "project overview"
  • "solution summary"
  • "show project quality"
  • "what's in this EAE project"
  • /eae-sln-overview

Quick Reference

AnalysisDescriptionScript
SolutionProjects, blocks, library refs, EAE versionparse_solution.py
TopologyDevices, resources, CAT instancesparse_system_topology.py
ProtocolsOPC-UA, Modbus, EtherNet/IP, IO-Linkparse_protocols.py
LibrariesSE vs custom, dependenciesparse_libraries.py
I/OEvent/data inputs/outputscount_io.py
ISA88System/subsystem hierarchyparse_isa88.py
DescriptionProject description (docs or inferred)parse_description.py
Quality8-dimension scoringcalculate_quality.py

Report Sections

1. Executive Summary

Quick metrics table with quality score, project count, device count, blocks, and I/O points.

2. Network Architecture

ASCII diagram showing device topology with:

  • Device names and types
  • Resource counts
  • CAT instance counts

3. Protocol Inventory

ProtocolWhat's Detected
OPC-UA ServerExposed node count, over-exposure warnings
OPC-UA ClientCross-device connections
Modbus TCP/RTUMasters and slaves
EtherNet/IPScanner instances
OtherDNP3, PROFINET, IO-Link, etc.

4. Library Matrix

  • SE Standard Libraries: Runtime.Base, SE.App2CommonProcess, etc.
  • Custom Libraries: Project-specific namespaces with dependencies

5. I/O Summary

CategoryDescription
Event InputsINIT, REQ, etc.
Event OutputsINITO, CNF, etc.
Data InputsInterface variables (inputs)
Data OutputsInterface variables (outputs)
Internal VarsPrivate variables
AdaptersSocket/Plug connections

6. ISA88 Hierarchy

System/Subsystem hierarchy from System.sys:

System: System
  +-- Subsystem: JetMix (JetMix)
      +-- Equipment modules...
  +-- Subsystem: JetSpray (JetSpray)
      +-- Equipment modules...

Parsed from Device.FolderPath attribute and CAT instances in System.sys.

7. Quality Score

8-dimension scoring system (100 points total):

DimensionMaxDescription
Naming Compliance20SE naming convention adherence
Library Organization15SE/custom separation, dependencies
Documentation15.doc.xml coverage, comments
ISA88 Hierarchy15Asset structure and CAT linking
Protocol Config10OPC-UA exposure, clean configs
Code Organization10Folder structure, consistency
Block Complexity10Variable counts, event fanout
Reusability5Adapter usage, composition

Grades: A (90+), B (80-89), C (70-79), D (60-69), F (<60)

Commands

Main Orchestrator

python scripts/analyze_project.py --project-dir PATH [OPTIONS]

Options:
  --project-dir PATH    EAE project root directory (required)
  --format FORMAT       Output: markdown, json, summary (default: markdown)
  --output PATH         Write to file instead of stdout
  --json                Shortcut for --format json

Individual Scripts

Run individual analysis modules for targeted inspection:

# Solution structure
python scripts/parse_solution.py --project-dir PATH [--json]

# System topology
python scripts/parse_system_topology.py --project-dir PATH [--json]

# Protocol detection
python scripts/parse_protocols.py --project-dir PATH [--json]

# Library analysis
python scripts/parse_libraries.py --project-dir PATH [--json]

# I/O counting
python scripts/count_io.py --project-dir PATH [--json] [--details]

# ISA88 hierarchy
python scripts/parse_isa88.py --project-dir PATH [--json]

# Project description
python scripts/parse_description.py --project-dir PATH [--json]

# Quality scoring
python scripts/calculate_quality.py --project-dir PATH [--json]

Exit Codes

CodeMeaning
0Analysis complete, quality >= 70%
1Error (project not found, critical failure)
10Analysis complete with warnings, or quality 50-69%
11Analysis complete, quality < 50%

Output Formats

Markdown (default)

Full report with tables, ASCII diagrams, and formatted sections. Best for documentation.

JSON

Structured data for automation and integration:

{
  "project_dir": "/path/to/project",
  "analyzed_at": "2024-01-15T10:30:00",
  "solution": { ... },
  "topology": { ... },
  "protocols": { ... },
  "libraries": { ... },
  "io": { ... },
  "isa88": { ... },
  "quality": { ... }
}

Summary

One-line-per-metric quick overview:

Project: MyProject
Description: MyProject is an IEC 61499 automation project for food and beverage processing.
EAE Version: 24.0.0.0
Quality: 75/100 (Grade C)
Projects: 3
Blocks: 250
I/O Points: 8,287
SE Libraries (16): Runtime.Base, SE.AppBase, ...
Custom Libraries (3): MyLib.IoLink, ...
Protocols: OPC-UA (0 refs), Modbus (334 refs), EtherNet/IP (1475 refs)
System: System
Subsystems (4): JetMix, JetSpray, JetFlam, Ligne
Equipment Modules: 114

Project Locations

Default EAE project locations:

  • C:\Users\{user}\Documents\Schneider Electric\EcoStruxureAutomationExpertProjects
  • C:\Users\{user}\Documents\GitHub

Files Analyzed

PatternPurpose
*.sln, *.nxtslnSolution structure
*.dfbprojProject metadata, library refs, EAE version
*.fbtFunction blocks (interfaces)
*.adpAdapters
*.dtData types
System.cfg, System.sysTopology, CAT instances, ISA88 hierarchy
*.opcua.xmlOPC-UA server configuration
*.hcfHardware configuration (protocol detection)
*.doc.xmlDocumentation (description extraction)
Folders.xmlCode organization
README.mdProject documentation

Integration with Other Skills

SkillIntegration
eae-naming-validatorQuality scoring uses naming patterns
eae-performance-analyzerCan be run after overview for deep analysis
eae-skill-routerParent skill for routing

Anti-Patterns

AvoidWhyInstead
Analyzing without readingMay miss contextReview report sections
Ignoring quality warningsTechnical debtAddress recommendations
Over-exposed OPC-UASecurity riskReview exposed nodes
Empty ISA88Missing asset managementConfigure hierarchy

Verification

After running analysis:

  • [ ] Quality score calculated (not error)
  • [ ] All 8 analysis sections present (solution, topology, protocols, libraries, io, isa88, description, quality)
  • [ ] No critical warnings
  • [ ] Library list includes SE and custom libraries
  • [ ] Protocol detection shows expected communication types
  • [ ] ISA88 subsystems match expected configuration

Troubleshooting

"Project directory not found"

Ensure the path points to the root containing .sln or IEC61499/ folder.

"No .dfbproj files found"

The project may not be an IEC61499 project or may have a non-standard structure.

"System directory not found"

The project doesn't have a configured system topology yet. This is normal for library-only projects.

"No subsystems found"

ISA88 hierarchy is not configured in System.sys. Ensure Device.FolderPath is defined with subsystem names.


Changelog

v1.1.0

  • Added parse_description.py - hybrid description generation (docs + metadata inference)
  • Enhanced protocol detection from .hcf files and library references
  • Added EAE version detection from .dfbproj files
  • Fixed ISA88 parsing to use System.sys instead of Assets.json
  • Improved custom library detection via ProjectReference elements
  • Added compatibility field to frontmatter

v1.0.0

  • Initial release
  • 7 analysis modules
  • 8-dimension quality scoring
  • Markdown, JSON, summary output formats
  • ASCII network diagrams

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.15%
按下载量换算58

OpenCode

23.48%
按下载量换算48

windsurf

16.5%
按下载量换算34

trae

14.09%
按下载量换算29

Cursor

7.28%
按下载量换算15

Codex

3.66%
按下载量换算8

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills