delphi-spec-kit copilot-instructions.md

A set of instructions for writing Delphi code, where Delphi is a programming language based on Object Pascal. It covers naming, formatting, dependency handling, and where business logic should live.

In plain words
What is it for?
Use it when creating or changing Delphi classes, interfaces, exceptions, units, services, and form-related code.
Why use it?
It keeps generated code aligned with the project's established Delphi conventions and design rules.

Instructions file for GitHub Copilot

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 instructions/delphicleancode/delphi-spec-kit/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/delphicleancode/delphi-spec-kit

Made for: GitHub Copilot.

Per session 2,899 This file is loaded in full into every session.
When invoked 2,899 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original 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.02899 $0.02899
Opus 5 $0.01450 $0.01450
Sonnet 5 $0.00580 $0.00580
Haiku 4.5 $0.00290 $0.00290

Measured 2d ago against content hash 678a3c3f2378, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

delphi-spec-kit copilot-instructions.md 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.

.github/copilot-instructions.md · 214 lines

How it starts

The opening of the file, as written. The whole thing — 214 lines — stays where its author put it; the contents beside it link to each section on GitHub.

GitHub Copilot — Instructions for Delphi Projects

Contexto

This is a Delphi (Object Pascal) project that follows SOLID principles, clean code and the Object Pascal Style Guide. See AGENTS.md in the project root for the complete convention reference.

General Guidelines

  1. Always generate code in Object Pascal (Delphi) unless explicitly requested in another language.
  2. Use PascalCase for all identifiers. Lowercase reserved words.
  3. Respect the prefixes of the Pascal convention: T (classes), I (interfaces), E (exceptions), F (private fields), A (parameters), L (local variables).
  4. Prefer interfaces over concrete classes for dependencies.
  5. Use constructor injection for dependency injection.
  6. Never put business logic in form event handlers (OnClick, OnChange, etc.). Delegate to services.

Code Style

Indentation and Formatting

  • Indentation: 2 spaces (no tabs)
  • begin on the same line of if, for, while, with when in a single block
  • begin on new line for method implementations
  • Limit of 120 characters per line

Unit Sections

Order unit sections according to:

unit Nome;

interface

uses
  { RTL units },
  { Units do projeto };

type
  { Enums e Records }
  { Interfaces }
  { Classes }

implementation

uses
  { Units adicionais só necessárias na implementação };

{ Implementações }

end.

Variable Declaration

// Preferir inline var quando disponível (Delphi 10.3+)
var LCustomer := TCustomer.Create('João');

// Ou declaraction explícita com prefixo L
var
  LCustomer: TCustomer;
  LCount: Integer;

Error Handling

  • Use specific exceptions (create exception classes per domain):
    EBusinessRuleException = class(Exception);
    EEntityNotFoundException = class(Exception);
    EValidationException = class(Exception);
    
  • Guard clauses at the beginning of the method instead of deep nesting
  • Try/finally for memory management
  • Try/except only for actual error handling, never for control flow

Read the full file on GitHub · 214 lines

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. 2d ago First seen · 214 lines · 2,899 tokens per session scan A 678a3c3f2378

Subscribe to this mod's changes

delphi-spec-kit copilot-instructions.md is an instructions file published in the GitHub repository delphicleancode/delphi-spec-kit (50 stars, last pushed 5mo ago), licensed MIT. It adds 2,899 tokens to every session, about $0.0145 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.

Related

Other instructions, from other repositories