feat: add Antigravity .agents/rules/ponytail.md rule copy (#119)

Antigravity IDE loads always-on rules from .agents/rules/. The README
already tells Antigravity users to drop the ruleset there, but the file
was missing. Add it as a verbatim copy of the canonical AGENTS.md body
(no frontmatter, like the .windsurf/.clinerules copies) and register it
in check-rule-copies.js so it is validated against AGENTS.md and cannot
drift. Closes #116.
This commit is contained in:
Lakshya77089
2026-06-19 00:24:49 +02:00
committed by GitHub
parent a28e5ec123
commit 83f67a261a
2 changed files with 25 additions and 0 deletions
+1
View File
@@ -20,6 +20,7 @@ const copies = [
['.cursor/rules/ponytail.mdc', stripFrontmatter],
['.windsurf/rules/ponytail.md', text => text.trim()],
['.clinerules/ponytail.md', text => text.trim()],
['.agents/rules/ponytail.md', text => text.trim()],
['.github/copilot-instructions.md', text => text.trim()],
['.kiro/steering/ponytail.md', stripFrontmatter],
];