npx skills add https://github.com/sanjay3290/ai-skills --skill manusManus 是一款异步处理复杂任务的自主 AI 代理。尤其擅长深度研究,具备并行处理、网络浏览以及生成包含数据可视化的综合报告的能力。
有效的研究提示词应明确界定范围、来源和期望的输出格式:
产品对比:
Find the best 4K monitors for Mac with Thunderbolt connectivity and 120Hz+ refresh rate.
Focus on BenQ, Samsung, Dell, LG. Only include models released in the last year.
Compare specs, prices, and Mac-specific features. Output a comparison table.
股票/公司分析:
Analyze [TICKER] stock: company profile, recent performance, technical indicators,
valuation metrics, and insider activity. Include a price chart for the past year.
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
市场研究:
Research the [industry] market: key players, market size, growth trends,
recent developments, and competitive landscape. Focus on [region/segment].
竞争分析:
Compare [Product A] vs [Product B] vs [Product C]: features, pricing,
user reviews, pros/cons. Create a decision matrix for [use case].
需要设置 MANUS_API_KEY 环境变量。基础 URL:https://api.manus.ai
task_idstatus 变为 completed 或 failedcurl -s -X POST "https://api.manus.ai/v1/tasks" -H "API_KEY:$MANUS_API_KEY" -H "Content-Type:application/json" -d '{"prompt":"<task description>","agentProfile":"manus-1.6"}'
代理配置文件:
manus-1.6-lite - 快速,适用于简单任务(快速查找、简单问题)manus-1.6 - 标准(默认,适用于大多数研究任务)manus-1.6-max - 复杂推理(深度研究、多源分析、详细报告)响应:
{"task_id":"abc123","task_title":"...","task_url":"https://manus.im/app/abc123"}
curl -s -X GET "https://api.manus.ai/v1/tasks/{task_id}" -H "API_KEY:$MANUS_API_KEY"
状态值: pending, running, completed, failed
每 5-10 秒轮询一次,直到任务完成。
提取文本输出:
curl -s -X GET "https://api.manus.ai/v1/tasks/{task_id}" -H "API_KEY:$MANUS_API_KEY" | jq -r '.output[] | select(.role=="assistant") | .content[] | select(.type=="output_text") | .text'
提取文件附件:
curl -s -X GET "https://api.manus.ai/v1/tasks/{task_id}" -H "API_KEY:$MANUS_API_KEY" | jq -r '.output[] | select(.role=="assistant") | .content[] | select(.type=="output_file") | "\(.fileName): \(.fileUrl)"'
curl -s -X GET "https://api.manus.ai/v1/tasks" -H "API_KEY:$MANUS_API_KEY" | jq '.data[] | {id, status, title: .metadata.task_title}'
通过包含 taskId 来继续现有任务:
curl -s -X POST "https://api.manus.ai/v1/tasks" -H "API_KEY:$MANUS_API_KEY" -H "Content-Type:application/json" -d '{"prompt":"follow-up question","taskId":"abc123","agentProfile":"manus-1.6"}'
curl -s -X DELETE "https://api.manus.ai/v1/tasks/{task_id}" -H "API_KEY:$MANUS_API_KEY"
| 参数 | 描述 |
|---|---|
taskMode | chat, adaptive, 或 agent |
projectId | 关联到项目以共享指令 |
attachments | 文件对象数组(见下文) |
connectors | 预配置的连接器 ID(Gmail, Calendar, Notion) |
createShareableLink | 启用公开访问 URL |
使用以下三种格式之一附加文件:
URL 附件:
{"prompt":"Analyze this","attachments":[{"type":"url","url":"https://example.com/doc.pdf"}]}
Base64 附件:
{"prompt":"What's in this image?","attachments":[{"type":"base64","data":"<base64>","mime_type":"image/png"}]}
文件 ID(上传后):
{"prompt":"Review this file","attachments":[{"type":"file","file_id":"file-xxx"}]}
创建带有共享指令的项目:
curl -s -X POST "https://api.manus.ai/v1/projects" -H "API_KEY:$MANUS_API_KEY" -H "Content-Type:application/json" -d '{"name":"My Project","instruction":"Always respond concisely"}'
在任务中使用项目:
curl -s -X POST "https://api.manus.ai/v1/tasks" -H "API_KEY:$MANUS_API_KEY" -H "Content-Type:application/json" -d '{"prompt":"...","projectId":"proj_xxx","agentProfile":"manus-1.6"}'
manus-1.6-lite(更快、更便宜)manus-1.6 或 manus-1.6-maxtask_url,以便用户可以在浏览器中查看进度credit_usage 字段以跟踪消耗检查失败的任务:
curl -s -X GET "https://api.manus.ai/v1/tasks/{task_id}" -H "API_KEY:$MANUS_API_KEY" | jq '{status, error}'
如果 status 是 failed,error 字段包含原因。常见问题:
MANUS_API_KEY 是否已设置manus-1.6-max完整的端点文档,请参阅 references/api.md。
每周安装量
81
代码仓库
GitHub 星标数
172
首次出现
2026年2月3日
安全审计
安装于
gemini-cli77
codex76
opencode75
github-copilot72
cursor72
amp69
Manus is an autonomous AI agent that handles complex tasks asynchronously. Particularly strong at deep research with parallel processing, web browsing, and generating comprehensive reports with data visualizations.
Effective research prompts are specific about scope, sources, and desired output:
Product comparison:
Find the best 4K monitors for Mac with Thunderbolt connectivity and 120Hz+ refresh rate.
Focus on BenQ, Samsung, Dell, LG. Only include models released in the last year.
Compare specs, prices, and Mac-specific features. Output a comparison table.
Stock/company analysis:
Analyze [TICKER] stock: company profile, recent performance, technical indicators,
valuation metrics, and insider activity. Include a price chart for the past year.
Market research:
Research the [industry] market: key players, market size, growth trends,
recent developments, and competitive landscape. Focus on [region/segment].
Competitive analysis:
Compare [Product A] vs [Product B] vs [Product C]: features, pricing,
user reviews, pros/cons. Create a decision matrix for [use case].
Requires MANUS_API_KEY environment variable. Base URL: https://api.manus.ai
task_id immediatelystatus is completed or failedcurl -s -X POST "https://api.manus.ai/v1/tasks" -H "API_KEY:$MANUS_API_KEY" -H "Content-Type:application/json" -d '{"prompt":"<task description>","agentProfile":"manus-1.6"}'
Agent Profiles:
manus-1.6-lite - Fast, simple tasks (quick lookups, simple questions)manus-1.6 - Standard (default, good for most research)manus-1.6-max - Complex reasoning (deep research, multi-source analysis, detailed reports)Response:
{"task_id":"abc123","task_title":"...","task_url":"https://manus.im/app/abc123"}
curl -s -X GET "https://api.manus.ai/v1/tasks/{task_id}" -H "API_KEY:$MANUS_API_KEY"
Status values: pending, running, completed, failed
Poll every 5-10 seconds until completed.
Extract text output:
curl -s -X GET "https://api.manus.ai/v1/tasks/{task_id}" -H "API_KEY:$MANUS_API_KEY" | jq -r '.output[] | select(.role=="assistant") | .content[] | select(.type=="output_text") | .text'
Extract file attachments:
curl -s -X GET "https://api.manus.ai/v1/tasks/{task_id}" -H "API_KEY:$MANUS_API_KEY" | jq -r '.output[] | select(.role=="assistant") | .content[] | select(.type=="output_file") | "\(.fileName): \(.fileUrl)"'
curl -s -X GET "https://api.manus.ai/v1/tasks" -H "API_KEY:$MANUS_API_KEY" | jq '.data[] | {id, status, title: .metadata.task_title}'
Continue an existing task by including taskId:
curl -s -X POST "https://api.manus.ai/v1/tasks" -H "API_KEY:$MANUS_API_KEY" -H "Content-Type:application/json" -d '{"prompt":"follow-up question","taskId":"abc123","agentProfile":"manus-1.6"}'
curl -s -X DELETE "https://api.manus.ai/v1/tasks/{task_id}" -H "API_KEY:$MANUS_API_KEY"
| Parameter | Description |
|---|---|
taskMode | chat, adaptive, or agent |
projectId | Associate with project for shared instructions |
attachments | Array of file objects (see below) |
connectors | Pre-configured connector IDs (Gmail, Calendar, Notion) |
Attach files using one of three formats:
URL attachment:
{"prompt":"Analyze this","attachments":[{"type":"url","url":"https://example.com/doc.pdf"}]}
Base64 attachment:
{"prompt":"What's in this image?","attachments":[{"type":"base64","data":"<base64>","mime_type":"image/png"}]}
File ID (after upload):
{"prompt":"Review this file","attachments":[{"type":"file","file_id":"file-xxx"}]}
Create a project with shared instructions:
curl -s -X POST "https://api.manus.ai/v1/projects" -H "API_KEY:$MANUS_API_KEY" -H "Content-Type:application/json" -d '{"name":"My Project","instruction":"Always respond concisely"}'
Use project in task:
curl -s -X POST "https://api.manus.ai/v1/tasks" -H "API_KEY:$MANUS_API_KEY" -H "Content-Type:application/json" -d '{"prompt":"...","projectId":"proj_xxx","agentProfile":"manus-1.6"}'
manus-1.6-lite for simple queries (faster, cheaper)manus-1.6 or manus-1.6-max for research taskstask_url so user can view progress in browsercredit_usage field to track consumptionCheck for failed tasks:
curl -s -X GET "https://api.manus.ai/v1/tasks/{task_id}" -H "API_KEY:$MANUS_API_KEY" | jq '{status, error}'
If status is failed, the error field contains the reason. Common issues:
MANUS_API_KEY is setmanus-1.6-maxFor complete endpoint documentation, see references/api.md.
Weekly Installs
81
Repository
GitHub Stars
172
First Seen
Feb 3, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykWarn
Installed on
gemini-cli77
codex76
opencode75
github-copilot72
cursor72
amp69
React 组合模式指南:Vercel 组件架构最佳实践,提升代码可维护性
120,000 周安装
createShareableLink| Enable public access URL |