write-antigravity

Authors and maintains Antigravity agent skills, rules, and configuration files following repository standards.

Updated May 16, 2026
One-click install
npx skills add https://github.com/alimtvnetwork/img-pdf-v2 --skill write-antigravity-alimtvnetwork
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: write-antigravity
Source: https://github.com/alimtvnetwork/img-pdf-v2/tree/main/.agents/skills/write-antigravity
Command: npx skills add https://github.com/alimtvnetwork/img-pdf-v2 --skill write-antigravity-alimtvnetwork

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Keeping AI agent customizations consistent is hard: skills, rules, and memory files drift out of sync with repository conventions, use wrong casing or absolute paths, and lose track of recent project history. This Skill enforces a single architecture for authoring and updating Antigravity agent configuration. ## Core Features & Use Cases - Standardized Skill Authoring: Creates skills at .agents/skills/<slug>/skill.md with mandatory YAML frontmatter containing name and description. - Rule and Memory Governance: Maintains coding rules in .agents/rules/<slug>.md and verifies the recent-tasks register in .ai-memory/plans/01-index.md. - Convention Enforcement: Requires strictly lowercase filenames, relative Git paths only, and a 30-commit history audit before any customization change. - Use Case: When adding a new agent capability, use this Skill to scaffold the skill file, validate frontmatter, audit the last 30 commits, and confirm the memory index is up to date. ## Quick Start Create a new Antigravity skill for my repo following the standard layout and verify it against the checklist.

Frequently Asked Questions about write-antigravity

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a new Antigravity agent skill?

Create a directory at .agents/skills/<slug>/ containing a lowercase skill.md file with YAML frontmatter defining name and description. The Markdown body after the frontmatter holds the operational instructions loaded when the skill activates.

What frontmatter is required in an Antigravity skill.md file?

The skill.md frontmatter must contain at least a name and a description field in YAML. These two fields are used for skill discovery, and the file itself must be named in strict lowercase.

Where do Antigravity rules and skills live in a repository?

Skills reside in .agents/skills/<slug>/skill.md while coding and architectural rules reside in .agents/rules/<slug>.md. Mirrored scripts belong in .agents/scripts/ matching the 03-ai-scripts/ directory.

Why must I audit git history before updating agent customizations?

The skill mandates running git log -n 30 --oneline before authoring changes so new customizations reflect recent project progress and lessons learned. It also requires checking the last 20 completed tasks in .ai-memory/plans/01-index.md for continuous memory.

Can Antigravity skill files use absolute paths or uppercase names?

No. The standard bans absolute paths and file:/// URIs entirely, requiring relative Git paths only. Filenames must be strictly lowercase, such as skill.md and agents.md.