Source profileQuality 89/100

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

anthropic_administrator-automation

Automate Anthropic Admin tasks via Rube MCP (Composio): API keys, usage, workspaces, and organization 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 Anthropic Admin operations through Composio's Anthropic Admin 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/anthropic_administrator-automation"
    Safe inspection promptEditorial

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

      3. Multi-Step Workflows

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

      Tool Discovery

      Always discover available tools before executing workflows:

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

    Anthropic Admin Automation via Rube MCP

    Automate Anthropic Admin operations through Composio's Anthropic Admin toolkit via Rube MCP.

    Toolkit docs: composio.dev/toolkits/anthropic_administrator

    Prerequisites

    • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
    • Active Anthropic Admin connection via RUBE_MANAGE_CONNECTIONS with toolkit anthropic_administrator
    • 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 anthropic_administrator
    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": "API keys, usage, workspaces, and organization management", "known_fields": ""}]
    

    This returns:

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

    Core Workflows

    1. Discover Available Anthropic Admin Tools

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

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

    2. Execute Anthropic Admin 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 Anthropic Admin 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 Anthropic Admin 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 Anthropic Admin-specific use case
    ConnectRUBE_MANAGE_CONNECTIONS with toolkit anthropic_administrator
    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/anthropic_administrator

    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 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 9929,558

    HKUDS/Vibe-Trading

    strategy-generate

    Create, modify, and optimize quantitative trading strategies, then backtest and evaluate them.

    Computed 9832,606

    K-Dense-AI/scientific-agent-skills

    dask

    Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.