Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
sanjay3290 avatar

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 manus

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs304
repo stars364
Last updatedJuly 9, 2026
Repositorysanjay3290/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

SKILL.mdMarkdownGitHub ↗

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

ParameterDescription
taskModechat, adaptive, or agent
projectIdAssociate with project for shared instructions
attachmentsArray of file objects (see below)
connectorsPre-configured connector IDs (Gmail, Calendar, Notion)
createShareableLinkEnable 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-lite for simple queries (faster, cheaper)
  • Use manus-1.6 or manus-1.6-max for research tasks
  • Always report task_url so user can view progress in browser
  • Poll status with reasonable intervals (5-10s for simple, 15-30s for research)
  • Check credit_usage field 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_KEY is 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.

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.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.