用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Dicklesworthstone/pi_agent_rust --skill minimax-web-search命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | minimax-web-search |
| description | Search the web for current information using the web_search tool |
Use this skill when you need to find current, real-time, or authoritative information that may have changed since my knowledge cutoff.
Call the web_search tool directly with a query:
web_search({ query: "your search query" })
Use web_search when:
Do NOT use web_search when:
read toolweb_search({
query: "your search query here"
})
Endpoint: POST {api_host}/v1/coding_plan/search
Request Body:
{
"q": "your search query"
}
Response Format:
{
"organic": [
{
"title": "Result Title",
"link": "https://example.com",
"snippet": "Brief description...",
"date": "2025-01-15"
}
],
"related_searches": [
{"query": "related query 1"},
{"query": "related query 2"}
],
"base_resp": {
"status_code": 0,
"status_msg": "success"
}
}
Results include:
You can use the suggestions to refine your search or ask the user which direction they'd like to explore.