solid-patterns

solid-patterns is a cursor rule for Cursor from SecondLifes/delphi-expert. It costs 0 tokens per session (473 once invoked), scanned A, original, MIT.

A set of Delphi design rules for structuring classes and services with common patterns such as Repository, Factory, and Strategy. It also explains SOLID principles, which help keep code focused and easier to extend.

In plain words
What is it for?
Use it when creating or reviewing Delphi classes, repositories, services, and interfaces. It covers constructor injection, interface-based dependencies, and repository structure.
Why use it?
It reduces tightly coupled code, duplicated responsibilities, and business logic placed in user-interface forms. It gives developers consistent ways to separate domain, service, and infrastructure code.

Cursor rule for Cursor

Install

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.

agentmods
npx agentmods add rules/secondlifes/delphi-expert/solid-patterns
Clone the repo
git clone --depth 1 https://github.com/SecondLifes/delphi-expert

Made for: Cursor.

Wrote 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.

agentmods badge for solid-patterns

README.md
[![agentmods](https://agentmods.dev/badge/rules/secondlifes/delphi-expert/solid-patterns.svg)](https://agentmods.dev/rules/secondlifes/delphi-expert/solid-patterns)
Your own site
<a href="https://agentmods.dev/rules/secondlifes/delphi-expert/solid-patterns"><img src="https://agentmods.dev/badge/rules/secondlifes/delphi-expert/solid-patterns.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 473 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin unknown No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00473
Opus 5 $0.00000 $0.00236
Sonnet 5 $0.00000 $0.00095
Haiku 4.5 $0.00000 $0.00047

Measured today against content hash 00d60504bf92, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

solid-patterns 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.

.cursor/rules/solid-patterns.mdc · 72 lines

What it actually says

SOLID Patterns — Rules

Use these rules when creating new classes, services or repositories in Delphi.

SOLID Principles

SRP — Single Responsibility

  • One class = one responsibility
  • Separate: TCustomerValidator, TCustomerRepository, TCustomerService
  • Do not put business logic in forms

OCP — Open/Closed

  • Use interfaces for extension
  • New features = new classes implementing existing interface

LSP — Liskov Substitution

  • Any implementation of ICustomerRepository must work interchangeably

ISP — Interface Segregation

  • IReadableRepository<T> separated from IWritableRepository<T>
  • Small and cohesive interfaces

DIP — Dependency Inversion

  • Always use constructor injection
  • Dependencies via interfaces, never concrete classes

Repository Creation Pattern

//1. Interface no Domain
ICustomerRepository = interface
  ['{30394253-A077-4363-A974-6477DDAB5671}']
  function FindById(AId: Integer): TCustomer;
  procedure Save(ACustomer: TCustomer);
end;

//2. Implementation on Infrastructure
TCustomerRepository = class(TInterfacedObject, ICustomerRepository)
  constructor Create(AConnection: TFDConnection);
end;

Service Creation Pattern

//1. Interface no Application
ICustomerService = interface
  ['{0231C34F-7161-49D0-88C2-D326B67ABB38}']
  procedure CreateCustomer(const AName, ACpf: string);
end;

//2. Implementation with constructor injection
TCustomerService = class(TInterfacedObject, ICustomerService)
  constructor Create(ARepository: ICustomerRepository);
end;

Checklist

  • Interfaces defined in the Domain
  • Constructor injection for all dependencies
  • Guard clauses at the beginning of methods
  • Try/finally for temporary objects
  • XMLDoc in public methods
  • No global variables, no with, no generic catch
Changes

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.

  1. today First seen · 72 lines · 0 tokens per session scan A 00d60504bf92

Subscribe to this mod's changes

solid-patterns is a cursor rule published in the GitHub repository SecondLifes/delphi-expert (3 stars, last pushed 3d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 473 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.