From dbcd108b46c00b52ced345e1aee9ab4c1edc291e Mon Sep 17 00:00:00 2001 From: Suman Biswas Date: Mon, 23 Feb 2026 01:29:06 -0500 Subject: [PATCH] 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) --- README.md | 41 +++++++++++++++++++++++++++++++++-------- 1 file changed, 33 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 7cb4b51e..1dca7bdc 100644 --- a/README.md +++ b/README.md @@ -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