aem-three-phase-performance

aem-three-phase-performance is a cursor rule for Cursor from adobecom/da-express-milo. It costs 220 tokens per session, scanned A, original, Apache-2.0.

A set of rules for assigning page work to three loading stages: immediate, later, and delayed. It applies to Adobe Experience Manager and similar pages where content is first delivered, then prepared, then made interactive.

In plain words
What is it for?
Use it when deciding when a block, image, stylesheet, font, API call, or other page task should run.
Why use it?
It helps the important content appear quickly while postponing below-the-fold and third-party work. It also sets limits for what may load before the main content becomes visible.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/adobecom/da-express-milo/aem-three-phase-performance
Clone the repo
git clone --depth 1 https://github.com/adobecom/da-express-milo

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for aem-three-phase-performance

README.md
[![agentmods](https://agentmods.dev/badge/rules/adobecom/da-express-milo/aem-three-phase-performance.svg)](https://agentmods.dev/rules/adobecom/da-express-milo/aem-three-phase-performance)
Your own site
<a href="https://agentmods.dev/rules/adobecom/da-express-milo/aem-three-phase-performance"><img src="https://agentmods.dev/badge/rules/adobecom/da-express-milo/aem-three-phase-performance.svg" alt="Measured on agentmods" height="20"></a>
Per session 220 This file is loaded in full into every session.
When invoked 220 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00220 $0.00220
Opus 5 $0.00110 $0.00110
Sonnet 5 $0.00044 $0.00044
Haiku 4.5 $0.00022 $0.00022

Measured 3d ago against content hash 8ba855f75079, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

aem-three-phase-performance scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.cursor/rules/aem-three-phase-performance.mdc · 32 lines

What it actually says

AEM Three-Phase Loading (E-L-D)

APPLY: EVERY PERFORMANCE QUERY

Phase Assignment

Phase E (Eager): LCP elements, <100KB, single origin Phase L (Lazy): Below-fold, same-origin enhancement
Phase D (Delayed): Third-party, 3+ seconds after LCP

Phase E Budget Rules

  • 100KB total before LCP
  • Single origin only (no CDNs, fonts, APIs)
  • Essential AEM CSS (required for transformations)
  • First section only

Implementation Pattern

// ✅ Phase E: LCP structure immediately
export default async function init(el) {
  const isFirstSection = el.closest('.section') === document.querySelector('.section');
  
  if (isFirstSection) {
    // Phase E: Create LCP DOM immediately
    createLCPStructure(el);
  } else {
    // Phase L: Lazy load with intersection observer
    setupLazyLoading(el);
  }
}
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 32 lines · 220 tokens per session scan A 8ba855f75079

Subscribe to this mod's changes

aem-three-phase-performance is a cursor rule published in the GitHub repository adobecom/da-express-milo (6 stars, last pushed 4d ago), licensed Apache-2.0. It adds 220 tokens to every session, about $0.0011 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.