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/peerigon/configs/coding-styleguide-html-cssgit clone --depth 1 https://github.com/peerigon/configsWhat 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.00803 |
| Opus 5 | $0.00000 | $0.00402 |
| Sonnet 5 | $0.00000 | $0.00161 |
| Haiku 4.5 | $0.00000 | $0.00080 |
Grade A, and why
coding-styleguide-html-css 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 yesterday.
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 — 160 lines — stays where its author put it; the contents beside it link to each section on GitHub.
HTML & CSS
HTML
Semantic Elements
Use semantic elements like header, nav, main, article, section, aside, footer, figure, time when content has inherent meaning:
<article>
<h1>Breaking News</h1>
<time datetime="2025-01-15">January 15, 2025</time>
</article>
Form Labels
Every input requires an associated label. Prefer wrapping the input with label. Otherwise use for/id (when using React, call useId()):
<!-- Good -->
<label for="user-email">Email Address</label>
<input type="email" id="user-email" name="email" />
<!-- Better -->
<label>
Email Address:
<input type="email" name="email" />
</label>
Buttons vs. Links
Use buttons for actions, links for navigation:
<button type="button" onclick="saveData()">Save</button>
<a href="/next">Next</a>
Image Alt Text
Provide descriptive alt text for content images, empty alt for decorative images:
<img src="chart.png" alt="Sales increased 23% in Q4 2024" />
<img src="decoration.png" alt="" />
CSS
Selectors and naming
Use purpose-based named classes for styling with a maximum of 3 levels specificity.
.site-header {
}
.card {
}
.error-message {
}
.feature-highlight {
}
Check what styling solution (CSS Modules, BEM, Tailwind, ...) is used in the project and follow its conventions.
Units
Use typography units like rem, ch, ... for typography-related spacing:
font-size: 1.125rem;
Use px for everything else:
border: 1px solid #ccc;
Accessibility
Focus Indicators
Provide visible focus for all interactive elements:
button:focus {
outline: 2px solid #007bff;
outline-offset: 2px;
}
Color Information
Never use color alone to convey information. Use text labels or patterns to supplement color.
Motion Preferences
Respect reduced motion preferences:
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
}
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.
- yesterday First seen · 160 lines · 803 tokens per session scan A b1406e2de481
coding-styleguide-html-css is a cursor rule published in the GitHub repository peerigon/configs (4 stars, last pushed 20d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 803 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-31.
Other cursor rules, from other repositories
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.
typescript
Changes to these high-fan-out internals can affect every message, delta, element, or rerun. Keep work in them minimal, and benchmark changes with representative stress-test apps.
coolify-ai-docs
Master reference to all Coolify AI documentation in .ai/ directory.
python_lib
Tips and guidelines specific to the development of the Streamlit Python library, not applicable to scripts and e2e tests.
specs
This directory contains product and tech specs for Streamlit features.