๐ŸŽฏ

skill-interviewer

๐ŸŽฏSkill

from ydnikolaev/antigravity-factory

VibeIndex|
What it does

skill-interviewer skill from ydnikolaev/antigravity-factory

๐Ÿ“ฆ

Part of

ydnikolaev/antigravity-factory(6 items)

skill-interviewer

Installation

GoRun with Go
go install github.com/ydnikolaev/antigravity-factory@latest
git cloneClone repository
git clone https://github.com/ydnikolaev/antigravity-factory.git
MakeRun with Make
make install
MakeRun with Make
make lint
๐Ÿ“– Extracted from docs: ydnikolaev/antigravity-factory
1Installs
5
-
Last UpdatedJan 28, 2026

Skill Details

SKILL.md

Overview

# Antigravity Factory ๐Ÿš€

> Build Complete Agent Infrastructure.

> A framework for managing AI agent blueprints: skills, workflows, team rules, and development standards.

[![Antigravity](https://img.shields.io/badge/Antigravity-Native-purple)](https://antigravity.google)

[![Go](https://img.shields.io/badge/Go-1.25-00ADD8)](https://go.dev)

[![Agent Skills](https://img.shields.io/badge/Agent-Skills-blue)](https://github.com/anthropics/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)

| 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

```