Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

make-automation实现自动化

Agent Skill

make-automation 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

749

周安装

30

GitHub Stars

52

下载量

242
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:make-automation(实现自动化)
来源仓库:https://github.com/aaaaqwq/claude-code-skills
仓库路径:skills/make-automation
安装命令:
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill make-automation
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/aaaaqwq/claude-code-skills --skill make-automation

简介

用于查找、检索和筛选相关信息。make-automation 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在关键词搜索或任务场景中快速定位候选结果。
  • 支持 Codex、Claude 等主流宿主环境。
  • 通过 npx 命令从指定 GitHub 仓库安装。
  • 使用前应确认权限范围及是否触发联网或文件操作。

SKILL.md

Make Automation via Rube MCP

Automate Make (formerly Integromat) operations through Composio's Make toolkit via Rube MCP.

Prerequisites

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active Make connection via RUBE_MANAGE_CONNECTIONS with toolkit make
  • 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 make
  3. If connection is not ACTIVE, follow the returned auth link to complete Make authentication
  4. Confirm connection status shows ACTIVE before running any workflows

Core Workflows

1. Get Operations Data

When to use: User wants to retrieve operation logs or usage data from Make scenarios

Tool sequence:

  1. MAKE_GET_OPERATIONS - Retrieve operation records [Required]

Key parameters:

  • Check current schema via RUBE_SEARCH_TOOLS for available filters
  • May include date range, scenario ID, or status filters

Pitfalls:

  • Operations data may be paginated; check for pagination tokens
  • Date filters must match expected format from schema
  • Large result sets should be filtered by date range or scenario

2. List Available Languages

When to use: User wants to see supported languages for Make scenarios or interfaces

Tool sequence:

  1. MAKE_LIST_ENUMS_LANGUAGES - Get all supported language codes [Required]

Key parameters:

  • No required parameters; returns complete language list

Pitfalls:

  • Language codes follow standard locale format (e.g., 'en', 'fr', 'de')
  • List is static and rarely changes; cache results when possible

3. List Available Timezones

When to use: User wants to see supported timezones for scheduling Make scenarios

Tool sequence:

  1. MAKE_LIST_ENUMS_TIMEZONES - Get all supported timezone identifiers [Required]

Key parameters:

  • No required parameters; returns complete timezone list

Pitfalls:

  • Timezone identifiers use IANA format (e.g., 'America/New_York', 'Europe/London')
  • List is static and rarely changes; cache results when possible
  • Use these exact timezone strings when configuring scenario schedules

4. Scenario Configuration Lookup

When to use: User needs to configure scenarios with correct language and timezone values

Tool sequence:

  1. MAKE_LIST_ENUMS_LANGUAGES - Get valid language codes [Required]
  2. MAKE_LIST_ENUMS_TIMEZONES - Get valid timezone identifiers [Required]

Key parameters:

  • No parameters needed for either call

Pitfalls:

  • Always verify language and timezone values against these enums before using in configuration
  • Using invalid values in scenario configuration will cause errors

Common Patterns

Enum Validation

Before configuring any Make scenario properties that accept language or timezone:

1. Call MAKE_LIST_ENUMS_LANGUAGES or MAKE_LIST_ENUMS_TIMEZONES
2. Verify the desired value exists in the returned list
3. Use the exact string value from the enum list

Operations Monitoring

1. Call MAKE_GET_OPERATIONS with date range filters
2. Analyze operation counts, statuses, and error rates
3. Identify failed operations for troubleshooting

Caching Strategy for Enums

Since language and timezone lists are static:

1. Call MAKE_LIST_ENUMS_LANGUAGES once at workflow start
2. Store results in memory or local cache
3. Validate user inputs against cached values
4. Refresh cache only when starting a new session

Operations Analysis Workflow

For scenario health monitoring:

1. Call MAKE_GET_OPERATIONS with recent date range
2. Group operations by scenario ID
3. Calculate success/failure ratios per scenario
4. Identify scenarios with high error rates
5. Report findings to user or notification channel

Integration with Other Toolkits

Make workflows often connect to other apps. Compose multi-tool workflows:

1. Call RUBE_SEARCH_TOOLS to find tools for the target app
2. Connect required toolkits via RUBE_MANAGE_CONNECTIONS
3. Use Make operations data to understand workflow execution patterns
4. Execute equivalent workflows directly via individual app toolkits

Known Pitfalls

Limited Toolkit:

  • The Make toolkit in Composio currently has limited tools (operations, languages, timezones)
  • For full scenario management (creating, editing, running scenarios), consider using Make's native API
  • Always call RUBE_SEARCH_TOOLS to check for newly available tools
  • The toolkit may be expanded over time; re-check periodically

Operations Data:

  • Operation records may have significant volume for active accounts
  • Always filter by date range to avoid fetching excessive data
  • Operation counts relate to Make's pricing tiers and quota usage
  • Failed operations should be investigated; they may indicate scenario configuration issues

Response Parsing:

  • Response data may be nested under data key
  • Enum lists return arrays of objects with code and label fields
  • Operations data includes nested metadata about scenario execution
  • Parse defensively with fallbacks for optional fields

Rate Limits:

  • Make API has rate limits per API token
  • Avoid rapid repeated calls to the same endpoint
  • Cache enum results (languages, timezones) as they rarely change
  • Operations queries should use targeted date ranges

Authentication:

  • Make API uses token-based authentication
  • Tokens may have different permission scopes
  • Some operations data may be restricted based on token scope
  • Check that the authenticated user has access to the target organization

Quick Reference

TaskTool SlugKey Params
Get operationsMAKE_GET_OPERATIONS(check schema for filters)
List languagesMAKE_LIST_ENUMS_LANGUAGES(none)
List timezonesMAKE_LIST_ENUMS_TIMEZONES(none)

Additional Notes

Alternative Approaches

Since the Make toolkit has limited tools, consider these alternatives for common Make use cases:

Make Use CaseAlternative Approach
Trigger a scenarioUse Make's native webhook or API endpoint directly
Create a scenarioUse Make's scenario management API directly
Schedule executionUse RUBE_MANAGE_RECIPE_SCHEDULE with composed workflows
Multi-app workflowCompose individual toolkit tools via RUBE_MULTI_EXECUTE_TOOL
Data transformationUse RUBE_REMOTE_WORKBENCH for complex processing

Composing Equivalent Workflows

Instead of relying solely on Make's toolkit, build equivalent automation directly:

  1. Identify the apps involved in your Make scenario
  2. Search for each app's tools via RUBE_SEARCH_TOOLS
  3. Connect all required toolkits
  4. Build the workflow step-by-step using individual app tools
  5. Save as a recipe via RUBE_CREATE_UPDATE_RECIPE for reuse

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.75%
按下载量换算84

Claude

29.55%
按下载量换算72

Cursor

20.67%
按下载量换算50

Gemini CLI

10.3%
按下载量换算25

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills