Agent Skillsmelandlabs/openloomi › openloomi-connectors

openloomi-connectors

GitHub

管理26种平台的OAuth连接,支持列出账户、检查状态及断开连接。作为主动式数字伙伴的核心组件,持续同步消息、日历等数据,构建统一知识库以增强AI代理的上下文感知能力。

skills/openloomi-connectors/SKILL.md melandlabs/openloomi

Trigger Scenarios

连接平台 集成状态查询 列出已连接账户 断开平台连接

Install

npx skills add melandlabs/openloomi --skill openloomi-connectors -g -y
More Options

Use without installing

npx skills use melandlabs/openloomi@openloomi-connectors

指定 Agent (Claude Code)

npx skills add melandlabs/openloomi --skill openloomi-connectors -a claude-code -g -y

安装 repo 全部 skill

npx skills add melandlabs/openloomi --all -g -y

预览 repo 内 skill

npx skills add melandlabs/openloomi --list

SKILL.md

Frontmatter
{
    "name": "openloomi-connectors",
    "metadata": {
        "version": "0.6.4"
    },
    "description": "openloomi Connectors tools - manage platform integrations (OAuth connections, list accounts, check status). Triggers: connect platform, integration status, list accounts, disconnect",
    "allowed-tools": "Bash(node $SKILL_DIR\/scripts\/openloomi-connectors.cjs *)"
}

Note: If you haven't downloaded or installed openloomi yet, please refer to Getting Started for installation instructions.

OpenLoomi Connectors Skill

OpenLoomi Connectors provides access to 26 messaging and productivity platform integrations. It allows AI agents to manage OAuth connections, list connected accounts, check connection status, and disconnect platforms on behalf of the user.


What is openloomi?

Most AI assistants function as workflow tools—users give commands, they execute tasks, with no persistent knowledge of who you are or what matters to you.

openloomi takes a fundamentally different approach: it operates as a proactive digital partner that watches, learns, remembers, and acts on your behalf. The difference is architectural.

How It Works

When users connect messaging platforms and integrations to openloomi, they sync with permission:

  • Raw messages and communications
  • Meetings and calendar events
  • Emails and tweets
  • Voice calls
  • Notes and captured ideas

This aggregated data becomes "the single source of truth for openloomi's brain."

The Continuous Sync Loop

openloomi runs a background agent on a continuous sync loop, actively gathering information from all connected sources. An agent without this loop can only respond based on stale context. With it, every conversation—and every moment—makes openloomi smarter and more aligned with you.


Supported Platforms (26)

ID Display Name Aliases
telegram Telegram tg
whatsapp WhatsApp
slack Slack
discord Discord
gmail Gmail google_mail
outlook Outlook outlook_mail
linkedin LinkedIn
instagram Instagram
twitter X/Twitter x, tweet, tweets, 推特
google_calendar Google Calendar gcal
outlook_calendar Outlook Calendar
teams Microsoft Teams microsoft_teams
facebook_messenger Facebook Messenger messenger
google_drive Google Drive gdrive
google_docs Google Docs gdocs
hubspot HubSpot
notion Notion
github GitHub gh
asana Asana
jira Jira
linear Linear
imessage iMessage
feishu Lark/Feishu lark, 飞书
dingtalk DingTalk 钉钉
qqbot QQ qq, qq_bot
weixin WeChat wechat, 微信, wechat_work, wecom, 企业微信

Authentication

The CLI auto-reads your token from ~/.openloomi/token (base64 encoded JWT).

Local API Access

The local API server runs on port 3414 (fallback: 3515). If 3414 is unavailable, try 3515.


API Endpoints

Integration Accounts

GET /api/integrations/accounts - List Connected Accounts

Returns all connected platform accounts for the authenticated user.

curl http://localhost:3414/api/integrations/accounts \
  -H "Authorization: Bearer $TOKEN"

Response:

{
  "accounts": [
    {
      "id": "int_xxx",
      "platform": "gmail",
      "externalId": "user@gmail.com",
      "displayName": "My Gmail",
      "status": "active",
      "metadata": {},
      "createdAt": "2024-01-01T00:00:00Z",
      "botId": "bot_xxx"
    }
  ]
}

Note: Each account includes a botId field which is used for send-reply and other bot operations.


OAuth Start Endpoints

GET /api/integrations/slack/oauth/start?userId=<userId> - Start Slack OAuth

Returns the Slack OAuth authorization URL. The CLI opens this URL in the browser for the user to complete authorization.

curl "http://localhost:3414/api/integrations/slack/oauth/start?userId=<userId>"

Response:

{
  "authorizationUrl": "https://slack.com/oauth/v2/authorize?...",
  "state": "userId:uuid"
}

GET /api/integrations/discord/oauth/start?userId=<userId> - Start Discord OAuth

Returns the Discord OAuth authorization URL.

GET /api/integrations/x/oauth/start?userId=<userId> - Start X OAuth

Returns the X/Twitter OAuth authorization URL.


OAuth Exchange Endpoints

GET /api/integrations/slack/oauth/exchange?code=<code>&state=<state> - Exchange Slack Code

Exchange OAuth code for Slack access.

GET /api/integrations/discord/oauth/exchange?code=<code>&state=<state> - Exchange Discord Code

Exchange OAuth code for Discord access.


OAuth Callbacks

Platform Endpoint
GitHub GET /api/auth/callback/github
Google GET /api/auth/callback/google
Feishu POST /api/feishu/listener/init
DingTalk POST /api/dingtalk/listener/init
QQ Bot POST /api/qqbot/listener/init
WeChat POST /api/weixin/listener/init
Telegram POST /api/telegram/user-listener/init
WhatsApp POST /api/whatsapp/register-socket
iMessage POST /api/imessage/init-self-listener

DELETE /api/integrations/:id - Disconnect Account

Delete a connected integration account.

curl -X DELETE http://localhost:3414/api/integrations/int_xxx \
  -H "Authorization: Bearer $TOKEN"

Response:

{
  "success": true,
  "deletedAccountId": "int_xxx",
  "deletedBotIds": ["bot_xxx"]
}

GET /api/contacts - Query Contacts

Query user contacts with optional filtering and pagination.

curl "http://localhost:3414/api/contacts?name=John&page=1&pageSize=10" \
  -H "Authorization: Bearer $TOKEN"

Parameters:

  • name (string, optional) - Filter contacts by name (partial match)
  • page (number, default 1) - Page number
  • pageSize (number, default 10) - Items per page (max 100)

Response:

{
  "success": true,
  "contacts": [
    {
      "id": "contact_xxx",
      "name": "John Doe",
      "type": "email",
      "botId": "bot_xxx",
      "platform": "gmail"
    }
  ],
  "pagination": {
    "page": 1,
    "pageSize": 10,
    "totalCount": 50,
    "totalPages": 5,
    "hasMore": true,
    "hasPrevious": false
  }
}

POST /api/messages - Send Message

Send a message via a connected platform bot.

curl -X POST http://localhost:3414/api/messages \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "botId": "bot_xxx",
    "recipients": ["John"],
    "message": "Hello!",
    "subject": "Optional subject"
  }'

Parameters:

  • botId (string, required) - The bot ID to send from
  • recipients (array, required) - List of recipient names
  • message (string, required) - Message content
  • subject (string, optional) - Email subject line
  • cc (array, optional) - CC recipients
  • bcc (array, optional) - BCC recipients

Note: botId is returned by list-accounts in the botId field (different from account id).


Platform Aliases Reference

Aliases are case-insensitive and support both English and Chinese:

Alias Platform
tg telegram
gh github
gc gmail
x twitter
tweet, tweets, 推特 twitter
gcal google_calendar
gdrive google_drive
gdocs google_docs
wechat, 微信 weixin
lark, 飞书 feishu
钉钉 dingtalk
qq, qq_bot qqbot

Desktop UI

Users can also authorize accounts directly through the openloomi desktop application without using CLI commands.

Adding Account Authorization via Desktop UI

  1. Open openloomi desktop app on your computer

  2. Navigate to Settings (gear icon in the sidebar or top-right menu)

  3. Go to Integrations tab/section

  4. Click on the platform you want to connect (e.g., Telegram, Slack, Discord, Gmail, etc.)

  5. Follow the platform-specific authorization flow:

    • OAuth platforms (Slack, Discord, X/Twitter): Click "Connect" → you'll be redirected to the platform's authorization page in your browser → Approve the permissions → you'll be redirected back
    • App Password platforms (Gmail, Outlook): Enter your email and app password
    • App Credentials platforms (DingTalk, Feishu, QQ): Enter your appId and appSecret
    • QR/Interactive platforms (WhatsApp, Telegram, iMessage): Scan the QR code or follow the in-app instructions
  6. Verify connection — once authorized, the platform will show as "Connected" with a green checkmark

Managing Connected Accounts

  • List connected accounts: Settings → Integrations → shows all connected platforms with status
  • Disconnect account: Settings → Integrations → click on connected platform → "Disconnect" or remove
  • Check status: Connected platforms show green "Active" badge; expired/disconnected shows red "Inactive" badge

CLI Script

Quick Start

# List all supported platforms
node $SKILL_DIR/scripts/openloomi-connectors.cjs list-platforms

# List all connected accounts (includes botId for send-reply)
node $SKILL_DIR/scripts/openloomi-connectors.cjs list-accounts

# Check connection status for a platform
node $SKILL_DIR/scripts/openloomi-connectors.cjs status telegram

# Connect a platform (opens browser for OAuth)
node $SKILL_DIR/scripts/openloomi-connectors.cjs connect slack

# Disconnect an account by ID
node $SKILL_DIR/scripts/openloomi-connectors.cjs disconnect int_xxx

# Query contacts
node $SKILL_DIR/scripts/openloomi-connectors.cjs query-contacts --name=John --page=1 --pageSize=10

# Send a message (requires botId from list-accounts)
node $SKILL_DIR/scripts/openloomi-connectors.cjs send-reply --botId=bot_xxx --recipients=John --message="Hello!"

Commands

Command Description
list-platforms List all 26 supported platforms with IDs and aliases
list-accounts List all connected integration accounts (includes botId)
status <platform> Check if a platform is connected (e.g., telegram, slack)
connect <platform> [options] Connect a platform (OAuth, App Password, or App Credentials)
disconnect <accountId> Disconnect a specific account by ID
query-contacts [options] Query contacts (--name=, --page=, --pageSize=)
send-reply --botId= --recipients= --message= Send a message via REST API

Platform Connection Methods

Method Platforms
OAuth (auto-opens browser) slack, discord, x
App Password gmail --email=x --password=xxxx, outlook --email=x --password=xxxx
App Credentials dingtalk --clientId=x --clientSecret=x, feishu --appId=x --appSecret=x, qq --appId=x --appSecret=x
iLink Token wechat --token=x
Browser Required (QR/interactive) whatsapp, telegram, imessage

AI Agent Workflow

Triggered when the user asks about:

  1. Connecting a platform - "connect telegram", "link my slack"
  2. Listing integrations - "show my connected accounts", "what platforms am I connected to"
  3. Checking status - "is my github connected?", "telegram status"
  4. Disconnecting - "disconnect my discord", "remove whatsapp"
  5. Querying contacts - "show my contacts", "find John in contacts"
  6. Sending messages - "send email to John", "reply to that message"

Execution Flow:

  1. Identify intent - connect / list / status / disconnect / query-contacts / send-reply
  2. Resolve platform - use alias normalization (e.g., gh -> github)
  3. Execute command - use Bash tool
  4. Format output - report results naturally in user's language

Note on send-reply: The botId is returned by list-accounts in the botId field.

Version History

  • 21a4492 Current 2026-07-05 14:34

Same Skill Collection

skills/agent-browser/SKILL.md
skills/composio/SKILL.md
skills/cua-driver/SKILL.md
skills/frontend-design/SKILL.md
skills/openloomi-api/SKILL.md
skills/openloomi-memory/SKILL.md
skills/pdf/SKILL.md
skills/skill-creator/SKILL.md
skills/weather/SKILL.md
skills/docx/SKILL.md
skills/openloomi-loop/SKILL.md
skills/pptx/SKILL.md
skills/ui-ux-pro-max/SKILL.md
skills/xlsx/SKILL.md

Metadata

Files
0
Version
21a4492
Hash
c34c2959
Indexed
2026-07-05 14:34

Home - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-07-13 21:11
浙ICP备14020137号-1 $Map of visitor$