manus
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.
npx skills add majiayu000/claude-skill-registry --skill manus --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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 `https://api.manus.ai/v1` ## Authentication Header: `API_KEY: <your-key>` Set via: - `MANUS_API_KEY` env var - Or `skills.manus.apiKey` in clawdbot config ## Recommended Workflow When using Manus for tasks that produce files (slides, reports, etc.): 1. **Create the task** with `createShareableLink: true` 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 ```bash curl -X POST "https://api.manus.ai/v1/tasks" \ -H "API_KEY: $MANUS_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "prompt": "Your task description here", "agentProfile": "manus-1.6", "taskMode": "agent", "createShareableLink": true }' ``` Response: ```json { "task_id": "abc123", "task_title": "Task Title", "task_url": "https://manus.im/app/abc123" } ``` ## Agent Profiles | Profile | Description | Use for | |---------|-------------|---------| | `manus-1.6` | Standard (def
- API Base
- Authentication
- Recommended Workflow
- Create a Task
- Agent Profiles
- Task Modes
- Get Task Status & Output
- Extracting Output Files
- List Tasks
- Best Practices
- Docs
curl -X POST "https://api.manus.ai/v1/tasks" \
curl "https://api.manus.ai/v1/tasks/{task_id}" \
curl "https://api.manus.ai/v1/tasks" \What does the manus skill do?
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.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill manus --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
