Add Delphi Expert Agent#1708
Open
sergiodsiqueira wants to merge 1 commit into
Open
Conversation
Contributor
🔍 Skill Validator Results⛔ Findings need attention
Summary
Full validator output```text Found 1 agent(s) ❌ [agent:Delphi Expert] Agent name 'Delphi Expert' does not match filename 'delphi-expert.agent.md' (expected 'Delphi Expert.agent.md'). ❌ [agent:Delphi Expert] Agent name 'Delphi Expert' contains invalid characters — must be lowercase alphanumeric and hyphens only. Validated 1 agent(s){Ansi.Red}Agent spec conformance failures — fix the errors above.{Ansi.Reset} |
aaronpowell
requested changes
May 15, 2026
Contributor
aaronpowell
left a comment
There was a problem hiding this comment.
There appears to be some inadvertent changes to other parts of the README.agents.md file as part of this PR which is resulting in validation failures - can you rerun the npm run build script to ensure that it's updated correctly?
804fa23 to
54558a3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.stagedbranch for this pull request.Description
Added a new Delphi Expert agent focused on Delphi/Object Pascal development.
This agent helps with Delphi project tasks such as VCL/FMX development, Object Pascal best practices, database access, FireDAC/Oracle usage, REST integrations, component development, memory/resource management, threading, and automated testing with DUnitX.
The agent includes Delphi-specific guidance for:
Generating production-ready Delphi/Object Pascal code
Respecting Delphi version compatibility, especially Delphi 10.x
Creating DUnitX tests using a known-good runner structure
Supporting TestInsight and CI-friendly test execution
Registering newly created units in .dpr or .dpk files so they appear correctly in the Delphi IDE Project Manager
Avoiding loose .pas files that are not tracked by the project
The purpose is to provide a specialized AI assistant for developers maintaining or modernizing Delphi applications, especially enterprise desktop systems that rely on VCL, databases, and legacy-compatible tooling.
Type of Contribution
Additional Notes
This contribution adds a Delphi/Object Pascal specialist agent based on the existing expert-agent structure used by other language agents.
The agent is intentionally focused on practical Delphi development, including legacy and enterprise scenarios where Delphi is still widely used. It includes guidance for VCL/FMX applications, database-heavy systems, FireDAC/Oracle usage, REST integrations, component development, memory/resource ownership, threading, and automated testing.
A few Delphi-specific points were added because they are important in real Delphi projects:
DUnitX tests should include a functional .dpr runner, not only test fixture units.
The DUnitX runner template includes TestInsight support, console logging, NUnit XML output, RTTI discovery, and CI-safe behavior.
New .pas units created during refactoring should be registered in the .dpr or .dpk so they appear in the Delphi IDE Project Manager.
The agent avoids assuming the latest Delphi version and gives special attention to Delphi 10.x compatibility.
The goal is to help Delphi developers get useful, compilable, maintainable code and avoid common Delphi-specific issues that generic coding agents often miss.
By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.