-
Notifications
You must be signed in to change notification settings - Fork 142
Open
Labels
Description
Please confirm that you have searched existing issues in the repo
Yes, I have searched the existing issues
Any related issues?
No response
What is the area that this feature belongs to?
No response
Is your feature request related to a problem? Please describe.
Current, various AI agents (, like OpenCode, GitHub Copilot etc) utilize different paths to locate agent skills, e.g.
GitHub CoPilot -> .github/skills/<skill-name>
OpenCode -> .opencode/skills/<skill-name>
etc
This lack of standardization could lead to
- Redundancy of duplicate skill definitions across different directories.
- Compatibility Issues caused by inconsistent lookup logic by different providers.
Describe the solution you'd like
-
Centralize all agent skills in a common directory,
.github/skills/<your-skill-name>: Doing so would provide better standardization across different AI providers. -
Add an
AGENT.mdfile in the root directory: This file will act as the entry point for any AI agent interacting with the repository.- Its role would be to explicitly map the repository's purpose and instruct agents to look in
.github/skills/directory for the skills available for use. - For agents with different preferred paths (e.g. OpenCode), the
AGENT.mdfile will serve as the redirect mechanism to point them towards the centralized.githubpath.
- Its role would be to explicitly map the repository's purpose and instruct agents to look in
Describe alternatives you've considered
No response
Additional context
No response
kaixin-hc