Promptles
Context

Explain the Integration Point

When connecting two parts of your codebase, describe the flow: what triggers what, what data passes between them, and what happens when things go wrong. Integration bugs come from unclear handoffs.

Where you'll practice this

2 Promptles scenarios teach this principle directly. Each one drops you into a real engineering ticket and asks you to write the prompt you'd send to Claude Code.

  • The Integration Point

    Your e-commerce app has two services that need to be connected. The `PaymentService` in `services/payment.ts` handles charging credit cards, and the `OrderProcessor` in `services/orders.ts` manages order lifecycle. Currently, after an order is confirmed in…

  • The Zapier Replacement

    You currently have a Zapier workflow: when a new Typeform response is submitted (webhook at `/typeform-hook`), it takes the respondent's email and company name, calls the Clearbit Enrichment API to get company size and industry, then creates a HubSpot contact with properties…

Other principles in Context