Content
# AI Agent Skills Toolkit
> 50 enterprise-grade skills for AI coding agents, curated resources for Claude Code, Cursor, Antigravity, Windsurf, and a knowledge base of prompts, frameworks, and strategies.
[]()
[]()
[]()
[]()
[]()
[](LICENSE)
---
## What's Inside
### 1. Antigravity Skills (`antigravity-skills/`)
50 production-grade skills organized across 10 enterprise domains. Each skill is a self-contained `SKILL.md` file with YAML frontmatter, structured prompts, and best practices -- ready to be loaded into [Antigravity](https://antigravity.ai/) or any AI coding agent.
### 2. Agent Skills Refined (`agent-skills-refined/`)
The same 50 skills in a production-ready distribution format with:
- **50 source skills** -- refined and documented versions in `skills/`
- **50 `.skill` packaged files** -- ready for direct Antigravity import in `packaged/`
- **7 comprehensive docs** -- architecture overview, usage guide, setup guide, full skill index, and more in `docs/`
### 3. Knowledge Base (`knowledge-base/`)
Curated development knowledge covering:
- Essential Claude Code plugins and community resources
- Business strategy frameworks (McKinsey / Goldman Sachs level)
- AI-first engineering workflows and prompt engineering
- Content creation automation playbooks
- 2026 startup ideas (YC-adjacent)
### 4. Curated Resources (`curated-resources/`)
Hand-picked open-source tools, plugins, skills, and extensions for:
- **Claude Code** -- plugins, skills, hooks, MCP servers, SDKs
- **Cursor** -- rules, extensions, workflows, `.cursorrules` templates
- **Antigravity** -- skills, setup guides, community resources
- **Windsurf** -- rules, extensions, `.windsurfrules` examples
- **General AI Tools** -- LLM frameworks, agent orchestration, RAG libraries, vector databases
---
## Skill Domains
```mermaid
mindmap
root((AI Agent Skills))
SDLC & Engineering
API Design
Code Review
Database Design
Feature Development
Git Workflow
Refactoring
TDD Workflow
Testing & QA
Unit Testing
Integration Testing
E2E Testing
Code Quality
Load Testing
DevOps & Infra
Docker
CI/CD
Kubernetes
Cloud Infra
Monitoring
Security
Security Audit
Authentication
Dependency Audit
Compliance
AI & SaaS
Agent Builder
ML Pipeline
SaaS Architecture
Payments
Multi-Tenant
Product & Strategy
PRD Generator
Product Strategy
Roadmap
User Research
UI/UX Design
Marketing
Brand
Content
Email
SEO
Social Media
Sales
CRM
Lead Gen
Pricing
Proposals
Outreach
Operations
Cost Optimization
Documentation
Incident Response
Internal Comms
Project Management
Scalability
Caching
DB Scaling
Load Balancing
Performance
```
| # | Domain | Skills | Focus Area |
|---|--------|--------|------------|
| 01 | **SDLC & Engineering** | 7 | API design, code review, database design, feature dev, git workflow, refactoring, TDD |
| 02 | **Testing & QA** | 5 | Unit testing, integration testing, E2E testing, code quality, load testing |
| 03 | **DevOps & Infrastructure** | 5 | Docker, CI/CD, Kubernetes, cloud infrastructure, monitoring |
| 04 | **Security** | 4 | OWASP security audit, authentication, dependency audit, compliance |
| 05 | **AI & SaaS** | 5 | AI agent builder, ML pipeline, SaaS architecture, payments, multi-tenant |
| 06 | **Product & Strategy** | 5 | PRD generator, product strategy, roadmap, user research, UI/UX design |
| 07 | **Marketing** | 5 | Brand strategy, content marketing, email campaigns, SEO, social media |
| 08 | **Sales** | 5 | CRM setup, lead generation, pricing strategy, proposals, outreach |
| 09 | **Operations** | 5 | Cost optimization, documentation, incident response, internal comms, project management |
| 10 | **Scalability** | 4 | Caching strategies, database scaling, load balancing, performance tuning |
---
## Quick Start
### For Antigravity
```bash
# Import a single packaged skill
antigravity skill import agent-skills-refined/packaged/code-review.skill
# Import all 50 skills at once
for f in agent-skills-refined/packaged/*.skill; do
antigravity skill import "$f"
done
```
### For Claude Code
```bash
# Copy any SKILL.md into your Claude Code skills directory
cp antigravity-skills/01-sdlc/code-review/SKILL.md ~/.claude/skills/code-review.md
# Or reference it directly in your CLAUDE.md
echo "See: antigravity-skills/01-sdlc/code-review/SKILL.md" >> CLAUDE.md
```
### For Cursor
```bash
# Use any SKILL.md as a .cursorrules file or paste into Cursor's system prompt
cp antigravity-skills/01-sdlc/code-review/SKILL.md .cursorrules
```
### For Any AI Agent
Each `SKILL.md` is a self-contained markdown prompt that works with any AI assistant. Copy the content into your agent's system prompt, skills configuration, or knowledge base.
---
## Repository Structure
```
ai-agent-skills-toolkit/
|
+-- antigravity-skills/ # 50 skills across 10 domain folders
| +-- 01-sdlc/ # 7 SDLC & engineering skills
| +-- 02-testing/ # 5 testing & QA skills
| +-- 03-devops/ # 5 DevOps & infrastructure skills
| +-- 04-security/ # 4 security skills
| +-- 05-ai-saas/ # 5 AI & SaaS skills
| +-- 06-product/ # 5 product & strategy skills
| +-- 07-marketing/ # 5 marketing skills
| +-- 08-sales/ # 5 sales skills
| +-- 09-operations/ # 5 operations skills
| +-- 10-scalability/ # 4 scalability skills
| +-- README.md # Domain overview and skill index
|
+-- agent-skills-refined/ # Production-ready distribution
| +-- skills/ # 50 refined skill sources
| +-- packaged/ # 50 .skill files for Antigravity import
| +-- docs/ # 7 documentation files
| +-- README.md # Distribution guide
|
+-- knowledge-base/ # Claude dev knowledge & frameworks
| +-- Claude_Development_Knowledge_Base.md
| +-- README.md # Knowledge base guide
|
+-- curated-resources/ # Open-source tools & resources
| +-- claude-code/ # Claude Code plugins, SDKs, MCP servers
| +-- cursor/ # Cursor rules, extensions, workflows
| +-- antigravity/ # Antigravity skills & setup
| +-- windsurf/ # Windsurf rules & extensions
| +-- general-ai-tools/ # LLM frameworks, RAG, vector DBs
| +-- README.md # Resource overview
|
+-- .gitignore
+-- LICENSE # MIT License
+-- README.md # This file
```
---
## Contributing
Contributions are welcome. To add a new skill:
1. Fork the repository
2. Create a new folder under the appropriate domain in `antigravity-skills/`
3. Add a `SKILL.md` following the existing format (YAML frontmatter + structured prompt)
4. Submit a pull request
---
## Author
**Aniruddha Kawarase** -- AI/ML Engineer & RAG Systems Architect
[](https://github.com/AniruddhaPKawarase)
[](https://www.linkedin.com/in/aniruddha-kawarase/)
---
## License
This project is licensed under the [MIT License](LICENSE).
Connection Info
You Might Also Like
everything-claude-code
Complete Claude Code configuration collection - agents, skills, hooks,...
markitdown
MarkItDown-MCP is a lightweight server for converting URIs to Markdown.
cc-switch
All-in-One Assistant for Claude Code, Codex & Gemini CLI across platforms.
servers
Model Context Protocol Servers
servers
Model Context Protocol Servers
Time
A Model Context Protocol server for time and timezone conversions.