ydnikolaev/antigravity-factory
Antigravity Skill Creator: A meta-skill for designing high-quality autonomous agent skills.
3 stars1 forksUpdated Jan 25, 2026
npx skills add ydnikolaev/antigravity-factoryREADME
Antigravity Factory š
Build Complete Agent Infrastructure. A framework for managing AI agent blueprints: skills, workflows, team rules, and development standards.
What is this?
Antigravity Factory is a blueprint management system for AI agents. It provides:
- 20 Expert Skills ā from backend-go-expert to mcp-expert
- Shared Standards ā TDD, Git, Tech Debt protocols
- Team Structure ā TEAM.md roster and PIPELINE.md workflow
- Factory Skills ā meta-skills for creating and maintaining the ecosystem
Unlike simple scaffolding scripts, this tool enforces a Design-First Philosophy:
- Context-Optimized: Enforces concise
SKILL.md(<500 lines) to respect context windows. - IDE-Aware: Generates skills that understand absolute paths,
task_boundary, and local environments. - Self-Verifying: Includes built-in QA checklists for agents to validate their own work.
⨠Features
- š§ 20 Expert Skills: Backend, Frontend, DevOps, QA, MCP, CLI, TUI, and more
- š”ļø Strict Validation:
validate_skill.pyenforces <500 lines and quality standards - ā
Auto-Checklists: Each skill has
checklist.mdfor QA - š ļø Factory CLI: Go-based
factory installandfactory list - š Standards Library: TDD, Git, Tech Debt, Traceability protocols
- š¦ Blueprint Pattern: Copy entire
.agent/structure to any project - šļø Architecture Tests: Enforces Go Modern standards via AST analysis
Factory Skills (Meta-Tooling)
| Skill | Purpose |
|---|---|
@skill-creator | Creates new skills from specs |
@skill-factory-expert | Knows the factory codebase, answers questions |
@skill-interviewer | Creative partner for skill ideation |
@skill-updater | Mass updates existing skills |
@workflow-creator | Designs automation workflows |
š Repository Structure
antigravity-factory/
āāā .agent/ # š Factory-internal (NOT copied to projects)
ā āāā skills/
ā ā āāā skill-creator/ # Meta-skill that creates other skills
ā ā āāā skill-factory-expert/# Project expert
ā ā āāā skill-interviewer/ # Creative partner for skill ideation
ā ā āāā skill-updater/ # Mass updates to existing skills
ā ā āāā workflow-creator/ # Designs automation workflows
ā āāā workflows/
ā āāā commit.md # Pre-commit checks
ā āāā push.md # Merge + changelog + push
ā āāā self-evolve.md # Factory synchronization
ā
āāā blueprint/ # š¦ Copied to .agent/ on install
ā āāā skills/ # 20 expert skills
ā āāā workflows/ # doc-cleanup, refactor
ā āāā rules/ # TEAM.md, PIPELINE.md
ā āāā standards/ # TDD, Git, Tech Debt protocols
ā āāā _meta/ # Presets config (presets.yaml)
ā āāā private/ # Private skills (gitignored)
ā
āāā website/ # š VitePress skill catalog
ā āāā .vitepress/config.mts
ā āāā index.md
ā āāā skills/ # Generated skill pages
ā
āāā cmd/factory/ # š§ CLI source code
ā āāā root.go, install.go, list.go
ā āāā doctor.go # factory doctor
ā āāā version.go
ā
āāā internal/
ā āāā installer/ # Blueprint copy logic
ā āāā doctor/ # Link checker, diagnostics
ā āāā presets/ # Preset loader
ā āāā config/ # Config handler
ā
āāā scripts/
ā āāā generate_catalog.py # Generate website skill pages
ā
āāā .github/workflows/
ā āāā deploy-docs.yml # Auto-deploy VitePress to GitHub Pages
ā
āāā Makefile
āāā README.md
š§ Factory CLI
The factory CLI copies the blueprint to any project's .agent/ folder.
Installation
Quick install (requires Go 1.22+):
go install github.com/ydnikolaev/antigravity-factory@latest
Or build from source:
git clone https://github.com/ydnikolaev/antigravity-factory.git
cd antigravity-factory
make install
Commands
factory install # Interactive preset selection (TUI)
factory install --preset=backend # Install specific preset
factory doctor # Check for broken links and issues
factory list # Show installed inventory
factory version # Show version
Presets
| Preset | Skills | Description |
|---|---|---|
all | 20 | Full blueprint |
core | 5 | Pipeline essentials |
backend | 9 | Go backend |
frontend | 8 | Nuxt/Vue |
fullstack | 12 | Backend + Frontend |
tma | 8 | Telegram Mini Apps |
cli | 8 | CLI/TUI apps |
| `mini |
...
Publisher
Statistics
Stars3
Forks1
Open Issues0
CreatedJan 21, 2026