Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

manus-ai-agent-integrationmanus AI Agent 集成

Agent Skill

manus-ai-agent-integration 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

14,299

周安装

668

GitHub Stars

10

下载量

4,927
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:manus-ai-agent-integration(manus AI Agent 集成)
来源仓库:https://github.com/willsigmon/sigstack
仓库路径:skills/manus-ai-agent-integration
安装命令:
npx skills add https://github.com/willsigmon/sigstack --skill 'Manus AI Agent Integration'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/willsigmon/sigstack --skill 'Manus AI Agent Integration'

简介

manus-ai-agent-integration 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于 AI Agent 集成、多工具协同或智能代理配置场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件操作。
  • 具体用法可结合原始 README 和仓库内容进一步核验。

SKILL.md

Manus AI Agent Integration

Use this skill when delegating complex autonomous tasks to Manus AI - an AI agent that can browse the web, execute code, generate files, and complete multi-step workflows independently.

When to Use Manus

  • Research tasks: Market research, competitor analysis, fact-checking
  • Content creation: Presentations, videos, websites, documents
  • Data processing: PDF translation, data analysis, report generation
  • Development: Chrome extensions, proof of concepts, prototypes
  • Planning: Trip planning, fitness plans, business strategies

API Reference

Base URL

https://api.manus.ai/v1

Authentication

# Header authentication
API_KEY: your-api-key

Create Task

POST /v1/tasks
Content-Type: application/json
API_KEY: $MANUS_API_KEY

{
  "prompt": "Your task description",
  "agentProfile": "manus-1.5",  # manus-1.5 | manus-1.5-lite | speed | quality
  "taskMode": "agent",          # agent | chat | adaptive (optional)
  "projectId": "proj_xxx",      # optional
  "connectors": ["uuid1"],      # optional - gmail, calendar, notion
  "attachments": []             # optional - files, URLs, base64
}

Response:

{
  "task_id": "TeBim6FDQf9peS52xHtAyh",
  "task_title": "Generated Title",
  "task_url": "https://manus.im/app/TeBim6FDQf9peS52xHtAyh"
}

Agent Profiles

ProfileBest For
manus-1.5Full capabilities - browsing, code, files (default)
manus-1.5-liteLighter tasks, faster response
speedQuick responses, simpler tasks
qualityComplex research, detailed outputs

Create Project

POST /v1/projects

{
  "name": "Project Name",
  "instruction": "Default instruction for all tasks in this project"
}

Webhooks

Register webhook for real-time notifications:

POST /v1/webhooks
{"url": "https://your-server.com/webhook"}

Webhook Events:

  • task_created - Task started
  • task_progress - Task making progress (plan updates)
  • task_stopped - Task completed or needs input

Webhook Payload (task_stopped):

{
  "event_type": "task_stopped",
  "task_detail": {
    "task_id": "xxx",
    "task_title": "...",
    "task_url": "https://manus.im/app/xxx",
    "message": "Completion message",
    "attachments": [
      {"file_name": "report.pdf", "url": "...", "size_bytes": 1234}
    ],
    "stop_reason": "finish"  # or "ask" if needs input
  }
}

CLI Usage

The manus CLI is installed at ~/.local/bin/manus:

# Set API key
export MANUS_API_KEY="sk-xxx"

# Create simple task
manus task "Summarize AI news from this week"

# Use quality mode for research
manus task -m quality "Research iOS 26 SwiftUI changes"

# Use playbook template
manus playbook use market-research "electric vehicles"
manus playbook use slide-generator "quarterly report"
manus playbook use video-generator "product demo"

# List all playbook templates
manus playbook list

# Create project with instruction
manus project create "Q4 Research" "Always cite sources"

# Task within project
manus task -p proj_xxx "Research task"

# Webhook management
manus webhook add https://my-server.com/hook
manus webhook remove webhook_id

Playbook Templates

Pre-built prompts for common use cases:

