$npx -y skills add ECNU-ICALK/AutoSkill --skill connectConnect Claude to any app. Send emails, create issues, post messages, update databases - take real actions across Gmail, Slack, GitHub, Notion, and 1000+ services.
| 1 | # Connect |
| 2 | |
| 3 | Connect Claude to any app. Stop generating text about what you could do - actually do it. |
| 4 | |
| 5 | ## When to Use This Skill |
| 6 | |
| 7 | Use this skill when you need Claude to: |
| 8 | |
| 9 | - **Send that email** instead of drafting it |
| 10 | - **Create that issue** instead of describing it |
| 11 | - **Post that message** instead of suggesting it |
| 12 | - **Update that database** instead of explaining how |
| 13 | |
| 14 | ## What Changes |
| 15 | |
| 16 | | Without Connect | With Connect | |
| 17 | |-----------------|--------------| |
| 18 | | "Here's a draft email..." | Sends the email | |
| 19 | | "You should create an issue..." | Creates the issue | |
| 20 | | "Post this to Slack..." | Posts it | |
| 21 | | "Add this to Notion..." | Adds it | |
| 22 | |
| 23 | ## Supported Apps |
| 24 | |
| 25 | **1000+ integrations** including: |
| 26 | |
| 27 | - **Email:** Gmail, Outlook, SendGrid |
| 28 | - **Chat:** Slack, Discord, Teams, Telegram |
| 29 | - **Dev:** GitHub, GitLab, Jira, Linear |
| 30 | - **Docs:** Notion, Google Docs, Confluence |
| 31 | - **Data:** Sheets, Airtable, PostgreSQL |
| 32 | - **CRM:** HubSpot, Salesforce, Pipedrive |
| 33 | - **Storage:** Drive, Dropbox, S3 |
| 34 | - **Social:** Twitter, LinkedIn, Reddit |
| 35 | |
| 36 | ## Setup |
| 37 | |
| 38 | ### 1. Get API Key |
| 39 | |
| 40 | Get your free key at [platform.composio.dev](https://platform.composio.dev/?utm_source=Github&utm_content=AwesomeSkills) |
| 41 | |
| 42 | ### 2. Set Environment Variable |
| 43 | |
| 44 | ```bash |
| 45 | export COMPOSIO_API_KEY="your-key" |
| 46 | ``` |
| 47 | |
| 48 | ### 3. Install |
| 49 | |
| 50 | ```bash |
| 51 | pip install composio # Python |
| 52 | npm install @composio/core # TypeScript |
| 53 | ``` |
| 54 | |
| 55 | Done. Claude can now connect to any app. |
| 56 | |
| 57 | ## Examples |
| 58 | |
| 59 | ### Send Email |
| 60 | ``` |
| 61 | Email sarah@acme.com - Subject: "Shipped!" Body: "v2.0 is live, let me know if issues" |
| 62 | ``` |
| 63 | |
| 64 | ### Create GitHub Issue |
| 65 | ``` |
| 66 | Create issue in my-org/repo: "Mobile timeout bug" with label:bug |
| 67 | ``` |
| 68 | |
| 69 | ### Post to Slack |
| 70 | ``` |
| 71 | Post to #engineering: "Deploy complete - v2.4.0 live" |
| 72 | ``` |
| 73 | |
| 74 | ### Chain Actions |
| 75 | ``` |
| 76 | Find GitHub issues labeled "bug" from this week, summarize, post to #bugs on Slack |
| 77 | ``` |
| 78 | |
| 79 | ## How It Works |
| 80 | |
| 81 | Uses Composio Tool Router: |
| 82 | |
| 83 | 1. **You ask** Claude to do something |
| 84 | 2. **Tool Router finds** the right tool (1000+ options) |
| 85 | 3. **OAuth handled** automatically |
| 86 | 4. **Action executes** and returns result |
| 87 | |
| 88 | ### Code |
| 89 | |
| 90 | ```python |
| 91 | from composio import Composio |
| 92 | from claude_agent_sdk.client import ClaudeSDKClient |
| 93 | from claude_agent_sdk.types import ClaudeAgentOptions |
| 94 | import os |
| 95 | |
| 96 | composio = Composio(api_key=os.environ["COMPOSIO_API_KEY"]) |
| 97 | session = composio.create(user_id="user_123") |
| 98 | |
| 99 | options = ClaudeAgentOptions( |
| 100 | system_prompt="You can take actions in external apps.", |
| 101 | mcp_servers={ |
| 102 | "composio": { |
| 103 | "type": "http", |
| 104 | "url": session.mcp.url, |
| 105 | "headers": {"x-api-key": os.environ["COMPOSIO_API_KEY"]}, |
| 106 | } |
| 107 | }, |
| 108 | ) |
| 109 | |
| 110 | async with ClaudeSDKClient(options) as client: |
| 111 | await client.query("Send Slack message to #general: Hello!") |
| 112 | ``` |
| 113 | |
| 114 | ## Auth Flow |
| 115 | |
| 116 | First time using an app: |
| 117 | ``` |
| 118 | To send emails, I need Gmail access. |
| 119 | Authorize here: https://... |
| 120 | Say "connected" when done. |
| 121 | ``` |
| 122 | |
| 123 | Connection persists after that. |
| 124 | |
| 125 | ## Framework Support |
| 126 | |
| 127 | | Framework | Install | |
| 128 | |-----------|---------| |
| 129 | | Claude Agent SDK | `pip install composio claude-agent-sdk` | |
| 130 | | OpenAI Agents | `pip install composio openai-agents` | |
| 131 | | Vercel AI | `npm install @composio/core @composio/vercel` | |
| 132 | | LangChain | `pip install composio-langchain` | |
| 133 | | Any MCP Client | Use `session.mcp.url` | |
| 134 | |
| 135 | ## Troubleshooting |
| 136 | |
| 137 | - **Auth required** → Click link, authorize, say "connected" |
| 138 | - **Action failed** → Check permissions in target app |
| 139 | - **Tool not found** → Be specific: "Slack #general" not "send message" |
| 140 | |
| 141 | --- |
| 142 | |
| 143 | <p align="center"> |
| 144 | <b>Join 20,000+ developers building agents that ship</b> |
| 145 | </p> |
| 146 | |
| 147 | <p align="center"> |
| 148 | <a href="https://platform.composio.dev/?utm_source=Github&utm_content=AwesomeSkills"> |
| 149 | <img src="https://img.shields.io/badge/Get_Started_Free-4F46E5?style=for-the-badge" alt="Get Started"/> |
| 150 | </a> |
| 151 | </p> |