siemens-tia-portal-integrator
Orchestrate data-driven Siemens TIA Portal workflows: read structured data from CSV/Excel files, generate STL/AWL code via the siemens-awl-stl-programmer skill, and apply changes to a live TIA Portal project. Trigger when the user asks to import, generate, sync, or batch-apply PLC blocks, tags, devices, or data blocks from a spreadsheet or CSV source — or to export existing TIA Portal project data into a file.
DeepseekModel
官方收录技能
质量 良好 · 48
v1.0.0
获取
https://deepseekmodel.com/api/download.php?id=chewcw-agent-skills-siemens-tia-portal-integrator-skill-md&format=skill
下载 .skill
标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name siemens-tia-portal-integrator description Orchestrate data-driven Siemens TIA Portal workflows: read structured data from CSV/Excel files, generate STL/AWL code via the siemens-awl-stl-programmer skill, and apply changes to a live TIA Portal project. Trigger when the user asks to import, generate, sync, or batch-apply PLC blocks, tags, devices, or data blocks from a spreadsheet or CSV source — or to export existing TIA Portal project data into a file. metadata {"version":"1.1"} Siemens TIA Portal Integrator Skill Overview This skill bridges three layers: Layer Purpose File I/O Read/write CSV and Excel source files Code Generation Produce compilable STL/AWL source via siemens-awl-stl-programmer skill Project Automation Apply changes to a live TIA Portal project Prerequisite: This skill requires TIA Portal automation capability (e.g., TIA Portal Openness API or MCP server). The agent is responsible for discovering and using the appropriate tools for its environment. Always invoke the siemens-awl-stl-programmer skill when the workflow involves generating or modifying STL/AWL block source. Validate data completely before applying any changes to the project. Skill Map siemens-tia-portal-integrator/ │ ├── SKILL.md ← you are here (index + quick-reference) │ ├── references/ │ ├── scripts/ ← Helper scripts for file I/O and validation │ │ ├── read_csv.md │ │ ├── read_excel.md │ │ ├── list_sheets.md │ │ ├── validate_columns.md │ │ └── write_excel_summary.md │ ├── patterns/ ← Workflow patterns │ │ ├── import-tags-csv.md ← Pattern A: Import tags from CSV/Excel │ │ ├── import-devices-excel.md ← Pattern B: Import devices from Excel │ │ ├── generate-blocks-excel.md ← Pattern C: Generate blocks from Excel spec │ │ └── export-blocks-excel.md ← Pattern D: Export blocks to Excel │ └── examples/ ← Full conversation examples │ ├── example-tag-import.md │ ├── example-device-import.md │ ├── example-block-generation.md │ └── example-block-export.md Validation Rules Apply these rules before creating any data in TIA Portal: Tag names Max 24 characters; first character must be a letter or underscore Allowed: letters, digits, underscore — no spaces or special characters Data types Bool Byte Word DWord Int DInt Real LReal Time Char String Capitalisation is exact — use these spellings Logical addresses Inputs: %I<byte>.<bit> or %IW<byte> Outputs: %Q<byte>.<bit> or %QW<byte> Memory: %M<byte>.<bit> or %MW<byte> or %MD<byte> Order numbers Example: 6ES7 516-3AN02-0AB0 Pattern: [Family 4 chars][Space][Article]-[SubArticle]-[Variant] Block names Max 24 characters; no special characters except underscore; unique within the device Workflow Patterns Choose the pattern that matches the user's request: Pattern File Trigger A — Import tags references/patterns/import-tags-csv.md "Import tags from CSV/Excel" B — Import devices references/patterns/import-devices-excel.md "Import devices from Excel" C — Generate blocks references/patterns/generate-blocks-excel.md "Generate blocks from spreadsheet" D — Export blocks references/patterns/export-blocks-excel.md "Export blocks to Excel" General Workflow Checklist For any import/generate workflow, follow this sequence: Step 1: Read source file — Read the CSV or Excel file containing the data Step 2: Validate columns — Ensure required columns exist; map aliases to canonical names Step 3: Verify TIA Portal session — Confirm a project is open and accessible Step 4: Resolve target — Identify the target device, tag table, or block destination Step 5: Pre-validate — Check catalog validity, duplicates, naming rules Step 6: Apply changes — Create/modify data in the project; continue on single failures Step 7: Save — Save the project after every successful batch Step 8: Compile — Compile software after block changes Step 9: Report — Summarize created/failed/skipped with details General Best Practices Verify session first — confirm TIA Portal is accessible before any write operation. Validate before writing — run column validation and catalog checks before creating any data. Ask on ambiguity — if a requirement or target (device, sheet, table, mapping, action) is unclear or missing, ask the user before proceeding; do not assume. One operation per item — process items individually; no bulk payloads. Save after each batch — save the project after every successful write batch. Compile after block changes — compile software after uploading block sources. Delegate code generation — never write AWL inline; invoke siemens-awl-stl-programmer skill. Continue on single failures — collect all failures and report at the end, do not abort early.
Agent 识别该技能的关键词,点击任意一个即可复制。
该技能未提供触发词。
下载的 .skill 包内含以下字段。
| 字段 | 说明 |
|---|---|
| format | 格式标识(skill/v1) |
| skill_id | 技能唯一 ID |
| name | 技能名称 |
| version | 版本号 |
| description | 技能描述 |
| category | 所属分类(数组) |
| trigger_words | 触发词列表 |
| tags | 标签列表 |
| source | 来源标识 |
| source_url | 来源链接(本页地址) |
| exported_at | 导出时间(每次下载生成) |
| system_prompt | 系统提示词正文 |
| model_config | 模型参数:provider / model / temperature / max_tokens / top_p |
| examples | 示例 |
| install_guide | 各平台导入说明(Coze / Dify / Claude / 自定义框架) |