Adding .agent support in addition to .claude

This commit is contained in:
2026-04-01 11:29:13 -04:00
parent 1ea0d232a4
commit ae35600822
32 changed files with 3438 additions and 315 deletions

17
mix.exs
View File

@@ -145,5 +145,22 @@ defmodule Mixer.MixProject do
]
]
]
[
file: "AGENTS.md",
usage_rules: ["usage_rules:all"],
skills: [
location: ".agents/skills",
build: [
"ash-framework": [
description: "Use this skill working with Ash Framework or any of its extensions. Always consult this when making any domain changes, features or fixes.",
usage_rules: [:ash, ~r/^ash_/]
],
"phoenix-framework": [
description: "Use this skill working with Phoenix Framework. Consult this when working with the web layer, controllers, views, liveviews etc.",
usage_rules: [:phoenix, ~r/^phoenix_/]
]
]
]
]
end
end