Skip to content

longdraco92/antigravity-kit

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

34 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸš€ Antigravity Kit

AI Agent Capability Expansion Toolkit - A comprehensive collection of skills, rules, and workflows to supercharge AI coding assistants.

Skills Agents Workflows


πŸ“‹ Table of Contents


🎯 Introduction

Antigravity Kit is a comprehensive collection of:

  • Skills - Domain-specific expertise (React, Node.js, Database, Testing, UI/UX...)
  • Rules - Guidelines and constraints for agent behavior
  • Workflows - Step-by-step procedures for common tasks

This toolkit combines the best of:

  • 🎨 UI UX Pro Max - Design Intelligence with 50 styles, 21 palettes, 50 font pairings
  • πŸ› οΈ ClaudeKit - Production-ready AI subagents, workflows, and integrations

Designed to integrate with AI agents supporting the Agent Skills standard.


🧠 Skills (41)

Skills are domain-specific expertise modules. The agent automatically identifies and uses the appropriate skill for each task.

Frontend & UI

Skill Description
react-patterns React hooks, state, performance
nextjs-best-practices App Router, Server Components
vue-expert Vue 3, Composition API, Pinia
frontend-design UI/UX patterns, design systems
tailwind-patterns Tailwind CSS utilities
ui-ux-pro-max 50 styles, 21 palettes, 50 fonts

Backend & API

Skill Description
api-patterns REST, GraphQL, HTTP semantics
nestjs-expert NestJS modules, DI, decorators
nodejs-best-practices Node.js async, modules
python-patterns Python standards, FastAPI

Database

Skill Description
database-design Schema design, optimization
prisma-expert Prisma ORM, migrations

Testing & Quality

Skill Description
testing-patterns Jest, Vitest, test strategies
webapp-testing E2E testing, Playwright
tdd-workflow Test-driven development
code-review-checklist Code review standards
lint-and-validate Linting, validation
typescript-expert TypeScript patterns

DevOps & Infrastructure

Skill Description
deployment-procedures CI/CD, deploy workflows
docker-expert Containerization, Compose
server-management Infrastructure management
bash-linux Linux commands, shell scripts
powershell-windows Windows PowerShell

Security

Skill Description
vulnerability-scanner Security auditing
red-team-tactics Offensive security

Architecture & Planning

Skill Description
app-builder Full-stack app scaffolding
architecture System design patterns
plan-writing Task planning, breakdown
brainstorming Socratic questioning

Specialized

Skill Description
mobile-design Mobile UI/UX patterns
game-development Game logic, mechanics
performance-profiling Web Vitals, optimization
seo-fundamentals SEO, visibility
i18n-localization Internationalization
geo-fundamentals GenAI optimization
mcp-builder Model Context Protocol
parallel-agents Multi-agent patterns
behavioral-modes Agent personas
systematic-debugging Troubleshooting
documentation-templates Doc formats
clean-code Coding standards

πŸ€– Agents (16)

Specialized AI agents for different domains:

Agent Focus
orchestrator Multi-agent coordination
project-planner Discovery, task planning
frontend-specialist Web UI/UX
backend-specialist API, business logic
database-architect Schema, SQL
mobile-developer iOS, Android
game-developer Game logic
devops-engineer CI/CD, Docker
security-auditor Security compliance
penetration-tester Offensive security
test-engineer Testing strategies
debugger Root cause analysis
performance-optimizer Speed, Vitals
seo-specialist Ranking, visibility
documentation-writer Manuals, docs
explorer-agent Codebase analysis

πŸ”„ Workflows (11)

Workflows are step-by-step procedures. Invoke with slash command.

Command Description
/brainstorm Socratic discovery
/create Create new features
/debug Debug issues
/deploy Deploy application
/enhance Improve existing code
/orchestrate Multi-agent coordination
/plan Task breakdown
/preview Preview changes
/status Check project status
/test Run tests
/ui-ux-pro-max Design with 50 styles

πŸ“¦ Installation

Install Global (Recommended)

# Install globally
npm install -g @vudovn/antigravity-kit

# Then use commands anywhere
# Navigate to your project
cd your-project

# Install .agent folder
ag-kit init

# Update to the latest version
ag-kit update

# Check installation status
ag-kit status

Using npx (No Install)

# Navigate to your project
cd your-project

# Install .agent folder
npx @vudovn/antigravity-kit init

CLI Commands

Command Description
ag-kit init Install .agent folder into current directory
ag-kit update Update .agent to the latest version
ag-kit status Check installation status

Command Options

# init options
ag-kit init [options]
  -f, --force           # Overwrite if folder already exists
  -p, --path <dir>      # Path to the project directory
  -b, --branch <name>   # Select repository branch

# update options
ag-kit update [options]
  -f, --force           # Skip confirmation prompt
  -p, --path <dir>      # Path to the project directory
  -b, --branch <name>   # Select repository branch

# status options
ag-kit status [options]
  -p, --path <dir>      # Path to the project directory

πŸš€ Usage

Skills

Skills are automatically applied. The agent reads the skill when it identifies a related task:

User: "Fix bug in this React component"
Agent: (automatically uses react-expert skill)

Rules

Rules apply based on activation type:

  • always_on: Always active
  • model_decision: Agent decides when to apply
  • glob: Applied when working with files matching pattern

Workflows

Invoke workflows with slash commands:

User: Prompt
Agent: (follows the workflow)

πŸ™ Credits

This project is built upon and inspired by:

Project Description Link
UI UX Pro Max Design Intelligence for Claude Code - 50 styles, 21 color palettes, 50 font pairings, 20 chart types ui-ux-pro-max-skill.nextlevelbuilder.io
ClaudeKit Production-ready AI subagents, workflows, and integrations for software development claudekit.cc

Special thanks to the creators of these amazing tools for making AI-assisted development more powerful and accessible.


🀝 Contributing

Adding a New Skill

  1. Create folder: .agent/skills/your-skill/
  2. Create SKILL.md with format:
---
name: your-skill
description: Skill description. Use when X or Y.
---

# Your Skill

Instructions for the agent...

Adding a New Rule

  1. Create file: .agent/rules/your-rule.md
  2. Add frontmatter:
---
activation: always_on | model_decision | glob
glob: "**/*.tsx"  # if using glob
description: When to apply  # if using model_decision
---

# Your Rule

Content...

Adding a New Workflow

  1. Create file: .agent/workflows/your-workflow.md
  2. Format:
---
description: Workflow description
---

# Your Workflow

## Step 1: ...
## Step 2: ...

πŸ“„ License

MIT License - See LICENSE for details.


Made with ❀️ by VudoVN

Buy Me a Coffee

About

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 68.6%
  • TypeScript 24.1%
  • JavaScript 3.7%
  • CSS 2.2%
  • Vue 1.4%