reticle-grid-pattern

reticle-grid-pattern is a cursor rule for Cursor from Kevin-Liu-01/Agent-Machines. It costs 0 tokens per session (1,370 once invoked), scanned A, original, MIT.

A CSS layout rule for building page sections as a grid of bordered cells, with set margins, gutters, rails, and rounded cards.

In plain words
What is it for?
Use it when creating or editing page-level grids for the Agent Machines landing page, including their desktop and mobile layouts.
Why use it?
It keeps every section aligned to the same visual structure instead of requiring each page area to be designed separately.

Cursor rule for Cursor

Written for Cursor: installed under .cursor/.

Good fit Use it when creating or editing page-level grids for the Agent Machines landing page, including their desktop and mobile layouts.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/kevin-liu-01/agent-machines/reticle-grid-pattern
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.

Clone the repo
git clone --depth 1 https://github.com/Kevin-Liu-01/Agent-Machines

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 reticle-grid-pattern

README.md
[![agentmods](https://agentmods.dev/badge/rules/kevin-liu-01/agent-machines/reticle-grid-pattern.svg)](https://agentmods.dev/rules/kevin-liu-01/agent-machines/reticle-grid-pattern)
Your own site
<a href="https://agentmods.dev/rules/kevin-liu-01/agent-machines/reticle-grid-pattern"><img src="https://agentmods.dev/badge/rules/kevin-liu-01/agent-machines/reticle-grid-pattern.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,370 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00000 $0.01370
Opus 5 $0.00000 $0.00685
Sonnet 5 $0.00000 $0.00274
Haiku 4.5 $0.00000 $0.00137

Measured 8d ago against content hash e308f83c0112, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

reticle-grid-pattern 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 8d 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.

.cursor/rules/reticle-grid-pattern.mdc · 143 lines

How it starts

The opening of the file, as written. The whole thing — 143 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Reticle Grid Pattern

The canonical layout system for Agent Machines landing sections. Every section is a structural grid of hoverable cells with hairline borders, rounded cards inside cells, full-width separator lines, and hatched margins.

Page-level structure

[outer] [gutter 4rem] [hatch margin 4rem] [content max-w] [hatch margin 4rem] [gutter 4rem] [outer]
  • Content: centered, capped at --ret-content-max (1200px).
  • Margins: --ret-rail-offset (4rem) wide, filled with 45deg hatch (repeating-linear-gradient(45deg, var(--ret-rail) 0 1px, transparent 1px 6px)).
  • Gutters: same width as margins, empty, bordered on their inner edge.
  • Page root has overflow-x-hidden to clip full-bleed hairlines.

Grid construction

Sections use CSS Grid with a narrow auto-width left column + N equal columns:

<div className="grid grid-cols-4 auto-rows-auto md:grid-cols-[auto_repeat(8,1fr)]">
  • Column 1 (auto): narrow rail for navigation/tool icons.
  • Columns 2–9 (1fr each): content cells.
  • Mobile collapses to grid-cols-4, hiding rail and rightmost cells.

Cell anatomy

Every cell uses the Cell component:

<Cell action="..." agent={agent} hue={hue} className="..." hoverVisual={...}>
  {children}
</Cell>
  • Borders: border-b border-r border-[var(--ret-border)] — hairline on bottom and right. Last column in a row gets !border-r-0. Last row gets !border-b-0. This prevents doubled borders at edges.
  • Hover: every cell (including empty ones) has a hover overlay with:
    • A visual effect (HoverHatch, HoverGlow, HoverPulseGrid, HoverScene, HoverGradient).
    • An agent action label (logo + monospaced text + pulsing dot) in the bottom-left corner, colored in the active agent's hue.

Cards inside cells

Content cells contain a rounded card with padding:

<Cell ...>
  <div className="h-full p-1.5">
    <div className="h-full rounded-lg border border-[var(--ret-border)] bg-[var(--ret-bg)]">
      {/* content */}
    </div>
  </div>
</Cell>

Read the full file on GitHub · 143 lines

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. 8d ago First seen · 143 lines · 0 tokens per session scan A e308f83c0112

Subscribe to this mod's changes

reticle-grid-pattern is a cursor rule published in the GitHub repository Kevin-Liu-01/Agent-Machines (26 stars, last pushed 7d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,370 tokens. 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-30.