
Manus
- 304 installs
- 364 repo stars
- Updated July 9, 2026
- sanjay3290/ai-skills
manus is a Claude Code skill that delegates long-running research and analysis tasks to the Manus autonomous agent API for developers who need parallel web research with structured reports.
About
manus is a Claude Code skill (version 1.0, Apache-2.0) that offloads complex, asynchronous work to the Manus AI agent at api.manus.ai. It guides agents to create tasks via POST /v1/tasks, poll status until completed or failed, and extract markdown output plus file attachments such as CSVs and charts. Three agent profiles—manus-1.6-lite, manus-1.6, and manus-1.6-max—trade speed against depth for lookups, standard research, and multi-source analysis. Developers reach for manus when a prompt needs 1–10+ minutes of autonomous browsing, stock or market research, product comparisons, or document generation that exceeds inline agent context. The skill requires MANUS_API_KEY, supports multi-turn follow-ups with taskId, and recommends polling every 5–10 seconds while reporting task_url for browser progress tracking.
- Extends Claude Code agent capabilities
- Activates on relevant task triggers
- Integrates with Claude Code workflow
Manus by the numbers
- 304 all-time installs (skills.sh)
- +9 installs in the week ending Jul 26, 2026 (Skillselion tracking)
- Ranked #2,249 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/sanjay3290/ai-skills --skill manusAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 304 |
|---|---|
| repo stars | ★ 364 |
| Last updated | July 9, 2026 |
| Repository | sanjay3290/ai-skills ↗ |
How do you delegate deep research to Manus API?
manus: agent skill for task automation in Claude Code workflows.
Who is it for?
Developers using Claude Code who need autonomous multi-source web research, financial analysis, or long-running report generation via the Manus API.
Skip if: Developers who need inline code edits, local repository changes, or tasks completable in seconds without an external MANUS_API_KEY.
When should I use this skill?
The user says use manus, delegate to manus, or needs deep web research, market analysis, or multi-step autonomous reports.
What you get
Manus task IDs, status-polled research reports, markdown output text, CSV exports, charts, and file attachment URLs.
- Manus research reports
- CSV and chart attachments
- task_url progress links
By the numbers
- Skill metadata version 1.0 with Apache-2.0 license
- Documents 3 Manus agent profiles: manus-1.6-lite, manus-1.6, and manus-1.6-max
- Recommends polling Manus task status every 5–10 seconds until completion
Files
Manus
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.
When to Use Manus
- Deep research - Market analysis, competitive landscaping, product comparisons
- Stock/financial analysis - Company research, technical analysis, price charts
- Product research - Feature comparisons across brands, specs analysis
- Report generation - Creates markdown reports, CSVs, charts, and visualizations
- Multi-source synthesis - Gathers and combines information from multiple websites
- Long-running tasks - Anything taking 1-10+ minutes of autonomous work
Research Prompt Examples
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].Environment Setup
Requires MANUS_API_KEY environment variable. Base URL: https://api.manus.ai
Core Workflow
1. Create task → Returns task_id immediately 2. Poll status → Check until status is completed or failed 3. Return results → Extract output text and file attachments
Creating a Task
curl -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"}Checking Task Status
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)"'Listing Tasks
curl -s -X GET "https://api.manus.ai/v1/tasks" -H "API_KEY:$MANUS_API_KEY" | jq '.data[] | {id, status, title: .metadata.task_title}'Multi-turn Conversations
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"}'Delete a Task
curl -s -X DELETE "https://api.manus.ai/v1/tasks/{task_id}" -H "API_KEY:$MANUS_API_KEY"Advanced Options
| 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) |
createShareableLink | Enable public access URL |
File Attachments
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"}]}Projects
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"}'Best Practices
- Use
manus-1.6-litefor simple queries (faster, cheaper) - Use
manus-1.6ormanus-1.6-maxfor research tasks - Always report
task_urlso user can view progress in browser - Poll status with reasonable intervals (5-10s for simple, 15-30s for research)
- Check
credit_usagefield to track consumption - For research: be specific about scope, timeframe, sources, and desired output format
- Research tasks typically produce multiple output files (reports, CSVs, charts) - extract all attachments
- Manus uses parallel processing for multi-faceted research - one prompt can cover multiple angles
Error Handling
Check 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:
- Invalid API key → Check
MANUS_API_KEYis set - Task timeout → Simplify prompt or use
manus-1.6-max - Rate limited → Wait and retry
API Reference
For complete endpoint documentation, see references/api.md.
Manus API Reference
Base URL: https://api.manus.ai Authentication: API_KEY header
Tasks
Create Task
POST /v1/tasks
Request:
{
"prompt": "string (required)",
"agentProfile": "manus-1.6-lite | manus-1.6 | manus-1.6-max",
"taskMode": "chat | adaptive | agent",
"taskId": "string (for multi-turn)",
"projectId": "string",
"attachments": [],
"connectors": [],
"createShareableLink": false,
"hideInTaskList": false,
"interactiveMode": false,
"locale": "en-US"
}Response:
{
"task_id": "string",
"task_title": "string",
"task_url": "string",
"share_url": "string (if createShareableLink=true)"
}Get Task
GET /v1/tasks/{task_id}
Response:
{
"id": "string",
"object": "task",
"created_at": "unix timestamp",
"updated_at": "unix timestamp",
"status": "pending | running | completed | failed",
"model": "string",
"metadata": {
"task_title": "string",
"task_url": "string"
},
"output": [
{
"id": "string",
"role": "user | assistant",
"type": "message",
"status": "completed",
"content": [
{"type": "output_text", "text": "string"},
{"type": "output_file", "fileName": "string", "fileUrl": "string", "mimeType": "string"}
]
}
],
"credit_usage": 0,
"error": "string (if failed)"
}List Tasks
GET /v1/tasks
Update Task
PUT /v1/tasks/{task_id}
Delete Task
DELETE /v1/tasks/{task_id}
Projects
Create Project
POST /v1/projects
Request:
{
"name": "string (required)",
"instruction": "string"
}Response:
{
"id": "string",
"name": "string",
"instruction": "string",
"created_at": "unix timestamp"
}List Projects
GET /v1/projects
Files
Create File Upload
POST /v1/files
Request:
{
"filename": "string"
}Response:
{
"id": "string",
"object": "file",
"filename": "string",
"status": "pending",
"upload_url": "presigned S3 URL",
"upload_expires_at": "unix timestamp",
"created_at": "unix timestamp"
}Upload file to upload_url via PUT request within 3 minutes.
List Files
GET /v1/files
Get File
GET /v1/files/{file_id}
Delete File
DELETE /v1/files/{file_id}
Webhooks
Create Webhook
POST /v1/webhooks
Delete Webhook
DELETE /v1/webhooks/{webhook_id}
Webhook Events:
task_created- Task initializedtask_progress- Status updates during executiontask_stopped- Completed or needs input (stop_reason:finishorask)
Related skills
How it compares
Pick manus when research needs minutes of autonomous parallel web browsing and file outputs rather than quick inline answers from the local coding agent.
FAQ
Which Manus agent profile should I use?
The manus skill documents three profiles: manus-1.6-lite for fast simple lookups, manus-1.6 as the default for standard research, and manus-1.6-max for deep multi-source analysis and detailed reports.
What API key does the manus skill require?
The manus skill requires MANUS_API_KEY in the environment and sends requests to https://api.manus.ai with an API_KEY authorization header on task create, status, list, and delete endpoints.
How does manus return research results?
The manus skill polls GET /v1/tasks/{task_id} until status is completed, then extracts assistant output_text blocks and output_file attachments such as reports, CSVs, and charts from the JSON response.