Source profileQuality 85/100

ComposioHQ/awesome-claude-skills/composio-skills/capsule_crm-automation/SKILL.md

capsule_crm-automation

Automate Capsule CRM tasks via Rube MCP (Composio): contacts, opportunities, cases, tasks, and pipeline management. Always search tools first for current schemas.

Source repository stars
71,746
Declared platforms
0
Static risk flags
0
Last source update
2026-07-24
Source checked
2026-08-04

Decision brief

What it does—and where it fits

Automate Capsule CRM operations through Composio's Capsule CRM toolkit via Rube MCP.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/ComposioHQ/awesome-claude-skills --skill "composio-skills/capsule_crm-automation"
    Safe inspection promptEditorial

    Inspect the Agent Skill "capsule_crm-automation" from https://github.com/ComposioHQ/awesome-claude-skills/blob/be2a406907dbc61b73e6827ded415c96139d13a2/composio-skills/capsule_crm-automation/SKILL.md at commit be2a406907dbc61b73e6827ded415c96139d13a2. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Setup

      Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

      Verify Rube MCP is available by confirming RUBESEARCHTOOLS respondsCall RUBEMANAGECONNECTIONS with toolkit capsulecrmIf connection is not ACTIVE, follow the returned auth link to complete setup
    2. 02

      3. Multi-Step Workflows

      For complex workflows involving multiple Capsule CRM operations:

      Search for all relevant tools: RUBESEARCHTOOLS with specific use caseExecute prerequisite steps first (e.g., fetch before update)Pass data between steps using tool responses
    3. 03

      Prerequisites

      Rube MCP must be connected (RUBESEARCHTOOLS available)

      Rube MCP must be connected (RUBESEARCHTOOLS available)Active Capsule CRM connection via RUBEMANAGECONNECTIONS with toolkit capsulecrmAlways call RUBESEARCHTOOLS first to get current tool schemas
    4. 04

      Tool Discovery

      Always discover available tools before executing workflows:

      Available tool slugs for Capsule CRMRecommended execution plan stepsKnown pitfalls and edge cases

    Permission review

    Static risk signals and limitations

    No configured static risk pattern was detected

    This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score85/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars71,746SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    ComposioHQ/awesome-claude-skills
    Skill path
    composio-skills/capsule_crm-automation/SKILL.md
    Commit
    be2a406907dbc61b73e6827ded415c96139d13a2
    License
    Not declared
    Collected
    2026-08-04
    Default branch
    master
    View the original SKILL.md

    Capsule CRM Automation via Rube MCP

    Automate Capsule CRM operations through Composio's Capsule CRM toolkit via Rube MCP.

    Toolkit docs: composio.dev/toolkits/capsule_crm

    Prerequisites

    • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
    • Active Capsule CRM connection via RUBE_MANAGE_CONNECTIONS with toolkit capsule_crm
    • Always call RUBE_SEARCH_TOOLS first to get current tool schemas

    Setup

    Get Rube MCP: Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.

    1. Verify Rube MCP is available by confirming RUBE_SEARCH_TOOLS responds
    2. Call RUBE_MANAGE_CONNECTIONS with toolkit capsule_crm
    3. If connection is not ACTIVE, follow the returned auth link to complete setup
    4. Confirm connection status shows ACTIVE before running any workflows

    Tool Discovery

    Always discover available tools before executing workflows:

    RUBE_SEARCH_TOOLS: queries=[{"use_case": "contacts, opportunities, cases, tasks, and pipeline management", "known_fields": ""}]
    

    This returns:

    • Available tool slugs for Capsule CRM
    • Recommended execution plan steps
    • Known pitfalls and edge cases
    • Input schemas for each tool

    Core Workflows

    1. Discover Available Capsule CRM Tools

    RUBE_SEARCH_TOOLS:
      queries:
        - use_case: "list all available Capsule CRM tools and capabilities"
    

    Review the returned tools, their descriptions, and input schemas before proceeding.

    2. Execute Capsule CRM Operations

    After discovering tools, execute them via:

    RUBE_MULTI_EXECUTE_TOOL:
      tools:
        - tool_slug: "<discovered_tool_slug>"
          arguments: {<schema-compliant arguments>}
      memory: {}
      sync_response_to_workbench: false
    

    3. Multi-Step Workflows

    For complex workflows involving multiple Capsule CRM operations:

    1. Search for all relevant tools: RUBE_SEARCH_TOOLS with specific use case
    2. Execute prerequisite steps first (e.g., fetch before update)
    3. Pass data between steps using tool responses
    4. Use RUBE_REMOTE_WORKBENCH for bulk operations or data processing

    Common Patterns

    Search Before Action

    Always search for existing resources before creating new ones to avoid duplicates.

    Pagination

    Many list operations support pagination. Check responses for next_cursor or page_token and continue fetching until exhausted.

    Error Handling

    • Check tool responses for errors before proceeding
    • If a tool fails, verify the connection is still ACTIVE
    • Re-authenticate via RUBE_MANAGE_CONNECTIONS if connection expired

    Batch Operations

    For bulk operations, use RUBE_REMOTE_WORKBENCH with run_composio_tool() in a loop with ThreadPoolExecutor for parallel execution.

    Known Pitfalls

    • Always search tools first: Tool schemas and available operations may change. Never hardcode tool slugs without first discovering them via RUBE_SEARCH_TOOLS.
    • Check connection status: Ensure the Capsule CRM connection is ACTIVE before executing any tools. Expired OAuth tokens require re-authentication.
    • Respect rate limits: If you receive rate limit errors, reduce request frequency and implement backoff.
    • Validate schemas: Always pass strictly schema-compliant arguments. Use RUBE_GET_TOOL_SCHEMAS to load full input schemas when schemaRef is returned instead of input_schema.

    Quick Reference

    OperationApproach
    Find toolsRUBE_SEARCH_TOOLS with Capsule CRM-specific use case
    ConnectRUBE_MANAGE_CONNECTIONS with toolkit capsule_crm
    ExecuteRUBE_MULTI_EXECUTE_TOOL with discovered tool slugs
    Bulk opsRUBE_REMOTE_WORKBENCH with run_composio_tool()
    Full schemaRUBE_GET_TOOL_SCHEMAS for tools with schemaRef

    Toolkit docs: composio.dev/toolkits/capsule_crm

    Alternatives

    Compare before choosing

    Computed 9832,606

    K-Dense-AI/scientific-agent-skills

    medchem

    Medicinal chemistry filters for compound triage. Apply drug-likeness rules (Lipinski, Veber, CNS), structural alert catalogs (PAINS, NIBR, ChEMBL), complexity metrics, and the medchem query language for library filtering.

    Computed 983,251

    davepoon/buildwithclaude

    zoho-crm-automation

    Automate Zoho CRM tasks via Rube MCP (Composio): create/update records, search contacts, manage leads, and convert leads. Always search tools first for current schemas.

    Computed 9523,781

    alirezarezvani/claude-skills

    channel-economics

    Use when reviewing or rebalancing direct vs. partner-led channel economics — computing fully-loaded cost-to-serve per channel, channel ROI with cash / LTV / marginal lenses, and optimal channel mix subject to constraints. For Head of Commercial, RevOps, and VP Sales doing quarterly channel review when pipeline is mixed (e.g., 60% direct + 40% partner-led) and nobody actually knows which channel makes money after CAC, support load, partner discount, deal-velocity differences, retention differenti

    Computed 9512,632

    XiaomiMiMo/MiMo-Code

    index

    Use this Sales index first for explicit Sales mentions and clear seller workflows: prospecting, lead qualification, account research, monitoring or prioritization, meeting prep, call follow-up, outreach research, deal strategy, pipeline or forecast review, CRM-backed context or data enrichment, internal source finding or sales support, customer quotes or evidence, business cases, competitive briefs, rep coaching, sales company research, and company or contact enrichment. For implicit use require