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.
npx agentmods add rules/tugkanboz/awesome-cursorrules/framework-architecturegit clone --depth 1 https://github.com/tugkanboz/awesome-cursorrulesWhat 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 | $0.00000 | $0.00857 |
| Opus 5 | $0.00000 | $0.00428 |
| Sonnet 5 | $0.00000 | $0.00171 |
| Haiku 4.5 | $0.00000 | $0.00086 |
Grade A, and why
framework-architecture 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.
How it starts
The opening of the file, as written. The whole thing — 121 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Selenium Python Framework Architecture
Modern Framework Foundation
- pytest Framework: Leverage pytest's powerful fixture system and plugin ecosystem
- Modular Architecture: Separate concerns with clear package structure
- Configuration Management: Environment-specific settings with proper inheritance
- Dependency Management: Pinned versions with regular security updates
Project Structure Best Practices
selenium-project/
├── tests/
│ ├── conftest.py # Global pytest configuration
│ ├── pages/ # Page Object Models
│ ├── specs/ # Test specifications
│ ├── utils/ # Helper utilities
│ └── data/ # Test data files
├── config/
│ ├── environments/ # Environment configurations
│ └── browsers/ # Browser configurations
├── reports/ # Test execution reports
├── logs/ # Application logs
├── requirements.txt # Python dependencies
└── pytest.ini # pytest configuration
pytest Configuration Excellence
# conftest.py - Global configuration
import pytest
import os
from selenium import webdriver
from selenium.webdriver.chrome.options import Options as ChromeOptions
from webdriver_manager.chrome import ChromeDriverManager
def pytest_addoption(parser):
"""Command line options for flexible test execution."""
parser.addoption("--browser", action="store", default="chrome")
parser.addoption("--headless", action="store_true", default=False)
parser.addoption("--env", action="store", default="dev")
parser.addoption("--parallel", action="store", default="1")
@pytest.fixture(scope="session")
def browser_config(request):
"""Browser configuration based on command line arguments."""
return {
"browser": request.config.getoption("--browser"),
"headless": request.config.getoption("--headless"),
"environment": request.config.getoption("--env")
}
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.
- 3d ago First seen · 121 lines · 857 tokens per session scan A 1dfb7948d82b
framework-architecture is a cursor rule published in the GitHub repository tugkanboz/awesome-cursorrules (20 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 857 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.
Other cursor rules, from other repositories
nestjs-testing-guidelines
为测试 NestJS 应用程序设置标准,包括单元、集成和端到端测试,以及 Jest 的使用。.
cursorrules
You are building an AI/ML project with Python. The project uses PyTorch for model training, handles data pipelines with proper validation, tracks experiments systematically, and follows production ML engineering practices. Code is type-hinted, tested, and reproducible.
unity-input
Guidelines for working with the New Input System in Unity 6.2.
unity-ui
Assets/ ├── UI/ │ ├── Runtime/ │ │ ├── Controllers/ │ │ │ └── MainMenuController.cs │ │ ├── Views/ │ │ │ └── MainMenuView.cs │ │ ├── ViewModels/ │ │ │ └── HealthViewModel.cs │ │ ├── UXML/ │ │ │ └── MainMenu.uxml │ │ └── USS/ │ │ └── MainMenu.uss │ └── Editor/ │ └── UIBuilderExtensions.cs.
java
Modern Java: records, sealed classes, streams, virtual threads.
javascript
Modern JavaScript: ES2023+, async patterns, common traps.