@@ -57,6 +57,7 @@ AI Agents (like Claude Code, Cursor, or Gemini) are smart, but they lack **speci
Install once (clone or npx); then use our **Starter Packs ** in [docs/BUNDLES.md ](docs/BUNDLES.md ) to see which skills fit your role. You get the full repo; Starter Packs are curated lists, not a separate install.
1. **Install ** (pick one):
```bash
# Easiest: npx installer (clones to ~/.agent/skills by default)
npx antigravity-awesome-skills
@@ -64,6 +65,7 @@ Install once (clone or npx); then use our **Starter Packs** in [docs/BUNDLES.md]
# Or clone manually
git clone https://github.com/sickn33/antigravity-awesome-skills.git .agent/skills
` ``
2. **Pick your persona** (See [docs/BUNDLES.md](docs/BUNDLES.md)):
- **Web Dev?** use the ` Web Wizard` pack.
- **Hacker?** use the ` Security Engineer` pack.
@@ -85,7 +87,7 @@ 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/` |
@@ -113,7 +115,7 @@ This repository aggregates the best capabilities from across the open-source com
The repository is organized into specialized domains to transform your AI into an expert across the entire software development lifecycle:
| Category | Focus | Example skills |
| :--- | :--- | : --- |
| :------------------ | :------------------------------------------------- | :--------------------------------------------------------------------------- --- |
| Architecture (52) | System design, ADRs, C4, and scalable patterns | ` architecture`, ` c4-context`, ` senior-architect` |
| Business (35) | Growth, pricing, CRO, SEO, and go-to-market | ` copywriting`, ` pricing-strategy`, ` seo-audit` |
| Data & AI (81) | LLM apps, RAG, agents, observability, analytics | ` rag-engineer`, ` prompt-engineer`, ` langgraph` |
@@ -138,42 +140,6 @@ We have moved the full skill registry to a dedicated catalog to keep this README
To use these skills with **Claude Code**, **Gemini CLI**, **Codex CLI**, **Cursor**, **Antigravity**, **OpenCode**, or **AdaL**:
### OpenCode Install (official)
OpenCode’ s official docs recommend the install script:
` ``bash
curl -fsSL https://opencode.ai/install | bash
` ``
Other supported options (see docs for updates):
` ``bash
# npm
npm install -g opencode-ai
# Bun / pnpm / Yarn
bun install -g opencode-ai
pnpm install -g opencode-ai
yarn global add opencode-ai
# Homebrew (macOS/Linux)
brew install anomalyco/tap/opencode
# Arch (Paru)
paru -S opencode-bin
# Windows (Chocolatey / Scoop)
choco install opencode
scoop bucket add extras
scoop install extras/opencode
# Docker
docker run -it --rm ghcr.io/anomalyco/opencode
` ``
Full instructions: [OpenCode install docs](https://open-code.ai/en/docs).
### Option A: npx (recommended)
` ``bash