원클릭으로
update-tools
在用户需要更新或者添加的mcp、函数工具列表时立即使用此技能。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
在用户需要更新或者添加的mcp、函数工具列表时立即使用此技能。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Expert in building cross-platform desktop applications using web technologies (HTML/CSS/JS) with the Electron framework.
TypeScript and JavaScript expert with deep knowledge of type-level programming, performance optimization, monorepo management, migration strategies, and modern tooling.
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.
Refine academic writing for computer science research papers targeting top-tier venues (NeurIPS, ICLR, ICML, AAAI, IJCAI, ACL, EMNLP, NAACL, CVPR, WWW, KDD, SIGIR, CIKM, and similar). Use this skill whenever a user asks to improve, polish, refine, edit, or proofread academic or research writing — including paper drafts, abstracts, introductions, related work sections, methodology descriptions, experiment write-ups, or conclusion sections. Also trigger when users paste LaTeX content and ask for writing help, mention "camera-ready", "rebuttal", "paper revision", or reference any academic venue or conference. This skill handles both full paper refinement and section-by-section editing.
The Baidu Baike Component is a knowledge service tool designed to query authoritative encyclopedia explanations for various nouns. Its core function is given a specific "noun" (object, person, location, concept, event, etc.) provided by the user, it returns a standardized, detailed entry explanation sourced from Baidu Baike.
Baidu Scholar Search - Search Chinese and English academic literature (journals, conferences, papers, etc.)
| name | update_tools |
| description | 在用户需要更新或者添加的mcp、函数工具列表时立即使用此技能。 |
智能助手的工具列表配置文件一般在用户的工作目录下,文件名称为:TOOLS_CONFIG.json,包括mcp-std、远程的mcp-sse、本地函数具体的格式为:
[
{
"name": "mcp1",
"type": "mcp-sse",
"config": {
"url": "https://example.com/sse",
"token": "xxx", # 可选,若不需要鉴权可传空字符串 ""
"headers": {...}, # 可选,若提供则优先使用此 headers
"timeout": 20, # 可选,默认 20
"sse_read_timeout": 300 # 可选,默认 300
}
},
{
"name": "mcp2",
"type": "mcp-std",
"config": {
"command":"conda",
"args":[
"run",
"-n",
"drsai",
"--live-stream",
"python",
"/path/MCP_tools/mcp_std.py"
],
}
},
{
"name": "local_func",
"type": "local_func",
"config": {
"description": "A local function about local function",
"params": ["param1", "param2"],
"path": "/path/to/local_func.py",
"command": "python",
"args": ["/path/to/local_func.py"],
"env": {...}
}
}
]
TOOLS_CONFIG.json。/home/xiongdb/drsai/examples/agent_groupchat/MCP_tools/mcp_server.py,需要在conda环境为drsai下使用--live-stream执行,那么可以按照以下的格式添加:{
"name": "tools",
"type": "mcp-std",
"config": {
"command":"conda",
"args":[
"run",
"-n",
"drsai",
"--live-stream",
"python",
"/home/xiongdb/drsai/examples/agent_groupchat/MCP_tools/mcp_server.py"
],
}
}
http://192.168.23.415:42998/sse,那么可以按照以下的格式添加:{
"name": "sse_tools",
"type": "mcp-sse",
"config": {
"url": "https://example.com/sse",
"timeout": 20,
"sse_read_timeout": 300
}
}
/home/xiongdb/drsai/examples/agent_groupchat/assistant_skill/skills/pdf/scripts/convert_pdf_to_images.py的本地函数工具,函数名称为convert,参数有pdf_path, output_dir, max_dim,作用是将pdf文件转化为png图片,conda环境为drsai下使用,那么可以按照以下的格式添加:{
"name": "convert",
"type": "local_func",
"config": {
"description": "作用是将pdf文件转化为png图片",
"params": ["pdf_path", "output_dir", "max_dim"],
"path": "/home/xiongdb/drsai/examples/agent_groupchat/assistant_skill/skills/pdf/scripts/convert_pdf_to_images.py",
"command": "python",
"args": ["/home/xiongdb/drsai/examples/agent_groupchat/assistant_skill/skills/pdf/scripts/convert_pdf_to_images.py"],
"env": {"conda_env": "drsai"}
}
}