awesome-cursor-rules-mdc is a generator that creates Cursor MDC rule files from structured library information, using semantic search and language models to gather and organize guidance. Developers use it to produce reusable rules for libraries in Cursor, and the catalogue includes 200 of those rules.
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.
git clone --depth 1 https://github.com/sanjeed5/awesome-cursor-rules-mdcWrote 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.
[](https://agentmods.dev/rules/sanjeed5/awesome-cursor-rules-mdc/llama-index)<a href="https://agentmods.dev/rules/sanjeed5/awesome-cursor-rules-mdc/llama-index"><img src="https://agentmods.dev/badge/rules/sanjeed5/awesome-cursor-rules-mdc/llama-index.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.02851 | $0.02851 |
| Opus 5 | $0.01425 | $0.01425 |
| Sonnet 5 | $0.00570 | $0.00570 |
| Haiku 4.5 | $0.00285 | $0.00285 |
Grade A, and why
llama-index 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 4d 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.
How it starts
The opening of the file, as written. The whole thing — 355 lines — stays where its author put it; the contents beside it link to each section on GitHub.
LlamaIndex Best Practices
LlamaIndex is the definitive framework for building context-augmented LLM applications. Follow these rules to ensure your RAG pipelines and agents are modular, type-safe, performant, and production-ready in 2025.
1. Code Organization and Structure
Organize your LlamaIndex components into distinct, testable functions or classes. Leverage the Workflow API for explicit data flow.
✅ GOOD: Modular Functions & Workflow API
# core_components.py
from llama_index.core import Document, VectorStoreIndex, Settings
from llama_index.core.readers import SimpleDirectoryReader
from llama_index.llms.openai import OpenAI
from llama_index.embeddings.openai import OpenAIEmbedding
from llama_index.core.workflow import Workflow, LlamaAgentWorker, AgentInput, AgentOutput
from typing import List
def configure_global_settings() -> None:
"""Configures global LLM and embedding models for consistent behavior."""
Settings.llm = OpenAI(model="gpt-4o-mini", temperature=0.1)
Settings.embed_model = OpenAIEmbedding(model="text-embedding-3-small")
def load_documents(data_path: str) -> List[Document]:
"""Loads documents from a directory using SimpleDirectoryReader."""
return SimpleDirectoryReader(data_path).load_data()
def build_vector_index(documents: List[Document]) -> VectorStoreIndex:
"""Builds a VectorStoreIndex from documents."""
return VectorStoreIndex.from_documents(documents)
def create_query_engine(index: VectorStoreIndex):
"""Creates a query engine with optimal response mode for citations."""
return index.as_query_engine(response_mode="compact", verbose=True)
# main_app.py
from core_components import (
configure_global_settings, load_documents, build_vector_index, create_query_engine
)
def main_rag_workflow():
configure_global_settings() # Always configure settings first
docs = load_documents("./data")
index = build_vector_index(docs)
query_engine = create_query_engine(index)
# Wrap the query engine in an AgentWorker for Workflow compatibility
agent_worker = LlamaAgentWorker.from_query_engine(query_engine)
rag_workflow = Workflow(
name="SimpleRAGWorkflow",
description="A basic RAG pipeline for document querying.",
input_type=AgentInput,
output_type=AgentOutput,
worker=agent_worker
)
result = rag_workflow.run(AgentInput(query="What are the main themes across these documents?"))
print(result.response)
if __name__ == "__main__":
main_rag_workflow()
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.
- 4d ago First seen · 355 lines · 2,851 tokens per session scan A 7adde441a778
llama-index is a cursor rule published in the GitHub repository sanjeed5/awesome-cursor-rules-mdc (3,570 stars, last pushed 3mo ago), licensed CC0-1.0. It adds 2,851 tokens to every session, about $0.0143 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-09-03.
Other cursor rules, from other repositories
cardano-mcp
These rules complement our main development collaboration rules, focusing specifically on the Model Context Protocol (MCP) server project with TypeScript. This project serves as a specialized RAG (Retrieval-Augmented Generation) gateway to existing Cardano resources, documentation, and tools to assist with dApp…
005_Dynamo_KV_Cache_Management_KVBM
NVIDIA Dynamo KV Cache Management (KVBM) - Advanced memory management and offloading strategies for optimal performance.
elizaos_v2_core_memory
┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐ │ Memory Creation │ │ State Composition│ │ Knowledge Base │ │ & Storage │───▶│ & Context Build │───▶│ Integration │ │ │ │ │ │ │ │ - Memory Types │ │ - Provider Data │ │ - Document Proc │ │ - Validation │ │ - Context Merge │ │ - Embeddings │.
ponytail
Ponytail, lazy senior dev mode. Always pick the simplest solution that works.
angular-20
This rule provides comprehensive best practices and coding standards for Angular development, focusing on modern TypeScript, standalone components, signals, and performance optimizations.
dev-standard
Apache Superset development standards and guidelines for Cursor IDE.