Skip to content

tunneleven/antigravity-kit

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

23 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 Rules 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

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

Frontend

Skill Description
react-expert React 18/19, hooks, patterns, performance
nextjs-expert App Router, Server Components, SSR
css-expert CSS architecture, responsive, design systems
state-management-expert Redux, Zustand, React Query
ui-ux-pro-max 50 styles, 21 palettes, 50 font pairings

Backend

Skill Description
nodejs-expert Async patterns, modules, performance
nestjs-expert Module architecture, DI, testing
rest-api-expert RESTful design, HTTP semantics
auth-expert JWT, OAuth 2.0, RBAC, security

Database

Skill Description
prisma-expert Schema design, migrations, queries
database-expert General database optimization
postgres-expert PostgreSQL-specific patterns
mongodb-expert MongoDB document modeling

Testing

Skill Description
testing-expert General testing strategies
jest-expert Jest framework, mocking
vitest-expert Vitest, Vite integration
playwright-expert E2E testing, browser automation

DevOps & Tools

Skill Description
devops-expert CI/CD, infrastructure
docker-expert Containerization, Compose
github-actions-expert GitHub Actions workflows
git-expert Git workflows, conflicts

Code Quality

Skill Description
code-review Comprehensive code review
refactoring-expert Code smell detection, refactoring
typescript-expert TypeScript patterns, type system
accessibility-expert WCAG compliance, a11y

πŸ“ Rules

Rules are guidelines that direct agent behavior. There are 3 activation types:

  • always_on - Always applied
  • model_decision - Agent decides when to apply
  • glob - Applied based on file pattern

Rules List

# File Activation Description
1 01-identity.md Always On Role & working principles
2 02-task-classification.md Always On 4 task types classification
3 03-mode-consulting.md Model Decision Consulting process
4 04-mode-build.md Model Decision Build process
5 05-mode-debug.md Model Decision Debug process
6 06-mode-optimize.md Model Decision Optimization process
7 07-technical-standards.md Always On Coding standards
8 08-communication.md Always On Communication style
9 09-checklist.md Always On Pre-delivery checklist
10 10-special-situations.md Always On Special situation handling

πŸ”„ Workflows

Workflows are step-by-step procedures. Invoke with slash command /workflow-name.

Workflow Command Description
Request Handler /request Full-stack engineer task handling
UI/UX Pro Max /ui-ux-pro-max Design UI with 50 styles, 21 palettes

πŸ“¦ Installation

Using CLI (Recommended)

Install the .agent folder directly into your project using npx:

# Navigate to your project
cd your-project

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

CLI Commands

Command Description
npx @vudovn/antigravity-kit init Install .agent folder into current directory
npx @vudovn/antigravity-kit update Update .agent to the latest version
npx @vudovn/antigravity-kit status Check installation status

πŸš€ 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

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • TypeScript 63.7%
  • Python 14.5%
  • JavaScript 12.2%
  • CSS 9.6%