astro

astro is a cursor rule for Cursor from Bilal140202/the-lord-of-the-skills. It costs 0 tokens per session (1,729 once invoked), scanned A, a copy of astro, MIT.

A set of guidance for building content-focused websites with Astro, a web framework that sends little JavaScript to the browser and adds interactive parts only where needed.

In plain words
What is it for?
Use it when structuring Astro components, content collections, layouts, pages, styles, and file-based routes.
Why use it?
It helps keep blogs, documentation sites, and other content-heavy pages simpler and faster while still allowing interactive React, Vue, or Svelte components.

Cursor rule for Cursor

Written for Cursor: a Cursor rule (.mdc).

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is import BaseLayout from '../layouts/BaseLayout.astro'.

Good fit Use it when structuring Astro components, content collections, layouts, pages, styles, and file-based routes.

Compare 6 cursor rules from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/Bilal140202/the-lord-of-the-skills
agentmods
npx agentmods add rules/bilal140202/the-lord-of-the-skills/astro

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 astro

README.md
[![agentmods](https://agentmods.dev/badge/rules/bilal140202/the-lord-of-the-skills/astro/github.svg)](https://agentmods.dev/rules/bilal140202/the-lord-of-the-skills/astro)
Your own site
<a href="https://agentmods.dev/rules/bilal140202/the-lord-of-the-skills/astro"><img src="https://agentmods.dev/badge/rules/bilal140202/the-lord-of-the-skills/astro/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for astro

Your own site · 80×15
<a href="https://agentmods.dev/rules/bilal140202/the-lord-of-the-skills/astro"><img src="https://agentmods.dev/badge/rules/bilal140202/the-lord-of-the-skills/astro.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 1,729 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 100% copy Near-identical to another mod 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.01729
Opus 5 $0.00000 $0.00864
Sonnet 5 $0.00000 $0.00346
Haiku 4.5 $0.00000 $0.00173

Measured 9d ago against content hash 45513ebbe7a9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

astro 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 9d 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

This is a copy

100% identical to astro — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/gondor/cursor/Renvia-code__best-cursor-rules/astro.mdc · 369 lines

How it starts

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

Astro Best Practices

Overview

Aspect Recommendation
Use Case Content-focused sites, blogs, docs
Default Zero JS shipped to client
Interactive Islands (React, Vue, Svelte, etc.)
Content Content Collections

Project Structure

src/
├── components/     # .astro and framework components
├── content/        # Content collections (markdown, MDX)
│   └── blog/
│       └── post-1.md
├── layouts/        # Page layouts
├── pages/          # File-based routing
│   ├── index.astro
│   └── blog/
│       └── [slug].astro
├── styles/         # Global styles
└── content.config.ts  # Collection schemas

Astro Components

Basic Component

---
// Component Script (runs at build time)
interface Props {
  title: string
  description?: string
}

const { title, description = 'Default description' } = Astro.props
const currentYear = new Date().getFullYear()
---

<!-- Component Template -->
<article>
  <h1>{title}</h1>
  <p>{description}</p>
  <footer>© {currentYear}</footer>
</article>

<style>
  /* Scoped by default */
  article {
    padding: 1rem;
  }
</style>

Slots

---
// Card.astro
interface Props {
  title: string
}

const { title } = Astro.props
---

<div class="card">
  <h2>{title}</h2>
  <slot />  <!-- Default slot -->
  <slot name="footer" />  <!-- Named slot -->
</div>

<!-- Usage -->
<Card title="My Card">
  <p>Card content</p>
  <div slot="footer">Footer content</div>
</Card>

Islands Architecture

Client Directives

---
import ReactCounter from './Counter.tsx'
import VueModal from './Modal.vue'
---

<!-- Load immediately -->
<ReactCounter client:load />

<!-- Load when visible (lazy) -->
<ReactCounter client:visible />

<!-- Load when idle -->
<ReactCounter client:idle />

<!-- Load on specific media query -->
<VueModal client:media="(max-width: 768px)" />

<!-- Only hydrate client-side (no SSR) -->
<ReactCounter client:only="react" />

Read the full file on GitHub · 369 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. 9d ago First seen · 369 lines · 0 tokens per session scan A 45513ebbe7a9

Subscribe to this mod's changes

astro is a cursor rule published in the GitHub repository Bilal140202/the-lord-of-the-skills (4 stars, last pushed 6d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,729 tokens. A static security scan graded it A with 0 findings. It is 100% identical to astro, differing in 0 lines, and is treated as a copy.