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

composio-connect组合连接

Agent Skill

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

总安装

4,326

周安装

175

GitHub Stars

11

下载量

1,358
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:composio-connect(组合连接)
来源仓库:https://github.com/casper-studios/casper-marketplace
仓库路径:skills/composio-connect
安装命令:
npx skills add https://github.com/casper-studios/casper-marketplace --skill composio-connect
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/casper-studios/casper-marketplace --skill composio-connect

简介

composio-connect 作为通用后备技能,支持 1000+ 应用的动作执行。

  • 仅在其他技能不覆盖请求服务时使用,避免过度依赖。
  • 优先使用专用技能处理 Gmail/Drive/Calendar、Slack、Attio CRM 等服务。
  • 对于 GitHub issues 等操作,建议直接使用 gh CLI 而非此通用接口。
  • 使用前应确认是否有更专业的替代技能可用。

SKILL.md

Composio Connect

Overview

Universal action executor for 1,000+ apps. This is a fallback skill - only use when no other skill covers the requested service.

When to Use This Skill

┌─────────────────────────────────────────────────────────────────┐
│ DECISION: Should I use Composio?                                │
├─────────────────────────────────────────────────────────────────┤
│                                                                 │
│ 1. Does another skill already handle this service?              │
│    ├── Gmail/Drive/Calendar → google-workspace (USE THAT)       │
│    ├── Slack → slack-automation (USE THAT)                      │
│    ├── CRM (Attio) → attio-crm (USE THAT)                       │
│    ├── GitHub issues → Use gh CLI via Bash (USE THAT)           │
│    └── YouTube downloads → youtube-tools (USE THAT)             │
│                                                                 │
│ 2. Is the service NOT covered by other skills?                  │
│    ├── Notion, Asana, Trello, Monday → USE COMPOSIO             │
│    ├── HubSpot, Salesforce, Pipedrive → USE COMPOSIO            │
│    ├── Jira, Linear, Confluence → USE COMPOSIO                  │
│    ├── Airtable, Coda, ClickUp → USE COMPOSIO                   │
│    ├── Stripe, Shopify, QuickBooks → USE COMPOSIO               │
│    ├── Zendesk, Intercom, Freshdesk → USE COMPOSIO              │
│    ├── Microsoft 365, Teams, Outlook → USE COMPOSIO             │
│    ├── Dropbox, Box, OneDrive → USE COMPOSIO                    │
│    ├── Figma, Canva, Miro → USE COMPOSIO                        │
│    ├── Zoom, Webex, Google Meet → USE COMPOSIO                  │
│    └── 900+ other apps → USE COMPOSIO                           │
│                                                                 │
└─────────────────────────────────────────────────────────────────┘

Environment Setup

# 1. Get free API key from https://platform.composio.dev
# 2. Add to .env file
COMPOSIO_API_KEY=your_api_key_here

# 3. Install SDK
pip install composio-core

Quick Decision Tree

What do you want to do?
│
├── Execute a single action
│   └── python scripts/execute_action.py "Send email via Gmail to john@example.com"
│
├── List available apps
│   └── python scripts/execute_action.py --list-apps
│
├── List actions for an app
│   └── python scripts/execute_action.py --list-actions notion
│
├── Check connection status
│   └── python scripts/execute_action.py --check-connection notion
│
└── Connect to a new app
    └── python scripts/execute_action.py --connect notion

Common Usage

Execute an Action (Natural Language)

# Let Composio figure out the right tool
python scripts/execute_action.py "Create a Notion page titled 'Meeting Notes' in my workspace"
python scripts/execute_action.py "Add a task to Asana: Review Q4 budget"
python scripts/execute_action.py "Create a Linear issue for bug in checkout flow"
python scripts/execute_action.py "Send a HubSpot email to lead@company.com"

List Available Apps

python scripts/execute_action.py --list-apps
python scripts/execute_action.py --list-apps --category crm
python scripts/execute_action.py --list-apps --category productivity

Connect to an App (First Time)

# This will provide an OAuth link to authorize
python scripts/execute_action.py --connect notion
python scripts/execute_action.py --connect hubspot
python scripts/execute_action.py --connect jira

