Fixes#182
Previously, passing multiple tool flags like `--claude --codex` would
only install for the first matching tool. Now the installer correctly
identifies all specified targets and installs to each one.
Changes:
- Replaced defaultDir() with getTargets() returning array of targets
- Added installForTarget() function for per-target installation
- Modified main() to iterate over all targets
- Updated help text with multi-tool example
Example:
npx antigravity-awesome-skills --claude --codex
- Add --kiro flag to installer for ~/.kiro/skills installation
- Update README with Kiro in compatibility table and installation examples
- Add Kiro CLI badge and documentation
- Create comprehensive KIRO_INTEGRATION.md guide with:
- Installation instructions
- Usage examples and workflows
- AWS-specific skill recommendations
- Troubleshooting and best practices
- MCP integration details
Kiro is AWS's agentic AI IDE with autonomous coding capabilities,
MCP support, and native AWS service integration. This contribution
enables 883+ skills to enhance Kiro's capabilities across serverless,
infrastructure, security, and full-stack development.
- Installer now clones to temp then copies only repo skills/ contents
into target, so e.g. ~/.claude/skills/concise-planning/SKILL.md exists
instead of ~/.claude/skills/skills/concise-planning/SKILL.md.
- Migrates existing full-repo installs to skills-only layout.
- Same behavior for --claude, --cursor, --gemini, --codex, --path.
Co-authored-by: Cursor <cursoragent@cursor.com>
- Add package.json with bin for antigravity-awesome-skills
- Add bin/install.js: clone to ~/.agent/skills (default), --cursor/--claude/--gemini/--path
- Git pull if dir exists; core.symlinks=true on Windows
- Update README and GETTING_STARTED with npx instructions