Manus AI Agent Use the Manus API to create autonomous AI tasks. Manus can browse the web, use tools, and deliver complete results (reports, code, presentations, etc.). API Base Authentication Header: Set via: - env var - Or in clawdbot config Recommended Workflow When using Manus for tasks that produce files (slides, reports, etc.): 1. Create the task with 2. Poll for completion using the task id 3. Extract output files from the response and download them locally 4. Deliver to user via direct file attachment (don't rely on manus.im share links) Create a Task Response: Agent Profiles | Profile…

\\t' read -r filename url; do\n if [ -n \"$filename\" ] && [ -n \"$url\" ]; then\n # Sanitize filename\n safe_name=$(echo \"$filename\" | tr -cd '[:alnum:]._-' | head -c 100)\n [ -z \"$safe_name\" ] && safe_name=\"output_file\"\n echo \"Downloading: $safe_name\" >&2\n curl -sL \"$url\" -o \"$output_dir/$safe_name\"\n echo \"$output_dir/$safe_name\"\n fi\n done\n ;;\n \n list)\n # List tasks: manus.sh list\n curl -s \"$API_BASE/tasks\" \\\n -H \"API_KEY: $MANUS_API_KEY\"\n ;;\n \n *)\n echo \"Usage: manus.sh \u003ccommand> [args]\"\n echo \"\"\n echo \"Commands:\"\n echo \" create \\\"prompt\\\" [profile] - Create a new task (default: manus-1.6)\"\n echo \" get \u003ctask_id> - Get full task details\"\n echo \" status \u003ctask_id> - Get task status (pending/running/completed/failed)\"\n echo \" wait \u003ctask_id> [timeout] - Wait for task completion (default: 600s)\"\n echo \" files \u003ctask_id> - List output files\"\n echo \" download \u003ctask_id> [dir] - Download all output files\"\n echo \" list - List all tasks\"\n echo \"\"\n echo \"Profiles: manus-1.6 (default), manus-1.6-lite, manus-1.6-max\"\n exit 1\n ;;\nesac\n","content_type":"application/x-sh; charset=utf-8","language":"bash","size":3471,"content_sha256":"3415438d630b16a21f48c05eba5326d881549f5c5c972fa2edf1cb2ba53f233a"}],"content_json":{"type":"doc","content":[{"type":"heading","attrs":{"level":1},"content":[{"text":"Manus AI Agent","type":"text"}]},{"type":"paragraph","content":[{"text":"Use the Manus API to create autonomous AI tasks. Manus can browse the web, use tools, and deliver complete results (reports, code, presentations, etc.).","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"API Base","type":"text"}]},{"type":"paragraph","content":[{"text":"https://api.manus.ai/v1","type":"text","marks":[{"type":"code_inline"}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Authentication","type":"text"}]},{"type":"paragraph","content":[{"text":"Header: ","type":"text"},{"text":"API_KEY: \u003cyour-key>","type":"text","marks":[{"type":"code_inline"}]}]},{"type":"paragraph","content":[{"text":"Set via:","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"MANUS_API_KEY","type":"text","marks":[{"type":"code_inline"}]},{"text":" env var","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Or ","type":"text"},{"text":"skills.manus.apiKey","type":"text","marks":[{"type":"code_inline"}]},{"text":" in clawdbot config","type":"text"}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Recommended Workflow","type":"text"}]},{"type":"paragraph","content":[{"text":"When using Manus for tasks that produce files (slides, reports, etc.):","type":"text"}]},{"type":"ordered_list","attrs":{"order":1,"listStyle":"number"},"content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Create the task","type":"text","marks":[{"type":"strong"}]},{"text":" with ","type":"text"},{"text":"createShareableLink: true","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Poll for completion","type":"text","marks":[{"type":"strong"}]},{"text":" using the task_id","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Extract output files","type":"text","marks":[{"type":"strong"}]},{"text":" from the response and download them locally","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Deliver to user","type":"text","marks":[{"type":"strong"}]},{"text":" via direct file attachment (don't rely on manus.im share links)","type":"text"}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Create a Task","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"bash"},"content":[{"text":"curl -X POST \"https://api.manus.ai/v1/tasks\" \\\n -H \"API_KEY: $MANUS_API_KEY\" \\\n -H \"Content-Type: application/json\" \\\n -d '{\n \"prompt\": \"Your task description here\",\n \"agentProfile\": \"manus-1.6\",\n \"taskMode\": \"agent\",\n \"createShareableLink\": true\n }'","type":"text"}]},{"type":"paragraph","content":[{"text":"Response:","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"json"},"content":[{"text":"{\n \"task_id\": \"abc123\",\n \"task_title\": \"Task Title\",\n \"task_url\": \"https://manus.im/app/abc123\"\n}","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Agent Profiles","type":"text"}]},{"type":"table","attrs":{"layout":null},"content":[{"type":"tr","content":[{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Profile","type":"text"}]}]},{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Description","type":"text"}]}]},{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Use for","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"manus-1.6","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Standard (default)","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Most tasks","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"manus-1.6-lite","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Faster, lighter","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Quick/simple stuff","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"manus-1.6-max","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Complex, thorough","type":"text"}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Deep research/analysis","type":"text"}]}]}]}]},{"type":"paragraph","content":[{"text":"Default:","type":"text","marks":[{"type":"strong"}]},{"text":" Always use ","type":"text"},{"text":"manus-1.6","type":"text","marks":[{"type":"code_inline"}]},{"text":" unless user specifies otherwise.","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Task Modes","type":"text"}]},{"type":"table","attrs":{"layout":null},"content":[{"type":"tr","content":[{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Mode","type":"text"}]}]},{"type":"th","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Description","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"chat","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Conversational mode","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"adaptive","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Auto-selects best approach","type":"text"}]}]}]},{"type":"tr","content":[{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"agent","type":"text","marks":[{"type":"code_inline"}]}]}]},{"type":"td","attrs":{"colspan":1,"rowspan":1,"colwidth":null,"alignment":""},"content":[{"type":"paragraph","content":[{"text":"Full autonomous agent mode (recommended for file creation)","type":"text"}]}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Get Task Status & Output","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"bash"},"content":[{"text":"curl \"https://api.manus.ai/v1/tasks/{task_id}\" \\\n -H \"API_KEY: $MANUS_API_KEY\"","type":"text"}]},{"type":"paragraph","content":[{"text":"Status values: ","type":"text"},{"text":"pending","type":"text","marks":[{"type":"code_inline"}]},{"text":", ","type":"text"},{"text":"running","type":"text","marks":[{"type":"code_inline"}]},{"text":", ","type":"text"},{"text":"completed","type":"text","marks":[{"type":"code_inline"}]},{"text":", ","type":"text"},{"text":"failed","type":"text","marks":[{"type":"code_inline"}]}]},{"type":"paragraph","content":[{"text":"Important:","type":"text","marks":[{"type":"strong"}]},{"text":" When status is ","type":"text"},{"text":"completed","type":"text","marks":[{"type":"code_inline"}]},{"text":", check the ","type":"text"},{"text":"output","type":"text","marks":[{"type":"code_inline"}]},{"text":" array for files:","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Look for ","type":"text"},{"text":"type: \"output_file\"","type":"text","marks":[{"type":"code_inline"}]},{"text":" entries","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Download files from ","type":"text"},{"text":"fileUrl","type":"text","marks":[{"type":"code_inline"}]},{"text":" directly","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Save locally and send to user as attachments","type":"text"}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Extracting Output Files","type":"text"}]},{"type":"paragraph","content":[{"text":"The task response includes output like:","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"json"},"content":[{"text":"{\n \"output\": [\n {\n \"content\": [\n {\n \"type\": \"output_file\",\n \"fileUrl\": \"https://private-us-east-1.manuscdn.com/...\",\n \"fileName\": \"presentation.pdf\"\n }\n ]\n }\n ]\n}","type":"text"}]},{"type":"paragraph","content":[{"text":"Download these files with curl and deliver directly to the user rather than relying on share URLs.","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"List Tasks","type":"text"}]},{"type":"code_block","attrs":{"wrap":false,"language":"bash"},"content":[{"text":"curl \"https://api.manus.ai/v1/tasks\" \\\n -H \"API_KEY: $MANUS_API_KEY\"","type":"text"}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Best Practices","type":"text"}]},{"type":"ordered_list","attrs":{"order":1,"listStyle":"number"},"content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Always poll for completion","type":"text","marks":[{"type":"strong"}]},{"text":" before telling user the task is done","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Download output files locally","type":"text","marks":[{"type":"strong"}]},{"text":" instead of giving manus.im links (they can be unreliable)","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Use ","type":"text","marks":[{"type":"strong"}]},{"text":"agent","type":"text","marks":[{"type":"code_inline"},{"type":"strong"}]},{"text":" mode","type":"text","marks":[{"type":"strong"}]},{"text":" for tasks that create files/documents","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Set reasonable expectations","type":"text","marks":[{"type":"strong"}]},{"text":" — Manus tasks can take 2-10+ minutes for complex work","type":"text"}]}]}]},{"type":"heading","attrs":{"level":2},"content":[{"text":"Docs","type":"text"}]},{"type":"bullet_list","content":[{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"API Reference: https://open.manus.ai/docs","type":"text"}]}]},{"type":"list_item","content":[{"type":"paragraph","content":[{"text":"Main Docs: https://manus.im/docs","type":"text"}]}]}]},{"type":"hr","attrs":{"markup":"---"}}]},"metadata":{"date":"2026-06-05","name":"manus","author":"@skillopedia","source":{"stars":609,"repo_name":"awesome-openclaw-skills","origin_url":"https://github.com/sundial-org/awesome-openclaw-skills/blob/HEAD/skills/manus/SKILL.md","repo_owner":"sundial-org","body_sha256":"8669c18d3a8be62d3f084d693cc69b5423f67b00be071f9178921a61c75a32aa","cluster_key":"970eaed9fb94c3ec91a8be823cb3940389f2d0bc5f9fbff65aed6c67c5bff3a5","clean_bundle":{"format":"clean-skill-bundle-v1","source":"sundial-org/awesome-openclaw-skills/skills/manus/SKILL.md","attachments":[{"id":"b1b5b4ce-d768-5eda-a548-c0169e3722bf","key":"uploads/10433ee7-ad12-4ae0-b34e-97553e46c6c8/b1b5b4ce-d768-5eda-a548-c0169e3722bf/attachment.sh","path":"scripts/manus.sh","size":3471,"sha256":"3415438d630b16a21f48c05eba5326d881549f5c5c972fa2edf1cb2ba53f233a","contentType":"application/x-sh; charset=utf-8"}],"bundle_sha256":"1a91c241aa9c5c9ab1e96308d61cab6d5014320280800ac1e07ccd00a8822caf","attachment_count":1,"text_attachments":1,"attachment_storage":"skillopedia-attachments-v1","binary_attachments":0,"excluded_attachments":[]},"cluster_size":1,"skill_md_path":"skills/manus/SKILL.md","import_metadata":{"date":"2026-06-05","author":"@skillopedia","version":"v1","category":"browser-automation-scraping","category_label":"Browser"},"exact_dupes_collapsed_into_this":0},"version":"v1","category":"browser-automation-scraping","homepage":"https://manus.im","metadata":{"clawdbot":{"emoji":"🤖","requires":{"env":["MANUS_API_KEY"]},"primaryEnv":"MANUS_API_KEY"}},"import_tag":"clean-skills-v1","description":"Create and manage AI agent tasks via Manus API. Manus is an autonomous AI agent that can browse the web, use tools, and deliver complete work products."}},"renderedAt":1782987187851}

Manus AI Agent Use the Manus API to create autonomous AI tasks. Manus can browse the web, use tools, and deliver complete results (reports, code, presentations, etc.). API Base Authentication Header: Set via: - env var - Or in clawdbot config Recommended Workflow When using Manus for tasks that produce files (slides, reports, etc.): 1. Create the task with 2. Poll for completion using the task id 3. Extract output files from the response and download them locally 4. Deliver to user via direct file attachment (don't rely on manus.im share links) Create a Task Response: Agent Profiles | Profile…