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/wangqiqi/cursor-ai-rules/react-advanced-securitygit clone --depth 1 https://github.com/wangqiqi/cursor-ai-rulesWhat 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.00573 |
| Opus 5 | $0.00000 | $0.00287 |
| Sonnet 5 | $0.00000 | $0.00115 |
| Haiku 4.5 | $0.00000 | $0.00057 |
Grade A, and why
react-advanced-security 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 2d 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.
What it actually says
React 安全实践 (Security)
本规则由
@react-advanced引用
输入验证
function useFormValidation(initialValues, validationRules) {
const [values, setValues] = useState(initialValues)
const [errors, setErrors] = useState({})
const validateField = (name, value) => {
const rules = validationRules[name]
if (!rules) return null
for (const rule of rules) {
const error = rule(value)
if (error) return error
}
return null
}
const handleChange = (name, value) => {
setValues(prev => ({ ...prev, [name]: value }))
setErrors(prev => ({ ...prev, [name]: validateField(name, value) }))
}
return { values, errors, handleChange, isValid: Object.values(errors).every(e => !e) }
}
安全 HTML 渲染 (DOMPurify)
import DOMPurify from 'dompurify'
function SafeHtml({ html, className }) {
const sanitizedHtml = useMemo(() =>
DOMPurify.sanitize(html, {
ALLOWED_TAGS: ['p', 'br', 'strong', 'em', 'a'],
ALLOWED_ATTR: ['href', 'target', 'rel']
}),
[html]
)
return <div className={className} dangerouslySetInnerHTML={{ __html: sanitizedHtml }} />
}
验证规则示例
const validationRules = {
name: [
(v) => !v ? '姓名不能为空' : null,
(v) => v.length < 2 ? '姓名至少2个字符' : null,
(v) => /[<>&"']/.test(v) ? '姓名包含无效字符' : null
],
email: [
(v) => !v ? '邮箱不能为空' : null,
(v) => !/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(v) ? '邮箱格式不正确' : null
],
}
原则
- MUST 验证并清理用户输入
- NEVER 直接使用
dangerouslySetInnerHTML渲染未清理的 HTML - MUST 在服务端也进行验证
引用: @react-advanced
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.
- 2d ago First seen · 80 lines · 0 tokens per session scan A e89312cfd8d3
react-advanced-security is a cursor rule published in the GitHub repository wangqiqi/cursor-ai-rules (15 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 573 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
general
Wonder Blocks design system conventions, component patterns, and coding standards.
react-vite-web
Cursor rule "react-vite-web" from WellApp-ai/Well, covering web rules (react + vite), routing, component structure, state management and api integration.
frontend-patterns
React/TypeScript patterns for src/ code.
new-component
Workflow for creating new React components.
frontend-architecture
Vite + React SPA architecture - directory layout, providers, bundle splitting. Tailwind styling in tailwind.mdc.
performance-optimization-rule
Rules to optimize performance of React and TypeScript components.