SKILL.md
Connect Apps
Connect Claude to 1000+ apps using the Composio CLI. Actually send emails, create issues, post messages - not just generate text about it.
Quick Start
Step 1: Install the Composio CLI
curl -fsSL https://composio.dev/install | bash
Step 2: Log In
composio login
composio whoami
Opens a browser for auth, then prompts you to pick a default org and project. Use -y to skip prompts in scripts.
Step 3: Link the Apps You Need
composio link gmail
composio link slack
composio link github
Each command walks OAuth once; the connection then persists.
Step 4: Try It
composio execute GMAIL_SEND_EMAIL -d '{
"recipient_email": "[email protected]",
"subject": "Composio test",
"body": "Hello from the CLI"
}'
If the email arrives, you're connected.
What You Can Do
| Ask Claude to... | Claude runs |
|---|---|
| "Send email to [email protected] about the launch" | composio execute GMAIL_SEND_EMAIL -d '{...}' |
| "Create GitHub issue: fix login bug" | composio execute GITHUB_CREATE_ISSUE -d '{...}' |
| "Post to Slack #general: deploy complete" | composio execute SLACK_SEND_MESSAGE -d '{...}' |
| "Add meeting notes to Notion" | composio execute NOTION_CREATE_PAGE -d '{...}' |
Core Workflow
- Know the tool slug? →
composio execute <SLUG> -d '{...}'