Execute Specific Action

python scripts/execute_action.py --app notion --action create_page --params '{"title": "My Page", "content": "Hello world"}'

Supported Apps by Category

Productivity & Docs

AppCommon Actions
NotionCreate page, add database entry, search
AsanaCreate task, update project, assign
TrelloCreate card, move card, add comment
MondayCreate item, update column, notify
ClickUpCreate task, update status, add comment
CodaCreate doc, update table, run automation
AirtableCreate record, update field, query base

CRM & Sales

AppCommon Actions
HubSpotCreate contact, update deal, send email
SalesforceCreate lead, update opportunity, log call
PipedriveCreate deal, update person, add activity
Zoho CRMCreate record, update module, send email
CloseCreate lead, log call, send email

Development & DevOps

AppCommon Actions
JiraCreate issue, update status, add comment
LinearCreate issue, assign, update priority
ConfluenceCreate page, update space, add comment
GitLabCreate issue, merge request, pipeline
BitbucketCreate PR, add comment, update issue

Customer Support

AppCommon Actions
ZendeskCreate ticket, update status, add note
IntercomSend message, create conversation, tag user
FreshdeskCreate ticket, reply, update priority
Help ScoutCreate conversation, send reply, tag

Finance & E-commerce

AppCommon Actions
StripeCreate invoice, check payment, refund
ShopifyCreate order, update product, check inventory
QuickBooksCreate invoice, record payment, add expense
XeroCreate invoice, reconcile, add contact
SquareCreate payment, update catalog, send receipt

Communication

AppCommon Actions
Microsoft TeamsSend message, create channel, schedule meeting
ZoomCreate meeting, send invite, get recording
DiscordSend message, create channel, manage roles
TwilioSend SMS, make call, send WhatsApp

Design & Creative

AppCommon Actions
FigmaGet file, export assets, add comment
CanvaCreate design, export, share
MiroCreate board, add sticky, export

Storage & Files

AppCommon Actions
DropboxUpload file, share link, create folder
BoxUpload, share, manage permissions
OneDriveUpload, share, sync

First-Time Authentication Flow

When connecting to a new app for the first time:

  1. Run connect command: python scripts/execute_action.py --connect notion
  2. You'll receive an OAuth URL: Please authorize Composio to access Notion: https://app.composio.dev/authorize/notion?token=xxx
  3. Click the link and authorize in your browser
  4. Confirm back in terminal: Authorization complete? (y/n): y
  5. Connection is now saved - future requests work automatically

Cost

  • Composio API: Free tier available (check platform.composio.dev for limits)
  • No per-action cost for most operations
  • Premium apps may require paid Composio plan

Security Notes

Credential Handling

  • Store COMPOSIO_API_KEY in .env (never commit)
  • OAuth tokens are stored securely by Composio
  • Revoke access anytime via platform.composio.dev

Permissions

  • Each app requests only necessary OAuth scopes
  • Review permissions before authorizing
  • Connections can be removed individually

Data Privacy

  • Composio processes requests but doesn't store your data
  • Actions execute directly with the connected service
  • Review Composio's privacy policy for details

Troubleshooting

Issue: "App not connected"

Solution: Run --connect <app> and complete OAuth flow

Issue: "Invalid API key"

Solution: Check COMPOSIO_API_KEY in.env, regenerate if needed

Issue: "Action failed"

Cause: Missing permissions or invalid parameters Solution: Check --list-actions <app> for correct action format

Issue: "Rate limited"

Solution: Wait and retry, or upgrade Composio plan

Integration with Other Skills

Fallback Pattern

When user asks for something not in your skills:

  1. Check if Composio supports the app
  2. Use Composio to execute the action
  3. Return results to user

Chaining Actions

# Research → Create Notion summary
# 1. Use parallel-research for research
# 2. Use composio to create Notion page with results

# Scrape → Update CRM
# 1. Use apify-scrapers to get company data
# 2. Use composio to update HubSpot contact

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.2%
按下载量换算505

Claude

31%
按下载量换算421

Cursor

17.54%
按下载量换算238

Gemini CLI

10.35%
按下载量换算141

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills