@tendrilapp/cli 0.1.45 → 0.1.46

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -145,6 +145,12 @@ var TOOLS = [
145
145
  schema: z.object({ setDir: str("recording set directory") }),
146
146
  argv: (i) => ["record", "next", "--set", i["setDir"]]
147
147
  },
148
+ {
149
+ name: "tendril_record_rest_fetch",
150
+ description: "Fetch a recording set's pixels+geometry over Figma's REST API \u2014 the step `record next` names as rest_fetch when the set's REST channel is active. The CLI makes these requests itself with the user's connected Figma credential (tendril_figma_connect); you make NO Figma call for it and none can substitute. It first self-checks one or two probe poses against their MCP-recorded references (zero-pixel tolerance) and falls the whole set back to MCP recording if the transports disagree; then it bulk-fetches the rest, batched and paced, spending no MCP quota. Requires the probe poses to be recorded first \u2014 record next tells you when.",
151
+ schema: z.object({ setDir: str("recording set directory") }),
152
+ argv: (i) => ["record", "rest-fetch", "--set", i["setDir"]]
153
+ },
148
154
  {
149
155
  name: "tendril_record_fetch",
150
156
  description: "Download a Figma asset URL (from get_screenshot's image_url) straight to disk and ingest it as the rep's envelope \u2014 the fallback when only the screenshot piece needs (re-)recording; for a rep's standard three recordings PREFER tendril_record_ingest_rep. Never download the image yourself: the bytes must not pass through your context.",