AI Agent Capability Expansion Toolkit - A comprehensive collection of skills, rules, and workflows to supercharge AI coding assistants.
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 are domain-specific expertise modules. The agent automatically identifies and uses the appropriate skill for each task.
| 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 |
| 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 |
| Skill | Description |
|---|---|
prisma-expert |
Schema design, migrations, queries |
database-expert |
General database optimization |
postgres-expert |
PostgreSQL-specific patterns |
mongodb-expert |
MongoDB document modeling |
| Skill | Description |
|---|---|
testing-expert |
General testing strategies |
jest-expert |
Jest framework, mocking |
vitest-expert |
Vitest, Vite integration |
playwright-expert |
E2E testing, browser automation |
| Skill | Description |
|---|---|
devops-expert |
CI/CD, infrastructure |
docker-expert |
Containerization, Compose |
github-actions-expert |
GitHub Actions workflows |
git-expert |
Git workflows, conflicts |
| 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 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
| # | 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 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 |
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| 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 |
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 apply based on activation type:
- always_on: Always active
- model_decision: Agent decides when to apply
- glob: Applied when working with files matching pattern
Invoke workflows with slash commands:
User: Prompt
Agent: (follows the workflow)
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.
- Create folder:
.agent/skills/your-skill/ - Create
SKILL.mdwith format:
---
name: your-skill
description: Skill description. Use when X or Y.
---
# Your Skill
Instructions for the agent...- Create file:
.agent/rules/your-rule.md - Add frontmatter:
---
activation: always_on | model_decision | glob
glob: "**/*.tsx" # if using glob
description: When to apply # if using model_decision
---
# Your Rule
Content...- Create file:
.agent/workflows/your-workflow.md - Format:
---
description: Workflow description
---
# Your Workflow
## Step 1: ...
## Step 2: ...MIT License - See LICENSE for details.
Made with β€οΈ by VudoVN