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-factory

README

Antigravity Factory šŸš€

Build Complete Agent Infrastructure. A framework for managing AI agent blueprints: skills, workflows, team rules, and development standards.

Antigravity Go Agent Skills

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:

  1. Context-Optimized: Enforces concise SKILL.md (<500 lines) to respect context windows.
  2. IDE-Aware: Generates skills that understand absolute paths, task_boundary, and local environments.
  3. 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.py enforces <500 lines and quality standards
  • āœ… Auto-Checklists: Each skill has checklist.md for QA
  • šŸ› ļø Factory CLI: Go-based factory install and factory 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)

SkillPurpose
@skill-creatorCreates new skills from specs
@skill-factory-expertKnows the factory codebase, answers questions
@skill-interviewerCreative partner for skill ideation
@skill-updaterMass updates existing skills
@workflow-creatorDesigns 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

PresetSkillsDescription
all20Full blueprint
core5Pipeline essentials
backend9Go backend
frontend8Nuxt/Vue
fullstack12Backend + Frontend
tma8Telegram Mini Apps
cli8CLI/TUI apps
`mini

...

Read full README

Publisher

ydnikolaevydnikolaev

Statistics

Stars3
Forks1
Open Issues0
CreatedJan 21, 2026