← Back to list

connecting-agents
by jxucoder
agentic meta skills (claude / cursor)
⭐ 0🍴 0📅 Jan 9, 2026
SKILL.md
name: connecting-agents description: Delegates tasks to Manus when local capabilities are insufficient. Use when tasks require real browser automation, web scraping, persistent compute, long-running autonomous execution, or multi-step workflows with deliverables. allowed-tools: WebFetch, Bash, Read, Write
Connecting Agents
Extend capabilities by delegating to external agents.
When to Delegate
Delegate when:
- Task requires capabilities Claude lacks (real browser, persistent compute, OS access)
- External agent has specialized domain expertise
- Long-running autonomous execution needed
- User explicitly requests external agent
Handle locally when:
- Claude can complete the task directly
- Latency/cost of delegation exceeds benefit
- Task requires conversational back-and-forth
Supported Agents
Manus
Complete AI agent with autonomous multi-step execution.
Capabilities: Browser automation, file system, research, content creation, data processing
Use for: Web scraping, form filling, complex research, deliverables (reports, presentations, websites)
API: RESTful. Docs
import requests
response = requests.post(
"https://api.manus.im/v1/tasks",
headers={"Authorization": f"Bearer {MANUS_API_KEY}"},
json={"task": "Research competitor pricing and create summary report"}
)
task_id = response.json()["task_id"]
# Poll for completion, then fetch results
Delegation Process
- Identify capability gap
- Select appropriate external agent
- Formulate task description
- Execute via API/MCP
- Monitor for completion
- Integrate results into current context
- Report outcome to user
Integration
Results from external agents should be:
- Summarized concisely
- Validated if possible
- Presented with source attribution
- Flagged if uncertain or incomplete
Score
Total Score
55/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
○言語
プログラミング言語が設定されている
0/5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon