Overview
- Skill Key
- bratchenko/self-integration
- Author
- bratchenko
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/bratchenko/self-integration
- Latest Commit SHA
- 86ca0d18328eee7f6e48d3f411c9d024a8c2392f
Connect to any external app and perform actions on it. Use when the user wants to interact with external services like Slack, Linear, HubSpot, Salesforce, Jira, GitHub, Google Sheets, or any other app — send messages, create tasks, sync data, manage contacts, or perform any API operation.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 self-integration 技能。 若已安装,则直接安装 self-integration 技能。
# Self-Integration
Connect to any external app and perform actions on it. Uses the [Membrane](https://getmembrane.com) API.
## Making API Requests
All requests go to `${MEMBRANE_API_URL:-https://api.getmembrane.com}` with a Bearer token:
```
Authorization: Bearer $MEMBRANE_TOKEN
Content-Type: application/json
```
Get the API token from the [Membrane dashboard](https://console.getmembrane.com).
## Workflow
### Step 1: Get a Connection
A connection is an authenticated link to an external app (e.g. a user's Slack workspace, a HubSpot account). You need one before you can run actions.
#### 1a. Check for existing connections
`GET /connections`
Look for a connection matching the target app. Key fields: `id`, `name`, `connectorId`, `disconnected`.
If a matching connection exists and `disconnected` is `false`, skip to **Step 2**.
#### 1b. Find a connector
A connector is a pre-built adapter for an external app. Search by app name:
`GET /search?q=slack`
Look for results with `elementType: "connector"`. Use `element.id` as `connectorId` in step 1d.
If nothing is found, go to step 1c to build a connector.
#### 1c. Build a connector (if none exists)
Create a Membrane Agent session to build a connector:
`POST /agent/sessions` with body `{"prompt": "Build a connector for Slack (https://slack.com)"}`
Adjust the prompt to describe the actual app you need. Poll `GET /agent/sessions/{sessionId}?wait=true&timeout=30` until `state` is `"idle"` or `status` is `"completed"`.
You can send follow-up instructions via `POST /agent/sessions/{sessionId}/message` or abort via `POST /agent/sessions/{sessionId}/interrupt`.
After the connector is built, search for it again (step 1b).
#### 1d. Request a connection
Create a connection request so the user can authenticate with the external app:
`POST /connection-requests` with body `{"connectorId": "cnt_abc123"}`
The response includes a `url`. **Tell the user to open the `url`** to complete authentication (OAuth, API key, et...
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
carlulsoe
Local speech-to-text with NVIDIA Parakeet TDT 0.6B v3 (ONNX on CPU). 30x faster than Whisper, 25 languages, auto-detection, OpenAI-compatible API. Use when transcribing audio files, converting speech to text, or processing voice recordings locally without cloud APIs.
carlzhao007
飞书消息自动处理与进度反馈技能。安装后后台运行,监听飞书任务消息并自动创建独立进程处理。 在处理前后发送实时进度反馈(任务确认、进度百分比、完成通知)。 支持任务类型识别、智能解析、错误重试、并发控制、状态持久化。 使用场景:飞书自动化工作流、任务进度追踪、批量任务处理、需要实时反馈的场景。
cartoonitunes
BottyFans agent skill for autonomous creator monetization. Lets AI agents register, build a profile, publish posts (public, subscriber-only, or pay-to-unlock), upload media, accept USDC subscriptions and tips on Base, send and receive DMs, track earnings, and appear on the creator leaderboard. Use this skill when an agent needs to monetize content, interact with fans, manage a creator profile, handle payments in USDC, or operate as an autonomous creator on the BottyFans platform.
camopel
Local arXiv paper manager with semantic search. Crawls arXiv categories, downloads PDFs, chunks content, and indexes with FAISS + Ollama embeddings. No cloud API keys required — everything runs locally.