Skip to content
[menu][close]

FOUNDRYNETNo. 001SEPTEMBER 2026LOAD BALANCING

Writing an AI Crawler Access Policy for Your Organisation

Most sites end up with an AI crawler policy by accident: a robots.txt line someone added, a firewall rule nobody remembers. Writing it down turns scattered rules into a decision the organisation can defend and change.

Duotone plate of one bundle of lines entering a hot pink square and fanning out into three equal bundles that end at three server blocks.
PlateServer Load Balancing Guide
On this page

01 Why write the policy down

The engineers who configure balancers are usually the people asked to "block the AI bots" and later asked why the site stopped appearing in answers. A written policy separates the decision from the configuration: someone accountable decides what the organisation wants, and operations implements it. It also stops drift, because every rule on the edge can be traced to a line in the document. This page belongs to the load balancing section because the balancer is where most of the policy ends up enforced.

02 Decide per operator and purpose

Treat each crawler operator as up to three clients, because their purposes differ. A training crawler collects pages for model building. An answer fetcher retrieves pages at question time and may cite them. An agent acts on a user's behalf. An organisation may reasonably accept the second, which can send readers, while declining the first. The table below is the core of the policy document.

An example layout; the decisions themselves are the organisation's to make.
Operator and purposeDecisionExpressed asApproved by, date
Search indexer (all engines)Allowrobots.txt Allow; no edge limitWeb lead, 2026-09
Answer fetcher, operator AAllow, shapedrobots.txt Allow; 2 req/s per verified identityWeb lead, 2026-09
Training crawler, operator BBlockrobots.txt Disallow; edge block on verified identityLegal, 2026-09
Unverified client using a crawler tokenBlockEdge blockOperations, standing rule
Agents acting for signed-in usersAllow reads; step-up on account actionsApplication ruleProduct, 2026-09

03 Expressing the policy

The policy lives in two places. For compliant crawlers, robots.txt groups and control tokens state the rules, and an llms.txt file can point answer tools at the pages you most want read. For everything else, the rules live at the edge: address sets or signature checks to identify the operator, then allow, rate-limit or deny. A rule that exists only in robots.txt is a request; a rule that exists only at the edge is invisible to honest crawlers, which then keep trying. Put every decision in both places.

04 Identity before policy

No rule should key on the user-agent string alone. Verify the operator first, using signed requests where available and forward-confirmed DNS or published ranges otherwise, then apply that operator's line of the policy. Anything claiming an operator's identity that fails verification gets the "unverified" line, which is usually a block. Shaping itself is a balancer job: rate limiting crawlers with token buckets and 429 responses gives the configuration, and absorbing crawler load with caching reduces how much shaping you need.

05 Reviewing it

  1. Measure

    Each quarter, pull requests, bytes and origin time by verified operator and purpose from the balancer logs.

  2. Compare

    Check measured behaviour against the policy: operators honouring Disallow, fetchers staying inside their rate, no growth in the unverified bucket.

  3. Decide

    Bring changes to the owner: new operators to classify, rates to adjust, decisions to revisit as the organisation's view changes.

  4. Implement and record

    Change robots.txt and edge rules together, and add the date and approver to the table.

From request to decisionFROM REQUEST TO DECISION01Requestarrives02Verifyoperatoridentity03Look upoperator andpurpose04Allow, shapeor block05Log decisionfor reviewFrom request to decisionFROM REQUEST TO DECISION01Request arrives02Verify operator identity03Look up operator and purpose04Allow, shape or block05Log decision for review
Every edge rule traces back to one line of the policy table.
KEEP IT SHORT

A one-page policy that is actually followed beats a long one nobody reads. The table is the policy; everything else is explanation.

06 Questions

What should an AI crawler policy include?

A per-operator, per-purpose table of decisions (allow, shape, block), who approved each and when, how each is expressed in robots.txt and at the edge, and a review schedule.

Should we block AI training crawlers but allow answer engines?

Many organisations do, because answer engines can cite and send readers while training crawlers do not. It is a business decision; the policy makes it explicit.

Is robots.txt enough to enforce the policy?

No. It is honoured only by compliant crawlers. Enforcement needs identity checks and rules on the proxy or balancer.

Who should own the policy?

A named person with authority over content use, working with operations. Engineers implement it; they should not have to invent it.

How often should it be reviewed?

Quarterly is typical, with an immediate review when a new operator appears in the logs at volume.