Back to Registry View Author Profile
Official Verified
epai
EPAI 平台管理技能,通过 CLI 操作知识库、文档和目录。
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/iamlovingit/epaiskillOr
EPAI Skill
此 Skill 封装了 EPAI 平台的管理操作,所有接口都通过 scripts/epaiclt.py 调用。
使用示例
列出所有知识库
python scripts/epaiclt.py --method kb_list
创建知识库(必须指定 catalog_id)
python scripts/epaiclt.py --method kb_create --name "知识库名称" --description "知识库描述" --catalog_id <目录ID>
删除知识库
python scripts/epaiclt.py --method kb_delete --kb_ids kb_id1 kb_id2 ...
上传文件到知识库
python scripts/epaiclt.py --method document_upload --kb_id <知识库ID> --file ./file1.pdf ./file2.docx
获取目录列表
python scripts/epaiclt.py --method catalog_list
创建目录(必须指定 parent_id)
python scripts/epaiclt.py --method catalog_create --name "目录名称" --parent_id <父目录ID>
删除目录
python scripts/epaiclt.py --method catalog_delete --catalog_id <目录ID>
获取知识库文档列表
python scripts/epaiclt.py --method document_list --kb_id <知识库ID>
批量删除知识库文档
python scripts/epaiclt.py --method document_delete --doc_ids doc_id1 doc_id2 ...
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-iamlovingit-epaiskill": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.