composio-connect
Universal fallback for executing actions across 1,000+ apps when no other skill is available. Use this skill ONLY when user requests an action on an app/service not covered by other skills (e.g., Notion, Asana, Trello, HubSpot, Airtable, Linear, Monday, Zendesk, Intercom, Stripe, Shopify, QuickBooks, Zoom, Microsoft 365, Dropbox, Box, Figma, Jira, Confluence, etc.). Do NOT use if another skill already handles the service. Triggers on requests to connect to external apps, execute actions on third-party services, or when user asks "can you actually do X" for an unsupported service.
What this skill does
# Composio Connect ## Overview Universal action executor for 1,000+ apps. This is a **fallback skill** - only use when no other skill covers the requested service. ## When to Use This Skill ``` ┌─────────────────────────────────────────────────────────────────┐ │ DECISION: Should I use Composio? │ ├─────────────────────────────────────────────────────────────────┤ │ │ │ 1. Does another skill already handle this service? │ │ ├── Gmail/Drive/Calendar → google-workspace (USE THAT) │ │ ├── Slack → slack-automation (USE THAT) │ │ ├── CRM (Attio) → attio-crm (USE THAT) │ │ ├── GitHub issues → Use gh CLI via Bash (USE THAT) │ │ └── YouTube downloads → youtube-tools (USE THAT) │ │ │ │ 2. Is the service NOT covered by other skills? │ │ ├── Notion, Asana, Trello, Monday → USE COMPOSIO │ │ ├── HubSpot, Salesforce, Pipedrive → USE COMPOSIO │ │ ├── Jira, Linear, Confluence → USE COMPOSIO │ │ ├── Airtable, Coda, ClickUp → USE COMPOSIO │ │ ├── Stripe, Shopify, QuickBooks → USE COMPOSIO │ │ ├── Zendesk, Intercom, Freshdesk → USE COMPOSIO │ │ ├── Microsoft 365, Teams, Outlook → USE COMPOSIO │ │ ├── Dropbox, Box, OneDrive → USE COMPOSIO │ │ ├── Figma, Canva, Miro → USE COMPOSIO │ │ ├── Zoom, Webex, Google Meet → USE COMPOSIO │ │ └── 900+ other apps → USE COMPOSIO │ │ │ └─────────────────────────────────────────────────────────────────┘ ``` ## Environment Setup ```bash # 1. Get free API key from https://platform.composio.dev # 2. Add to .env file COMPOSIO_API_KEY=your_api_key_here # 3. Install SDK pip install composio-core ``` ## Quick Decision Tree ``` What do you want to do? │ ├── Execute a single action │ └── python scripts/execute_action.py "Send email via Gmail to [email protected]" │ ├── List available apps │ └── python scripts/execute_action.py --list-apps │ ├── List actions for an app │ └── python scripts/execute_action.py --list-actions notion │ ├── Check connection status │ └── python scripts/execute_action.py --check-connection notion │ └── Connect to a new app └── python scripts/execute_action.py --connect notion ``` ## Common Usage ### Execute an Action (Natural Language) ```bash # Let Composio figure out the right tool python scripts/execute_action.py "Create a Notion page titled 'Meeting Notes' in my workspace" python scripts/execute_action.py "Add a task to Asana: Review Q4 budget" python scripts/execute_action.py "Create a Linear issue for bug in checkout flow" python scripts/execute_action.py "Send a HubSpot email to [email protected]" ``` ### List Available Apps ```bash python scripts/execute_action.py --list-apps python scripts/execute_action.py --list-apps --category crm python scripts/execute_action.py --list-apps --category productivity ``` ### Connect to an App (First Time) ```bash # This will provide an OAuth link to authorize python scripts/execute_action.py --connect notion python scripts/execute_action.py --connect hubspot python scripts/execute_action.py --connect jira ``` ### Execute Specific Action ```bash python scripts/execute_action.py --app notion --action create_page --params '{"title": "My Page", "content": "Hello world"}' ``` ## Supported Apps by Category ### Productivity & Docs | App | Common Actions | |-----|----------------| | Notion | Create page, add database entry, search | | Asana | Create task, update project, assign | | Trello | Create card, move card, add comment | | Monday | Create item, update column, notify | | ClickUp | Create task, update status, add comment | | Coda | Create doc, update table, run automation | | Airtable | Create record, update field, query base | ### CRM & Sales | App | Common Actions | |-----|----------------| | HubSpot | Create contact, update deal, send email | | Salesforce | Create lead, update opportunity, log call | | Pipedrive | Create deal, update person, add activity | | Zoho CRM | Create record, update module, send email | | Close | Create lead, log call, send email | ### Development & DevOps | App | Common Actions | |-----|----------------| | Jira | Create issue, update status, add comment | | Linear | Create issue, assign, update priority | | Confluence | Create page, update space, add comment | | GitLab | Create issue, merge request, pipeline | | Bitbucket | Create PR, add comment, update issue | ### Customer Support | App | Common Actions | |-----|----------------| | Zendesk | Create ticket, update status, add note | | Intercom | Send message, create conversation, tag user | | Freshdesk | Create ticket, reply, update priority | | Help Scout | Create conversation, send reply, tag | ### Finance & E-commerce | App | Common Actions | |-----|----------------| | Stripe | Create invoice, check payment, refund | | Shopify | Create order, update product, check inventory | | QuickBooks | Create invoice, record payment, add expense | | Xero | Create invoice, reconcile, add contact | | Square | Create payment, update catalog, send receipt | ### Communication | App | Common Actions | |-----|----------------| | Microsoft Teams | Send message, create channel, schedule meeting | | Zoom | Create meeting, send invite, get recording | | Discord | Send message, create channel, manage roles | | Twilio | Send SMS, make call, send WhatsApp | ### Design & Creative | App | Common Actions | |-----|----------------| | Figma | Get file, export assets, add comment | | Canva | Create design, export, share | | Miro | Create board, add sticky, export | ### Storage & Files | App | Common Actions | |-----|----------------| | Dropbox | Upload file, share link, create folder | | Box | Upload, share, manage permissions | | OneDrive | Upload, share, sync | ## First-Time Authentication Flow When connecting to a new app for the first time: 1. **Run connect command:** ```bash python scripts/execute_action.py --connect notion ``` 2. **You'll receive an OAuth URL:** ``` Please authorize Composio to access Notion: https://app.composio.dev/authorize/notion?token=xxx ``` 3. **Click the link and authorize in your browser** 4. **Confirm back in terminal:** ``` Authorization complete? (y/n): y ``` 5. **Connection is now saved** - future requests work automatically ## Cost - **Composio API:** Free tier available (check platform.composio.dev for limits) - **No per-action cost** for most operations - **Premium apps** may require paid Composio plan ## Security Notes ### Credential Handling - Store `COMPOSIO_API_KEY` in `.env` (never commit) - OAuth tokens are stored securely by Composio - Revoke access anytime via platform.composio.dev ### Permissions - Each app requests only necessary OAuth scopes - Review permissions before authorizing - Connections can be removed individually ### Data Privacy - Composio processes requests but doesn't store your data - Actions execute directly with the connected service - Review Composio's privacy policy for details ## Troubleshooting ### Issue: "App not connected" **Solution:** Run `--connect <app>` and complete OAuth flow ### Issue: "Invalid API key" **Solution:** Check COMPOSIO_API_KEY in .env, regenerate if needed ### Issue: "Action failed" **Cause:** Missing permissions or invalid parameters **Solution:** Check `--list-actions <app>` for correct action format ### Issue: "Rate limited" **Solution:** Wait and retry, or upgrade Composio plan ## Integration with Other Skills ### Fallback Pattern When user asks for something not in your skills: 1. Check if Composio supports
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.