# Send Manus AI Skill for OpenClaw to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "openclaw-skill-manus",
    "name": "Manus AI Skill for OpenClaw",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/disi3r/openclaw-skill-manus",
    "canonicalUrl": "https://clawhub.ai/disi3r/openclaw-skill-manus",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclaw-skill-manus",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclaw-skill-manus",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "config.yaml",
      "package.json",
      "scripts/check_status.py",
      "scripts/create_project.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/openclaw-skill-manus"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/openclaw-skill-manus",
    "downloadUrl": "https://openagent3.xyz/downloads/openclaw-skill-manus",
    "agentUrl": "https://openagent3.xyz/skills/openclaw-skill-manus/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclaw-skill-manus/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclaw-skill-manus/agent.md"
  }
}
```
## Documentation

### Manus AI Skill

Agente de IA autónomo con acceso a internet, capaz de ejecutar tareas complejas, investigar, desarrollar software, automatizar workflows y generar contenido multimedia.

### API Key

La API key se configura en la variable de entorno MANUS_API_KEY:

export MANUS_API_KEY="sk-..."
# O en ~/.clawdbot/clawdbot.json:
# "skills.manus.apiKey": "sk-..."

### Endpoints

EndpointDescripciónhttps://api.manus.ai/v1/tasksCrear y gestionar tareashttps://api.manus.ai/v1/projectsGestión de proyectoshttps://api.manus.ai/v1/filesSubir archivoshttps://api.manus.ai/v1/webhooksWebhooks para notificaciones

### Crear una tarea simple

cd /home/disier/clawd/skills/manus/scripts
python3 run_task.py "Investiga las últimas noticias de IA"

### Conectores integrados

# Gmail
python3 run_task.py "Revisa mis correos de hoy en Gmail y resumenlos"

# Notion
python3 run_task.py "Crea una página en Notion con el resumen de esta reunión"

# Google Calendar
python3 run_task.py "Agenda una reunión para mañana a las 3pm"

# Slack
python3 run_task.py "Envía un resumen al canal de #updates en Slack"

### Scripts Disponibles

ScriptDescripciónrun_task.pyEjecuta una tarea básicacreate_project.pyCrea un proyectoupload_file.pySube archivoscheck_status.pyConsulta estado de tareaget_result.pyObtiene resultadowebhook_server.pyServidor de webhooks

### run_task.py - Ejecutar tarea básica

python3 run_task.py "TU_PROMPT_AQUI" [--timeout SEGUNDOS]

Ejemplo:

# Investigación
python3 run_task.py "Investiga las regulaciones de IA en la UE 2026"

# Desarrollo
python3 run_task.py "Crea una web app de todo list con React"

# Escritura
python3 run_task.py "Escribe un artículo sobre automatización de workflows"

# Automatización
python3 run_task.py "Reserva un vuelo de NYC a LA para el 15 de marzo"

### create_project.py - Crear proyecto

python3 create_project.py "Nombre del proyecto" "Descripción"

### upload_file.py - Subir archivos

python3 upload_file.py /ruta/al/archivo.txt

Útil para:

Contexto adicional
Archivos de datos
Documentos de referencia

### check_status.py - Ver estado

python3 check_status.py TASK_ID

Estados posibles:

pending - En cola
running - Ejecutando
completed - Completado
failed - Falló

### get_result.py - Obtener resultado

python3 get_result.py TASK_ID

Devuelve el resultado completo de la tarea.

### Conectores

Manus incluye conectores integrados:

### Gmail

python3 run_task.py "Lee mis últimos 5 correos de Gmail y extrae los puntos importantes"

### Notion

python3 run_task.py "Crea una base de datos en Notion para tracking de proyectos"

### Google Calendar

python3 run_task.py "Lee mi agenda de hoy y muéstrame mis reuniones"

### Slack

python3 run_task.py "Publica un mensaje en el canal #anuncios"

### Similarweb

python3 run_task.py "Analiza el tráfico de disier.tech usando Similarweb"

### Recibir notificaciones

python3 webhook_server.py 8080

El servidor escucha en el puerto especificado y muestra notificaciones de tareas completadas.

### OpenAI Compatibilidad

Manus es compatible con el SDK de OpenAI:

from openai import OpenAI

client = OpenAI(
    api_key="sk-...",  # Tu API key de Manus
    base_url="https://api.manus.ai/v1"
)

response = client.chat.completions.create(
    model="manus-1.6-adaptive",
    messages=[{"role": "user", "content": "Hello!"}]
)

### En un agente:

Cuando necesites investigación profunda o desarrollo:
1. Usa el script run_task.py de la skill manus
2. Especifica el prompt claro
3. Espera el resultado
4. Integra la respuesta

### Ejemplo completo:

# Investigar y crear contenido
python3 run_task.py "Investiga 5 tendencias de tecnología para 2026 y escribe un artículo de 1000 palabras"

# Con archivo de contexto
python3 upload_file.py contexto.md
python3 run_task.py "Basándote en el archivo subido, crea una presentación"

### Prompts efectivos

✅ Buenos:

"Investiga las regulaciones de IA en la UE y resume los puntos clave"
"Crea una web app de clima con React y OpenWeatherMap"
"Analiza los últimos 10 tweets de una cuenta y genera un reporte"

❌ Evitar:

"Haz algo útil" (muy vago)
"Mejora esto" (sin contexto)

### Con archivos

Para contexto adicional, sube archivos primero:

python3 upload_file.py datos.csv
python3 run_task.py "Analiza este CSV y genera un reporte de ventas"

### Tareas largas

Para tareas que pueden tomar tiempo:

python3 run_task.py "Investiga a profundidad el mercado de IA" --timeout 300

### Costo

Las tareas consumen créditos. Ver uso con:

curl "https://api.manus.ai/v1/usage" \\
  -H "API_KEY: sk-..."

### Notas

Las tareas ejecutan en sandbox aislado
Tiene acceso a internet completo
Puede instalar software
Mantiene sesiones de servicios autenticados
Tiempo de ejecución variable según complejidad
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: disi3r
- Version: 0.1.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclaw-skill-manus)
- [Send to Agent page](https://openagent3.xyz/skills/openclaw-skill-manus/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclaw-skill-manus/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclaw-skill-manus/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclaw-skill-manus)