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/holtwood/awesome-cursorrules-zh/mobx-devtoolsgit clone --depth 1 https://github.com/holtwood/awesome-cursorrules-zhWrote 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/holtwood/awesome-cursorrules-zh/mobx-devtools)<a href="https://agentmods.dev/rules/holtwood/awesome-cursorrules-zh/mobx-devtools"><img src="https://agentmods.dev/badge/rules/holtwood/awesome-cursorrules-zh/mobx-devtools.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.00000 | $0.00466 |
| Opus 5 | $0.00000 | $0.00233 |
| Sonnet 5 | $0.00000 | $0.00093 |
| Haiku 4.5 | $0.00000 | $0.00047 |
Grade A, and why
mobx-devtools 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
- 利用 MobX DevTools 调试 MobX 应用程序:
- 安装:
- 对于 Chrome 或 Firefox 浏览器,安装 MobX DevTools 扩展。
- 在项目中安装
mobx-react-devtools包(通常仅在开发环境使用):npm install --save-dev mobx-react-devtools # 或者 yarn add --dev mobx-react-devtools
- 集成:
- 在应用程序的入口文件(如
index.js或App.js)中导入并渲染DevTools组件。 - 示例:
import React from 'react'; import ReactDOM from 'react-dom/client'; import App from './App'; // 仅在开发环境导入 DevTools if (process.env.NODE_ENV === 'development') { const DevTools = require('mobx-react-devtools').default; ReactDOM.createRoot(document.getElementById('root')).render( <React.StrictMode> <App /> <DevTools /> </React.StrictMode> ); } else { ReactDOM.createRoot(document.getElementById('root')).render( <React.StrictMode> <App /> </React.StrictMode> ); }
- 在应用程序的入口文件(如
- 功能:
- 状态检查:实时查看 MobX store 的状态,包括可观察数据、计算值和 action。
- 时间旅行调试:回溯和重放状态变化,帮助理解数据流和定位问题。
- Action 追踪:记录所有 action 的执行,显示其参数和对状态的影响。
- 性能分析:识别哪些组件因为哪些状态变化而重新渲染,优化性能。
- 最佳实践:
- 仅在开发环境中使用 MobX DevTools,避免在生产环境中打包。
- 结合浏览器开发者工具一起使用,更全面地调试应用程序。
- 安装:
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 · 47 lines · 0 tokens per session scan A 247688985a47
mobx-devtools is a cursor rule published in the GitHub repository holtwood/awesome-cursorrules-zh (232 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 466 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-09-03.
Other cursor rules, from other repositories
component-development
Modern React + TypeScript component patterns — hooks, typed props, performance optimization, forms, and testing.
app-router-patterns
Next.js 14+ App Router patterns — Server Components, Client Components, Route Handlers, Server Actions, and metadata API.
semiotic-react-dataviz-cursorrules-prompt-file
Cursor rules for Semiotic data visualization library with 30+ chart types, MCP server, and AI-assisted chart generation.
nextjs-react-tailwind-cursorrules-prompt-file
Cursor rules for Next.js development with React and Tailwind CSS integration.
nextjs-react-typescript-cursorrules-prompt-file
Cursor rules for Next.js development with React and TypeScript integration.
react-components-creation-cursorrules-prompt-file
Cursor rules for React component creation and development.