feat: Add Kiro CLI and Kiro IDE support (#122)

- 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)
This commit is contained in:
Suman Biswas
2026-02-23 01:29:06 -05:00
committed by GitHub
parent 5c85082b3f
commit dbcd108b46

View File

@@ -6,7 +6,7 @@
[![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 CLI](https://img.shields.io/badge/Kiro%20CLI-AWS-orange)](https://kiro.dev)
[![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)
@@ -23,6 +23,7 @@ If this project helps you, you can [support it here](https://buymeacoffee.com/si
- 🔵 **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)
@@ -107,12 +108,13 @@ Once installed, just ask your agent naturally:
These skills follow the universal **SKILL.md** format and work with any AI coding assistant that supports agentic skills.
| Tool | Type | Invocation Example | Path |
| :-------------- | :--- | :-------------------------------- | :-------------------------------------------------------------------- |
| **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 | `(User Prompt) Use skill-name...` | `.kiro/skills/` |
| Tool | Type | Invocation Example | Path |
| :-------------- | :--- | :-------------------------------- | :---------------- |
| **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 |
@@ -131,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)
@@ -142,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
@@ -180,6 +188,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
@@ -199,6 +213,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