Integrate in one sentence

Last updated: June 26, 2026

You do not have to ask for each feature one at a time. You do not even have to describe what you are building. Just say "Integrate this with WEEGLOO", and the connected AI agent looks at the screens you built, works out what is needed on its own, and sets up the features you need all at once.

If you have not connected an agent yet, see Connect an agent first.

This page is about handing over "the whole thing at once." When you instead want to pick out a single feature such as data, search, or members, see the individual how-tos under What to do next below.

Tell your AI like this

Integrate this with WEEGLOO.

This one line is enough. Even without describing what you are building or who uses it, the agent looks at the screens you built and picks the pieces it needs on its own.

What the AI then does

The agent takes this and moves through the following steps.

  1. Looks at your screens to work out what you are building. From the screens you built, it reads what data they handle, who reads and writes (visitors, members, operators), and whether it is read-only or also writes.
  2. Decides the overall structure. Based on what it worked out, it first designs whether to add member login, what structure to give the data, and who can access how far.
  3. Sets up the pieces it needs, in turn. For a guestbook screen, it sets up the data structure that holds the posts (a Content Type), Google login (ServiceLogin), the "own posts only" permission, and public delivery that anyone can read, all in one continuous flow. (It adds search, files, external integration (Webhook), and deployment (Web Hosting) the same way when they are needed.)

Setting up each piece is the same as asking for it one at a time in the individual how-tos below. "Integrate in one sentence" simply has the agent bundle that work and handle it all at once.

The agent decides on its own and carries the work through to the end; it does not ask you mid-way what to build. It only asks for values it cannot create itself and only you can give. An external service's API key (the secret key that service uses to confirm "you really are who you say") is one such case. Things the agent can decide on its own, such as the address to deploy to, it sets with a reasonable name, and you can change it later if you want.

Handing over the whole thing versus asking one at a time

  • Integrate in one sentence (this page): use it when setting up all the features you need at once from the start. You do not even have to describe what you are building.
  • Individual how-tos (links below): use them when adding one feature to a service you already built, or touching up a specific part. You pick out only what you want, such as data, search, or members.

The two are the same work asked for at different sizes, so you can mix them. Setting up the whole thing once and then refining it with the individual how-tos is a common flow.

Check that it worked

  • Ask the agent "Pull together what you've built so far and show me," and it reads back the data structures, login, and permissions it set up.
  • If you can read the guestbook on the page without logging in, and once logged in you can leave a post and delete only your own, then it is done.

What to do next