You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add support for agent.md format (.agents/, .agent/) for agents and skills (#263)
This commit adds support for the https://agent.md/ specification format
alongside the traditional .cortex/ paths for discovering custom agents
and skills.
Changes:
- Custom agents are now searched in priority order:
1. .agents/ (project, agent.md format)
2. .agent/ (project, agent.md format)
3. .cortex/agents/ (project, traditional)
4. ~/.cortex/agents/ (global personal)
5. ~/.config/cortex/agents/ (global config)
- Skills are now searched in priority order:
1. ./SKILL.md (local)
2. .agents/<skill>/ (project, agent.md format)
3. .agent/<skill>/ (project, agent.md format)
4. .cortex/skills/ (project, traditional)
5. ~/.cortex/skills/ (personal)
- Updated help messages to reflect new directory options
- Updated tests to verify new path ordering
- First match wins for duplicates (project > personal)
Co-authored-by: Droid Agent <droid@factory.ai>
0 commit comments