Install
openclaw skills install @paudyyin/ifa-help-queryopenclaw skills install @paudyyin/ifa-help-queryname: ifa-help-query description: "Search and extract iFA Evolution help system documentation �� function descriptions, interface pa..." tags: [domain-specific, plc, template-based, file-based, cli] version: 1.0.0
�?iFA 帮助系统当作结构化知识库使用:先定位主题,再读取正文,最后输出用户真正关心的信息,而不是机械复述整�?HTML�?
C:\Inovance\iFA Evolution\Repository\Help\zh-CN\
D:\MyData\wangwl121\.agents\skills\ifa-help-query\ifa-topic-index.json,这是一�?JSON 对象,key 是主题名,value 是对应的 HTML 文件名数组�?# 精确查找
$json = Get-Content "D:\MyData\wangwl121\.agents\skills\ifa-help-query\ifa-topic-index.json" -Raw -Encoding UTF8 | ConvertFrom-Json
$json.'MC_MoveAbsolute' # 返回: T2026022701912.html T2026031801893.html T2026042702032.html ...
# 模糊查找(关键词匹配�?$json | Get-Member -MemberType NoteProperty | Where-Object { $_.Name -like "*Move*" } | Select-Object Name
C:\Inovance\iFA Evolution\Repository\Help\zh-CN\{文件名}
PS000000.html 中搜索关键词(Select-String�?2. 在所�?T*.html 中搜索关键词references/search-fallbacks.md 规则进一步搜�?�?references/output-template.md 中的模板组织输出,优先输出:
不要大段复刻 HTML。要把表格内容整理成用户易读的中文说明�?
如果用户要求区别、对比、和谁不同,�?references/comparison-checklist.md 维度并行读取相关主题页,输出差异总结�?
references/lookup-workflow.md �?快速路径回�?- references/output-template.md �?输出模板references/comparison-checklist.md �?多主题对比检查清�?- references/search-fallbacks.md �?兜底搜索策略