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/bestcarly/opc-coding-guide/testinggit clone --depth 1 https://github.com/bestcarly/opc-coding-guideWhat 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.01890 | $0.01890 |
| Opus 5 | $0.00945 | $0.00945 |
| Sonnet 5 | $0.00378 | $0.00378 |
| Haiku 4.5 | $0.00189 | $0.00189 |
Grade A, and why
testing 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 — 285 lines — stays where its author put it; the contents beside it link to each section on GitHub.
测试规则(2026 年版)
补充人:墨铃 (Mori)
补充日期:2026-02-28
参考章节:第八章
单元测试
- 每个函数/模块必须有单元测试
- 覆盖率目标:≥ 80%(核心模块 ≥ 90%)
- 测试命名:
should [预期行为] when [条件] - 使用 Arrange-Act-Assert (AAA) 模式
// ✅ 正确:AAA 模式
describe("UserService", () => {
describe("createUser", () => {
it("should throw ValidationError when email is invalid", async () => {
// Arrange
const invalidInput = { email: "not-an-email", password: "validPassword123!" };
// Act & Assert
await expect(UserService.createUser(invalidInput))
.rejects.toThrow(ValidationError);
});
it("should return user with hashed password when input is valid", async () => {
// Arrange
const validInput = { email: "[email protected]", password: "validPassword123!" };
// Act
const user = await UserService.createUser(validInput);
// Assert
expect(user.email).toBe(validInput.email);
expect(user.passwordHash).not.toBe(validInput.password);
expect(bcrypt.compareSync(validInput.password, user.passwordHash)).toBe(true);
});
});
});
集成测试
- 关键业务流程必须有集成测试
- 使用真实数据库(测试环境)
- 测试数据独立,不互相依赖
- 每个测试前后清理数据
// ✅ 正确:集成测试示例
describe("POST /api/orders", () => {
let db: Database;
let auth: AuthHelper;
beforeAll(async () => {
db = await createTestDatabase();
auth = new AuthHelper(db);
});
afterAll(async () => {
await db.close();
});
beforeEach(async () => {
await db.truncate(["users", "orders", "products"]);
});
it("should create order and reduce inventory", async () => {
// 准备测试数据
const user = await auth.createUser({ email: "[email protected]" });
const product = await db.insert("products", { name: "Widget", stock: 100, price: 9.99 });
// 执行请求
const response = await request(app)
.post("/api/orders")
.set("Authorization", `Bearer ${user.token}`)
.send({ productId: product.id, quantity: 5 });
// 验证响应
expect(response.status).toBe(201);
expect(response.body.order.total).toBe(49.95);
// 验证数据库状态
const updatedProduct = await db.findById("products", product.id);
expect(updatedProduct.stock).toBe(95);
});
});
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 · 285 lines · 1,890 tokens per session scan A 166b35b0cbe4
testing is a cursor rule published in the GitHub repository bestcarly/opc-coding-guide (7 stars, last pushed 5mo ago), licensed MIT. It adds 1,890 tokens to every session, about $0.0095 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-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.