TemplateUse Case
market-researchComprehensive market analysis reports
slide-generatorProfessional presentations (PPT/PDF)
video-generatorAI-generated videos from prompts
website-builderBuild complete websites
resume-builderProfessional resumes
swot-analysisBusiness SWOT analysis
chrome-extensionBrowser extension development
trip-plannerTravel itineraries
influencer-finderYouTube creator discovery
fact-checkerClaim verification
pdf-translatorDocument translation
interior-designRoom/space design
fitness-coachCustom workout plans
startup-pocProof of concept prototypes
profile-builderResearch profiles on people/companies
sentiment-analyzerReddit sentiment analysis
viral-contentYouTube viral content analysis
business-canvasBusiness model canvas

Integration Patterns

From Claude Code via CLI

# Execute via Bash tool
manus task -m quality "Research SwiftUI changes in iOS 26 and create a migration checklist"

Direct API Call

curl -X POST "https://api.manus.ai/v1/tasks" \
  -H "API_KEY: $MANUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Analyze this codebase and suggest improvements",
    "agentProfile": "quality"
  }'

With Attachments

{
  "prompt": "Analyze this data",
  "attachments": [
    {"type": "url", "url": "https://example.com/data.csv"},
    {"type": "base64", "data": "...", "mimeType": "text/csv", "fileName": "data.csv"}
  ]
}

With Connectors

Available connectors (OAuth required at manus.im):

{
  "prompt": "Schedule a meeting based on my calendar availability",
  "connectors": ["calendar-connector-uuid"]
}

Webhook Server Example

Simple Python webhook receiver:

from flask import Flask, request, jsonify

app = Flask(__name__)

@app.route('/webhook', methods=['POST'])
def handle_webhook():
    event = request.json
    event_type = event.get('event_type')

    if event_type == 'task_created':
        print(f"Task started: {event['task_detail']['task_id']}")

    elif event_type == 'task_progress':
        print(f"Progress: {event['progress_detail']['message']}")

    elif event_type == 'task_stopped':
        detail = event['task_detail']
        if detail['stop_reason'] == 'finish':
            print(f"Completed: {detail['message']}")
            for att in detail.get('attachments', []):
                print(f"  File: {att['file_name']} - {att['url']}")
        else:
            print(f"Needs input: {detail['message']}")

    return jsonify({"status": "ok"})

if __name__ == '__main__':
    app.run(port=8080)

Error Codes

CodeMessageSolution
8credit limit exceededAdd credits at manus.im
401unauthorizedCheck API_KEY
400bad requestValidate JSON payload

Best Practices

  1. Use quality mode for complex research tasks
  2. Use projects to group related tasks with shared instructions
  3. Set up webhooks for async task monitoring
  4. Include context in prompts - Manus works better with specific details
  5. Use playbooks for common workflows - they're optimized prompts

Hybrid Workflow (Claude Code + Manus)

Use the ai-delegate CLI to intelligently route tasks:

# Analyze where a task should go
ai-delegate analyze "scrape competitor reviews from App Store"
ai-delegate analyze "refactor BibleService to use async/await"

# Auto-route based on analysis
ai-delegate run "your task description"

# Force routing
ai-delegate manus "generate PDF report"
ai-delegate local "implement dark mode"

# See capability comparison
ai-delegate compare

Routing Logic

Use Claude Code (free, instant) for:

  • Code generation, editing, refactoring
  • File operations (read/write/search)
  • Git operations, GitHub PRs
  • Supabase database queries
  • Web search, simple page fetching
  • Apple docs via Sosumi MCP
  • Memory persistence

Use Manus (costs credits) for:

  • Browser automation (JS-rendered sites)
  • Form filling, login-required scraping
  • PDF/slide/video generation
  • OAuth integrations (Gmail, Calendar)
  • Multi-hour autonomous research
  • Real purchases/bookings

Hybrid Example

Task: "Research competitor Bible apps and create a comparison report"

  1. Claude Code: Web search for competitor list
  2. Claude Code: Fetch public landing pages
  3. Manus: Scrape App Store reviews (JS-rendered)
  4. Claude Code: Analyze and structure data
  5. Manus: Generate polished PDF report
  6. Claude Code: Save to local files, commit to git

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.22%
按下载量换算1,834

Claude

29.02%
按下载量换算1,430

Cursor

17.37%
按下载量换算856

Gemini CLI

10.17%
按下载量换算501

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills