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/goranerhartic/cursor-development-rules/cqrsgit clone --depth 1 https://github.com/GoranErhartic/cursor-development-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.00021 | $0.02342 |
| Opus 5 | $0.00010 | $0.01171 |
| Sonnet 5 | $0.00004 | $0.00468 |
| Haiku 4.5 | $0.00002 | $0.00234 |
Grade A, and why
cqrs 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.
How it starts
The opening of the file, as written. The whole thing — 300 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CQRS Pattern for Spring Boot BFF
Note: This BFF project orchestrates HTTP calls to backend services and does NOT use database transactions. Therefore,
@Transactionalannotations are NOT used in handlers.
Core Interfaces (Located in application/cqrs/)
// Marker interface for commands (write operations)
public interface Command<T> {}
// Marker interface for queries (read operations)
public interface Query<T> {}
// Command handler
public interface CommandHandler<C extends Command<T>, T> {
T handle(C command);
}
// Query handler
public interface QueryHandler<Q extends Query<T>, T> {
T handle(Q query);
}
// Dispatcher interface
public interface Dispatcher {
<T> T dispatch(Command<T> command);
<T> T dispatch(Query<T> query);
}
SimpleDispatcher Implementation
@Service
public class SimpleDispatcher implements Dispatcher {
private final ApplicationContext context;
public SimpleDispatcher(ApplicationContext context) {
this.context = context;
}
@Override
@SuppressWarnings("unchecked")
public <T> T dispatch(Command<T> command) {
var handlerType = getHandlerType(CommandHandler.class, command.getClass());
var handler = (CommandHandler<Command<T>, T>) context.getBean(handlerType);
return handler.handle(command);
}
@Override
@SuppressWarnings("unchecked")
public <T> T dispatch(Query<T> query) {
var handlerType = getHandlerType(QueryHandler.class, query.getClass());
var handler = (QueryHandler<Query<T>, T>) context.getBean(handlerType);
return handler.handle(query);
}
private Class<?> getHandlerType(Class<?> handlerInterface, Class<?> messageType) {
// Finds handler bean by matching generic type parameter
return context.getBeansOfType(handlerInterface).values().stream()
.map(Object::getClass)
.filter(type -> matchesMessageType(type, handlerInterface, messageType))
.findFirst()
.orElseThrow(() -> new IllegalStateException(
"No handler found for " + messageType.getSimpleName()));
}
}
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 · 300 lines · 21 tokens per session scan A 4218aebf3f6c
cqrs is a cursor rule published in the GitHub repository GoranErhartic/cursor-development-rules (19 stars, last pushed 6mo ago), licensed MIT. It adds 21 tokens to every session and 2,342 once invoked, about $0.0001 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-30.
Other cursor rules, from other repositories
backend
Backend Java — Spring Boot controllers/services, JUnit controller tests, MakeMe. Read this first for any backend work.
java-import-fqn
Java 禁止不必要的全限定类名,必须 import(类名冲突除外).
springboot-jpa-best-practices
Java Spring Boot + JPA 项目最佳实践,涵盖分层架构、注解、事务、异常处理、安全与代码风格等。.
java
Cursor rule "java" from themoah/klag, covering java conventions, testing and kafka client notes.
component-parameter-key-no-dot
@ComponentParameter 的 key 禁止包含 ".",统一使用下划线 / 顶层扁平命名.
java-openapi-annotations
生成 REST 接口时自动补充 OpenAPI 3(springdoc)注解.