docs: 修正全部文档使其与源码实现一致

- Plugin.Start(sdk *PluginSDK) 接口签名改为指针
- 方法表重写: 移除 CallLLM/QueryKnowledge/SetMemory 等不存在方法
- IOInjector 参数顺序修正为 (source, channel, text)
- 删除虚构 SDKConfig, 替换为实际 New() 构造函数签名
- .hmap 内容描述一致化 (plugin.so + plugin.dll + main.lua)
- 添加 meta/ 包元数据文件
This commit is contained in:
root
2026-07-18 20:47:17 +08:00
commit 1762f0c34b
62 changed files with 9454 additions and 0 deletions

11
example/editdoc/plg.json Normal file
View File

@ -0,0 +1,11 @@
{
"name": "editdoc",
"name_zh": "文档编辑",
"name_en": "Document Editor",
"version": "1.0.0",
"description": "办公文档编辑工具(.docx基于 Python python-docx 库实现。支持文本替换、表格操作、内容插入等。",
"author": "HomeAgent",
"entry": "plugin.so",
"tags": ["editdoc", "office", "document"],
"targets": "linux/amd64"
}