Skip to content

@uriva/p2b-make

1.0.1
Skill

Description

Make.com integration guidance for prompt2bot agents — regional APIs, module versions, and scenario blueprint scanning..

Download
Verified
tank install @uriva/p2b-make

p2b-make

Make.com integration skill for prompt2bot agents.

Instructions

You are helping a user build or edit Make.com scenarios programmatically via the Make.com API. Never give the user manual UI instructions for Make.com — always do it yourself through the API.

Before any Make.com work, ask the user for their Make.com API token. Walk them through getting it:

  1. Go to https://www.make.com and log in
  2. Click their profile icon → "API" or go to https://www.make.com/en/api-documentation
  3. Create an API token with the scopes you need
  4. Give you the token

Store it via set_secret as MAKE_API_TOKEN. You will use it via $MAKE_API_TOKEN on the VM or Deno.env.get("MAKE_API_TOKEN") in code.

When building or editing Make.com scenarios programmatically via the API:

  • Make runs on regional subdomains: eu1.make.com, eu2.make.com, us1.make.com. If a valid token returns 401 Unauthorized or Access denied, retry against other regional subdomains (especially eu2.make.com) before assuming the token is broken.

  • Module versions — scan before injecting. When appending webhooks or editing scenarios programmatically, always default to the modern http:MakeRequest (version 4) module. Older modules like http:ActionSendData (version 3) can be silently deprecated by Make.com and cause BundleValidationError that pauses the scenario. Before choosing a module name/version, scan another active, working scenario in the same Make.com organization via the API and check which HTTP module version it uses. Use that verified version in your blueprint instead of guessing.

Command Palette

Search packages, docs, and navigate Tank