Add AI agent instructions and skills using open standards#679
Add AI agent instructions and skills using open standards#679mandre merged 1 commit intok-orc:mainfrom
Conversation
72f23f1 to
fb34220
Compare
|
/retest |
|
Now we have a fix for the problem with pkg_resources. Could you re-run the jobs? They should now pass without problems. |
fb34220 to
dc263f9
Compare
|
@winiciusallan done |
mandre
left a comment
There was a problem hiding this comment.
This is great, thanks @eshulman2. This has been on my TODO list for a while to add AGENTS.md and a good set of skills for the project, I'm glad you took care of it.
I just have a ask: can we try to respect the standards so that more agents can benefit from it?
I'd like the AGENTS.md file to be the source of truth. Likewise, I'd like skills to be located in a .agents/skills directory.
dc263f9 to
eca75bc
Compare
|
@mandre done on the generic agents locations |
| project, rs := dependency.FetchDependency( | ||
| ctx, actuator.k8sClient, obj.Namespace, filter.ProjectRef, "Project", | ||
| func(dep *orcv1alpha1.Project) bool { | ||
| return orcv1alpha1.IsAvailable(dep) && dep.Status.ID != nil |
eca75bc to
79d3dca
Compare
mandre
left a comment
There was a problem hiding this comment.
This is a good start. There's just one last thing I noticed (missing a v2 prefix in the import path) then we can merge and iterate on those files.
Add AGENTS.md with project-specific instructions for AI-assisted development of ORC controllers, including project structure, key patterns, and references to detailed documentation. CLAUDE.md is a symlink for Claude Code compatibility. Add skills for common development workflows in .agents/skills/: - /new-controller: Scaffold and implement new ORC controllers - /update-controller: Modify existing controllers (add fields, tags, etc.) - /add-dependency: Add resource dependencies to controllers - /proposal: Write enhancement proposals following the template - /testing: Run unit tests, linting, and E2E tests Skills follow the Agent Skills open standard (SKILL.md format). .claude/skills/ symlinks to .agents/skills/ for Claude Code support. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
79d3dca to
d8176a7
Compare
Add AGENTS.md with project-specific instructions for AI-assisted
development of ORC controllers, including project structure, key
patterns, and references to detailed documentation.
Add skills for common development workflows:
Open Standards
Following review feedback, this PR uses generic naming conventions:
This ensures compatibility with multiple AI coding assistants while
avoiding vendor lock-in.
Skills follow the Agent Skills open standard with SKILL.md format.
Tested locally and compared with already proposed controller (loadbalancer), did a great job mostly similar to what I did with some possible improvements!