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

app-connectors应用程序连接器

Agent Skill

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

总安装

4,248

周安装

177

GitHub Stars

公开资料未说明

下载量

1,416
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:app-connectors(应用程序连接器)
来源仓库:https://github.com/ts-sz/app-connectors
安装命令:
openclaw skills install app-connectors
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install app-connectors

简介

将您的 AI 代理连接到 1000 多个应用程序 — 发现工具、管理 OAuth 连接、执行操作并提供自助连接器仪表板。

SKILL.md

name
app-connectors
description
Connect your AI agent to 1000+ apps — discover tools, manage OAuth connections, execute actions, and provide a self-service connector dashboard.
version
5.0.1

App Connectors — Connect Your Agent to 1000+ Apps

Connect your AI agent to Gmail, Slack, GitHub, Notion, Google Calendar, LinkedIn, HubSpot, Stripe, and 1000+ more apps via Composio OAuth.

Setup

On first use, check credentials:

# Check environment variables
[ -n "$COMPOSIO_API_KEY" ] && echo "✅ API key" || echo "⏳ Not set"

Required:

  • COMPOSIO_API_KEY — Project-scoped API key from Composio

If not in env, check the framework's secrets provider (vault, secrets.json, .env). If missing, stop and report to the operator.

API Reference

Base URL: https://backend.composio.dev/api Auth header: x-api-key: $COMPOSIO_API_KEY

List Connected Apps

Use the v1 REST API to get all active connections for the current entity:

curl -s "https://backend.composio.dev/api/v1/connectedAccounts?user_uuid=default&showActiveOnly=true" \
  -H "x-api-key: $COMPOSIO_API_KEY"

Returns { "items": [...] } — each item has appName, status, id.

Discover Tools (COMPOSIO_SEARCH_TOOLS)

Find the right tool for a task. Returns matching tools, schemas, connection status, and execution plan.

curl -s -X POST "https://backend.composio.dev/api/v3/tools/execute/COMPOSIO_SEARCH_TOOLS" \
  -H "x-api-key: $COMPOSIO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "arguments": {
      "queries": [
        {
          "use_case": "send an email via gmail",
          "known_fields": "recipient_name: John"
        }
      ],
      "session": { "generate_id": true }
    }
  }'

Key fields in response:

  • primary_tool_slugs — best matching tools
  • tool_schemas — input schemas for each tool
  • toolkit_connection_statuses — whether there's an active connection
  • known_pitfalls — common mistakes to avoid

Rules:

  • 1 query = 1 tool action (max 7 queries per call)
  • Include the app name in the query when the user specifies one
  • Reuse session.id from the first response in subsequent calls

Connect an App (COMPOSIO_MANAGE_CONNECTIONS)

If has_active_connection is false, or the user wants to connect a new app:

curl -s -X POST "https://backend.composio.dev/api/v3/tools/execute/COMPOSIO_MANAGE_CONNECTIONS" \
  -H "x-api-key: $COMPOSIO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "arguments": {
      "toolkits": ["gmail"]
    }
  }'

Response statuses:

  • active — ready to use, no action needed
  • initiated — returns redirect_url → send to user to complete OAuth
  • failed — error (often: wrong toolkit slug)

Common toolkit slugs: gmail, outlook, slack, github, notion, clickup, linkedin, googlecalendar, googledrive, googlesheets, jira, trello, hubspot, figma, discord, airtable, stripe, youtube, calendly, supabase, asana, dropbox, twitter

Note: slugs are lowercase, no underscores (e.g. googlecalendar not google_calendar).

Execute Tools (COMPOSIO_MULTI_EXECUTE_TOOL)

Only after connection is active:

curl -s -X POST "https://backend.composio.dev/api/v3/tools/execute/COMPOSIO_MULTI_EXECUTE_TOOL" \
  -H "x-api-key: $COMPOSIO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "arguments": {
      "tools": [
        {
          "tool_slug": "GMAIL_SEND_EMAIL",
          "arguments": {
            "to": "john@example.com",
            "subject": "Hello",
            "body": "Welcome!"
          }
        }
      ],
      "sync_response_to_workbench": false
    }
  }'

Rules:

  • Never invent tool slugs or argument fields — only use what SEARCH_TOOLS returned
  • Batch independent tools in a single call (max 50)
  • Verify connection is active before executing

Get Full Schemas (COMPOSIO_GET_TOOL_SCHEMAS)

When SEARCH_TOOLS returns a schemaRef instead of full input_schema:

curl -s -X POST "https://backend.composio.dev/api/v3/tools/execute/COMPOSIO_GET_TOOL_SCHEMAS" \
  -H "x-api-key: $COMPOSIO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "arguments": {
      "tool_slugs": ["GMAIL_SEND_EMAIL"]
    }
  }'

/apps Command

When the user types /apps:

  1. List connected apps using the v1 REST API (/v1/connectedAccounts?user_uuid=default&showActiveOnly=true)
  2. Display as a clean list — one line per app, 🟢 prefix, human-readable name:
   🟢 Gmail
   🟢 LinkedIn
   🟢 ClickUp
   🟢 Notion

If none connected: "No apps connected yet."

  1. End with a prompt: "To connect a new app, type its name."
  2. When the user types an app name, call COMPOSIO_MANAGE_CONNECTIONS with the matching slug, get the redirect_url, and send it as a clickable link.

Display name mapping (slug → display): gmail → Gmail, outlook → Outlook, googlecalendar → Google Calendar, googledrive → Google Drive, googlesheets → Google Sheets, linkedin → LinkedIn, notion → Notion, clickup → ClickUp, slack → Slack, github → GitHub, jira → Jira, trello → Trello, hubspot → HubSpot, figma → Figma, discord → Discord, airtable → Airtable, stripe → Stripe, youtube → YouTube, calendly → Calendly, supabase → Supabase, asana → Asana, dropbox → Dropbox, twitter → Twitter/X, shopify → Shopify

For unknown slugs, capitalize the first letter.

Agent Commands

User saysWhat to do
/appsList connected apps → prompt to connect
"Connect Slack"MANAGE_CONNECTIONS with ["slack"] → send OAuth link
"Send an email to X"SEARCH_TOOLS → check connection → MULTI_EXECUTE_TOOL
"Disconnect Slack"Use MANAGE_CONNECTIONS

References

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

80.46%
按下载量换算1,139

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills