20 powerful examples for Melinda Maria
Copy, tweak, make them yours. Just describe the task — Claude loads the skill automatically.
01"Do a best-practices pass on the nuorder connector Worker before I deploy — flag any secrets, blocking calls, or missing observability."
02"I let Claude write a new tool for the sprout connector — review it for floating promises and bad global state so it doesn’t leak data between requests."
03"Explain why streaming matters for a tool that returns big ShipBob order exports, and rewrite the handler to stream."
04"Check that all our connectors set a recent compatibility date and use generated types, and give me the wrangler commands to fix the ones that don’t."
05"Review the canto-mcp Worker for anything stored in a module-level variable that should be per-request, and explain the risk in plain English."
06"Audit our error handling across the connectors so a failing upstream API returns a clean message instead of leaking internal details."
07"Show me where a connector is calling Cloudflare’s REST API when it should use a binding instead, and fix it."
08"Check that long background work (like a mirror refresh) uses waitUntil correctly so it isn’t cut off when the response returns."
09"Review the gorgias Worker specifically for any place a secret or token could end up in a log or response."
10"Run a best-practices review focused on observability and tell me what logging or metrics each connector is missing."
11"Rewrite a connector handler that loads an entire huge response into memory so it streams or paginates instead."
12"Verify our connectors set sensible timeouts on upstream calls so one slow API (like Meta Ads) can’t hang the Worker."
13"Check that input from the team’s prompts is validated before it’s used in an upstream query, and harden anything that isn’t."
14"Review whether a connector caches when it should and busts the cache when it should, using the shopmy daily report as the case."
15"Do a pre-deploy safety pass on a diff for the apparelmagic connector and give me a go/no-go with reasons."
16"Explain the “bindings over fetch” rule in plain English with an example from our own code."
17"Find any connector still on an old compatibility date and walk me through updating it without breaking behavior."
18"Check that retries and backoff are in place so a transient 429 from an upstream API doesn’t fail the whole request."
19"Review a Worker for accidental synchronous/blocking work in the hot path and rewrite it to be async."
20"Give me a reusable best-practices checklist I can paste into every connector repo’s instructions so changes get reviewed the same way each time."