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/n9e/fe/appgit clone --depth 1 https://github.com/n9e/feWhat 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.00693 | $0.00693 |
| Opus 5 | $0.00347 | $0.00347 |
| Sonnet 5 | $0.00139 | $0.00139 |
| Haiku 4.5 | $0.00069 | $0.00069 |
Grade A, and why
app 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 today.
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
N9E 前端项目
目录速览
src/
├── components/ # 通用 UI 与业务无关的基础组件
├── pages/ # 路由页面
├── plus/ # Plus 扩展(datasource、parcels 等,路径别名 plus:/*)
├── plugins/ # 数据源等插件化功能(含 Explorer/Dashboard 等)
├── store/ # Zustand 等状态
├── services/ # 接口与领域服务
├── utils/ # 工具函数
├── routers/ # 路由配置
├── theme/ # 主题与 CSS 变量(如 variable.css)
├── locales/ # 国际化资源
├── assets/ # 静态资源
├── types/ # 全局类型
├── App.tsx
└── main.tsx
技术栈与风格
- TypeScript + React Hooks;优先函数组件,避免 class 组件。
- 组件 Props 使用
interface显式声明,避免any。 - 遵循仓库既有格式与 Prettier 配置;改动保持最小范围,不重写无关模块。
- 不臆测接口或业务逻辑;上下文不足时说明缺口或反问。
- 类型收窄优先使用原生接口:用
Array.isArray代替_.isArray,用typeof x === 'number'代替_.isNumber,用x == null代替_.isNil,以此类推。lodash 的类型守卫函数在缺少@types/lodash时不会被 TypeScript 识别为类型守卫,导致unknown类型无法收窄。
数据与错误
- 异步请求须有错误处理(
try/catch、.catch、onError等,与现有模式一致)。
折叠面板与表单
antd的Collapse.Panel初始折叠时不会挂载内容。面板内包含需要参与校验、回填或提交的Form.Item/Form.List时,必须添加forceRender,确保字段注册到 Form;仅用于展示的内容不需要添加。
样式与颜色
- 颜色、主题相关值使用
src/theme/variable.css(及现有主题体系)中的变量,避免魔法色值。 - Tailwind 与 Less 的分工、反模式与迁移方式 见
.cursor/rules/tailwind-usage.mdc(匹配src/**/*.{ts,tsx,less,css}时自动注入)。
测试
- 使用 Vitest + Testing Library。
- 测试文件命名:
*.test.ts/*.test.tsx或*.spec.ts/*.spec.tsx,与待测文件同目录或约定目录即可。
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.
- today First seen · 53 lines · 693 tokens per session scan A dcf7979043a7
app is a cursor rule published in the GitHub repository n9e/fe (302 stars, last pushed today), licensed Apache-2.0. It adds 693 tokens to every session, about $0.0035 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-01.
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.