Source profileQuality 84/100

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

fillout_forms-automation

Automate Fillout tasks via Rube MCP (Composio): forms, submissions, workflows, and form builder. 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 Fillout operations through Composio's Fillout 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/fillout_forms-automation"
    Safe inspection promptEditorial

    Inspect the Agent Skill "fillout_forms-automation" from https://github.com/ComposioHQ/awesome-claude-skills/blob/be2a406907dbc61b73e6827ded415c96139d13a2/composio-skills/fillout_forms-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 filloutformsIf connection is not ACTIVE, follow the returned auth link to complete setup
    2. 02

      3. Multi-Step Workflows

      For complex workflows involving multiple Fillout 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 Fillout connection via RUBEMANAGECONNECTIONS with toolkit filloutformsAlways call RUBESEARCHTOOLS first to get current tool schemas
    4. 04

      Tool Discovery

      Always discover available tools before executing workflows:

      Available tool slugs for FilloutRecommended 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 score84/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/fillout_forms-automation/SKILL.md
    Commit
    be2a406907dbc61b73e6827ded415c96139d13a2
    License
    Not declared
    Collected
    2026-08-04
    Default branch
    master
    View the original SKILL.md

    Fillout Automation via Rube MCP

    Automate Fillout operations through Composio's Fillout toolkit via Rube MCP.

    Toolkit docs: composio.dev/toolkits/fillout_forms

    Prerequisites

    • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
    • Active Fillout connection via RUBE_MANAGE_CONNECTIONS with toolkit fillout_forms
    • 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 fillout_forms
    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": "forms, submissions, workflows, and form builder", "known_fields": ""}]
    

    This returns:

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

    Core Workflows

    1. Discover Available Fillout Tools

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

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

    2. Execute Fillout 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 Fillout 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 Fillout 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 Fillout-specific use case
    ConnectRUBE_MANAGE_CONNECTIONS with toolkit fillout_forms
    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/fillout_forms

    Alternatives

    Compare before choosing

    Computed 10023,781

    alirezarezvani/claude-skills

    app-store-optimization

    App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

    Computed 10014,225

    wanshuiyin/Auto-claude-code-research-in-sleep

    citation-audit

    Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.

    Computed 1004,922

    dotnet/skills

    migrate-vstest-to-mtp

    Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing

    Computed 1002,504

    aaron-he-zhu/aaron-marketing-skills

    social-selling-planner

    Use when the user asks to "set up my founder social-selling routine", "build a daily engagement block for target accounts", or "turn funding / hiring signals into selling plays"; produces the founder/seller daily operating block — a time-boxed engagement-block spec (substantive value-add comments on target-account posts, never a pitch), warm-touch-before-ask cadence rules, trigger-response plays consuming the social-pulse-monitor B2B trigger watchlist (funding / hiring / launch signals), and a q