From 0ca49019967ceabc87e71b32f972da0d8b6cb502 Mon Sep 17 00:00:00 2001 From: ssumanbiswas Date: Sun, 22 Feb 2026 22:18:16 -0500 Subject: [PATCH] feat: Add Kiro CLI and Kiro IDE support - Add Kiro to compatibility table with invocation examples - Add Kiro installation instructions (npx and git clone) - Add Kiro IDE GUI import method - Update badges and title to include Kiro - Supports Agent Skills standard (same SKILL.md format) --- README.md | 34 +++++++++++++++++++++++++++++++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 99fa44c9..89d0983a 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,12 @@ -# ๐ŸŒŒ Antigravity Awesome Skills: 883+ Agentic Skills for Claude Code, Gemini CLI, Cursor, Copilot & More +# ๐ŸŒŒ Antigravity Awesome Skills: 883+ Agentic Skills for Claude Code, Gemini CLI, Kiro, Cursor, Copilot & More -> **The Ultimate Collection of 883+ Universal Agentic Skills for AI Coding Assistants โ€” Claude Code, Gemini CLI, Codex CLI, Antigravity IDE, GitHub Copilot, Cursor, OpenCode, AdaL** +> **The Ultimate Collection of 883+ Universal Agentic Skills for AI Coding Assistants โ€” Claude Code, Gemini CLI, Codex CLI, Kiro CLI, Kiro IDE, Antigravity IDE, GitHub Copilot, Cursor, OpenCode, AdaL** [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Claude Code](https://img.shields.io/badge/Claude%20Code-Anthropic-purple)](https://claude.ai) [![Gemini CLI](https://img.shields.io/badge/Gemini%20CLI-Google-blue)](https://github.com/google-gemini/gemini-cli) [![Codex CLI](https://img.shields.io/badge/Codex%20CLI-OpenAI-green)](https://github.com/openai/codex) +[![Kiro](https://img.shields.io/badge/Kiro-AWS-orange)](https://kiro.dev) [![Cursor](https://img.shields.io/badge/Cursor-AI%20IDE-orange)](https://cursor.sh) [![Copilot](https://img.shields.io/badge/GitHub%20Copilot-VSCode-lightblue)](https://github.com/features/copilot) [![OpenCode](https://img.shields.io/badge/OpenCode-CLI-gray)](https://github.com/opencode-ai/opencode) @@ -21,6 +22,8 @@ If this project helps you, you can [support it here](https://buymeacoffee.com/si - ๐ŸŸฃ **Claude Code** (Anthropic CLI) - ๐Ÿ”ต **Gemini CLI** (Google DeepMind) - ๐ŸŸข **Codex CLI** (OpenAI) +- ๐ŸŸ  **Kiro CLI** (AWS) +- ๐ŸŸ  **Kiro IDE** (AWS) - ๐Ÿ”ด **Antigravity IDE** (Google DeepMind) - ๐Ÿฉต **GitHub Copilot** (VSCode Extension) - ๐ŸŸ  **Cursor** (AI-native IDE) @@ -110,6 +113,8 @@ These skills follow the universal **SKILL.md** format and work with any AI codin | **Claude Code** | CLI | `>> /skill-name help me...` | `.claude/skills/` | | **Gemini CLI** | CLI | `(User Prompt) Use skill-name...` | `.gemini/skills/` | | **Codex CLI** | CLI | `(User Prompt) Use skill-name...` | `.codex/skills/` | +| **Kiro CLI** | CLI | `(Auto) Skills load on-demand` | Global: `~/.kiro/skills/` ยท Workspace: `.kiro/skills/` | +| **Kiro IDE** | IDE | `/skill-name or (Auto)` | Global: `~/.kiro/skills/` ยท Workspace: `.kiro/skills/` | | **Antigravity** | IDE | `(Agent Mode) Use skill...` | Global: `~/.gemini/antigravity/skills/` ยท Workspace: `.agent/skills/` | | **Cursor** | IDE | `@skill-name (in Chat)` | `.cursor/skills/` | | **Copilot** | Ext | `(Paste content manually)` | N/A | @@ -128,7 +133,7 @@ These skills follow the universal **SKILL.md** format and work with any AI codin ## Installation -To use these skills with **Claude Code**, **Gemini CLI**, **Codex CLI**, **Cursor**, **Antigravity**, **OpenCode**, or **AdaL**: +To use these skills with **Claude Code**, **Gemini CLI**, **Codex CLI**, **Kiro CLI**, **Kiro IDE**, **Cursor**, **Antigravity**, **OpenCode**, or **AdaL**: ### Option A: npx (recommended) @@ -139,6 +144,12 @@ npx antigravity-awesome-skills # Antigravity (explicit; same as default) npx antigravity-awesome-skills --antigravity +# Kiro CLI/IDE (global) +npx antigravity-awesome-skills --path ~/.kiro/skills + +# Kiro CLI/IDE (workspace) +npx antigravity-awesome-skills --path .kiro/skills + # Cursor npx antigravity-awesome-skills --cursor @@ -174,6 +185,12 @@ git clone https://github.com/sickn33/antigravity-awesome-skills.git ~/.gemini/an # Workspace-specific (e.g. .agent/skills in your project) git clone https://github.com/sickn33/antigravity-awesome-skills.git .agent/skills +# Kiro CLI/IDE global +git clone https://github.com/sickn33/antigravity-awesome-skills.git ~/.kiro/skills + +# Kiro CLI/IDE workspace +git clone https://github.com/sickn33/antigravity-awesome-skills.git .kiro/skills + # Claude Code specific git clone https://github.com/sickn33/antigravity-awesome-skills.git .claude/skills @@ -190,6 +207,17 @@ git clone https://github.com/sickn33/antigravity-awesome-skills.git .cursor/skil git clone https://github.com/sickn33/antigravity-awesome-skills.git .agents/skills ``` +### Option C: Kiro IDE Import (GUI) + +For Kiro IDE users, you can import individual skills directly: + +1. Open **Agent Steering & Skills** panel in Kiro IDE +2. Click **+** โ†’ **Import a skill** โ†’ **GitHub** +3. Paste skill URL: `https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/[skill-name]` +4. Example: `https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/aws-cost-optimizer` + +> **Note**: This imports one skill at a time. For bulk installation, use Option A or B above. + --- ## Troubleshooting