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/typescript-code-generation-rulesgit 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/typescript-code-generation-rules)<a href="https://agentmods.dev/rules/holtwood/awesome-cursorrules-zh/typescript-code-generation-rules"><img src="https://agentmods.dev/badge/rules/holtwood/awesome-cursorrules-zh/typescript-code-generation-rules.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 | $0.00000 | $0.00483 |
| Opus 5 | $0.00000 | $0.00242 |
| Sonnet 5 | $0.00000 | $0.00097 |
| Haiku 4.5 | $0.00000 | $0.00048 |
Grade A, and why
typescript-code-generation-rules 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.
What it actually says
-
始终使用 TypeScript 确保类型安全。提供适当的类型定义和接口。
-
将组件实现为函数式组件,在需要状态管理时使用 hooks。
-
提供清晰、简洁的注释来解释复杂逻辑或设计决策。
-
建议与 Next.js 14 最佳实践一致的适当文件结构和命名约定。
-
仅在创建客户端组件时使用
'use client'指令。 -
在 .tsx 文件中采用以下组件定义语法,让 TypeScript 推断返回类型:
const ComponentName = () => { // 组件逻辑 }; -
对于 props,使用接口定义:
interface ComponentNameProps { // Props 定义 } const ComponentName = ({ prop1, prop2 }: ComponentNameProps) => { // 组件逻辑 }; -
在 .tsx 文件中对组件使用命名导出:
export const ComponentName = () => { // 组件逻辑 }; -
对于页面组件,在 .tsx 文件中使用默认导出:
const Page = () => { // 页面组件逻辑 }; export default Page; -
如果需要显式类型,优先使用
React.FC或React.ReactNode:import React from 'react'; const ComponentName: React.FC = () => { // 组件逻辑 }; // 或者 const ComponentName = (): React.ReactNode => { // 组件逻辑 }; -
定义 React 组件时,避免不必要的类型注释,尽可能让 TypeScript 推断类型。
-
仅在必要时使用
React.FC或React.ReactNode进行显式类型,避免使用JSX.Element。 -
编写干净、简洁的组件定义,不使用冗余的类型注释。
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 · 57 lines · 483 tokens per session scan A 0c3a130f44a1
typescript-code-generation-rules is a cursor rule published in the GitHub repository holtwood/awesome-cursorrules-zh (232 stars, last pushed 29d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 483 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
app-router-patterns
Next.js 14+ App Router patterns — Server Components, Client Components, Route Handlers, Server Actions, and metadata API.
component-development
Modern React + TypeScript component patterns — hooks, typed props, performance optimization, forms, and testing.
cursorrules
You are using StyleSeed, an AI design-method engine for product UI and other visual artifacts.
nextjs
Next.js Application Development Standards.
react-query-cursorrules-prompt-file
Cursor rules for React development with React Query integration.
solidity-react-blockchain-apps-cursorrules-prompt-
Cursor rules for Solidity development with React Blockchain apps integration.