Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

makemake 自动化

Agent Skill

make 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

563

周安装

23

GitHub Stars

55

下载量

180
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vm0-ai/vm0-skills --skill make

简介

make 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意是否会触发联网、命令执行或文件读写。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

Troubleshooting

If requests fail, run zero doctor check-connector --env-name MAKE_TOKEN or zero doctor check-connector --url https://eu1.make.com/api/v2/users/me --method GET

How to Use

All examples below assume you have MAKE_TOKEN set. Authentication uses Token scheme in the Authorization header.

1. Get Current User Info

Retrieve information about the authenticated user.

curl -s "https://eu1.make.com/api/v2/users/me" --header "Authorization: Token $MAKE_TOKEN" | jq .

2. List Organizations

Retrieve all organizations the user belongs to.

curl -s "https://eu1.make.com/api/v2/organizations" --header "Authorization: Token $MAKE_TOKEN" | jq '.organizations'

3. List Teams

Get all teams in an organization. Replace ORG_ID with the organization ID.

curl -s "https://eu1.make.com/api/v2/organizations/ORG_ID/teams" --header "Authorization: Token $MAKE_TOKEN" | jq '.teams'

4. List Scenarios

Retrieve all scenarios for a team. Replace TEAM_ID with the team ID.

curl -s "https://eu1.make.com/api/v2/scenarios?teamId=TEAM_ID" --header "Authorization: Token $MAKE_TOKEN" | jq '.scenarios[] | {id, name, isEnabled, scheduling}'

Paginate with pg[offset] and pg[limit]:

curl -s "https://eu1.make.com/api/v2/scenarios?teamId=TEAM_ID&pg%5Boffset%5D=0&pg%5Blimit%5D=20" --header "Authorization: Token $MAKE_TOKEN" | jq '.scenarios[] | {id, name}'

5. Get Scenario Details

Retrieve details of a specific scenario. Replace SCENARIO_ID with the scenario ID.

curl -s "https://eu1.make.com/api/v2/scenarios/SCENARIO_ID" --header "Authorization: Token $MAKE_TOKEN" | jq '.scenario'

6. Create a Scenario

Create a new scenario in a team.

Write to /tmp/make_request.json:

{
  "teamId": 123,
  "name": "My New Scenario",
  "blueprint": "{\"name\":\"My New Scenario\",\"flow\":[],\"metadata\":{\"version\":1}}"
}

Then run:

curl -s -X POST "https://eu1.make.com/api/v2/scenarios" --header "Content-Type: application/json" --header "Authorization: Token $MAKE_TOKEN" -d @/tmp/make_request.json | jq .

7. Update a Scenario

Update scenario properties (name, scheduling, etc.).

Write to /tmp/make_request.json:

{
  "name": "Updated Scenario Name"
}

Then run:

curl -s -X PATCH "https://eu1.make.com/api/v2/scenarios/SCENARIO_ID" --header "Content-Type: application/json" --header "Authorization: Token $MAKE_TOKEN" -d @/tmp/make_request.json | jq .

8. Start a Scenario

Activate a scenario so it runs on its schedule.

curl -s -X POST "https://eu1.make.com/api/v2/scenarios/SCENARIO_ID/start" --header "Authorization: Token $MAKE_TOKEN" | jq .

9. Stop a Scenario

Deactivate a running scenario.

curl -s -X POST "https://eu1.make.com/api/v2/scenarios/SCENARIO_ID/stop" --header "Authorization: Token $MAKE_TOKEN" | jq .

10. Run a Scenario On Demand

Execute a scenario immediately. The scenario must be active.

curl -s -X POST "https://eu1.make.com/api/v2/scenarios/SCENARIO_ID/run" --header "Content-Type: application/json" --header "Authorization: Token $MAKE_TOKEN" -d '{}' | jq .

Run with input data:

Write to /tmp/make_request.json:

{
  "data": {
    "key1": "value1",
    "key2": "value2"
  }
}

Then run:

curl -s -X POST "https://eu1.make.com/api/v2/scenarios/SCENARIO_ID/run" --header "Content-Type: application/json" --header "Authorization: Token $MAKE_TOKEN" -d @/tmp/make_request.json | jq .

11. Clone a Scenario

Duplicate an existing scenario.

Write to /tmp/make_request.json:

{
  "name": "Cloned Scenario",
  "teamId": 123
}

Then run:

curl -s -X POST "https://eu1.make.com/api/v2/scenarios/SCENARIO_ID/clone" --header "Content-Type: application/json" --header "Authorization: Token $MAKE_TOKEN" -d @/tmp/make_request.json | jq .

12. Delete a Scenario

Remove a scenario permanently.

curl -s -X DELETE "https://eu1.make.com/api/v2/scenarios/SCENARIO_ID" --header "Authorization: Token $MAKE_TOKEN" | jq .

13. Get Scenario Usage

Retrieve 30-day usage analytics (operations, data transfer, centicredits).

curl -s "https://eu1.make.com/api/v2/scenarios/SCENARIO_ID/usage" --header "Authorization: Token $MAKE_TOKEN" | jq .

14. Get Scenario Logs

Retrieve execution logs for a scenario.

curl -s "https://eu1.make.com/api/v2/scenarios/SCENARIO_ID/logs" --header "Authorization: Token $MAKE_TOKEN" | jq '.scenarioLogs[] | {id, status, duration, operations}'

15. List Connections

Retrieve all connections for a team.

curl -s "https://eu1.make.com/api/v2/connections?teamId=TEAM_ID" --header "Authorization: Token $MAKE_TOKEN" | jq '.connections[] | {id, name, accountName, accountType}'

16. List Webhooks (Hooks)

Get all webhooks for a team.

curl -s "https://eu1.make.com/api/v2/hooks?teamId=TEAM_ID" --header "Authorization: Token $MAKE_TOKEN" | jq '.hooks[] | {id, name, url, enabled}'

17. List Data Stores

Get all data stores for a team.

curl -s "https://eu1.make.com/api/v2/data-stores?teamId=TEAM_ID" --header "Authorization: Token $MAKE_TOKEN" | jq '.dataStores[] | {id, name, records, size}'

18. Get Data Store Records

Retrieve records from a data store.

curl -s "https://eu1.make.com/api/v2/data-stores/DATASTORE_ID/data" --header "Authorization: Token $MAKE_TOKEN" | jq '.records'

19. Create Data Store Record

Add a record to a data store.

Write to /tmp/make_request.json:

{
  "key": "record-key-1",
  "data": {
    "field1": "value1",
    "field2": "value2"
  }
}

Then run:

curl -s -X POST "https://eu1.make.com/api/v2/data-stores/DATASTORE_ID/data" --header "Content-Type: application/json" --header "Authorization: Token $MAKE_TOKEN" -d @/tmp/make_request.json | jq .

20. List Scenario Folders

Get all scenario folders for a team.

curl -s "https://eu1.make.com/api/v2/scenarios-folders?teamId=TEAM_ID" --header "Authorization: Token $MAKE_TOKEN" | jq '.scenariosFolders[] | {id, name}'

Guidelines

  1. Zone selection: Always use the correct zone base URL matching your Make account. Check your dashboard URL to determine your zone (eu1, eu2, us1, or us2)
  2. Token scopes: API tokens require specific scopes. Ensure your token has the necessary scopes for the endpoints you use
  3. Pagination: Use pg[offset] and pg[limit] query parameters for paginated endpoints. URL-encode brackets as %5B and %5D
  4. Column selection: Use cols[] parameter to request only specific fields in responses
  5. Team context: Most resources belong to a team. Include teamId in queries to scope results
  6. Scenario activation: Scenarios must be active (started) before they can be run on demand
  7. Blueprint format: When creating scenarios, the blueprint is passed as a JSON string (stringified JSON within JSON)
  8. Rate limits: Make enforces API rate limits. Implement backoff if you receive HTTP 429 responses

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.37%
按下载量换算60

Claude

29.47%
按下载量换算53

Cursor

20.27%
按下载量换算36

Gemini CLI

10.46%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills