{
  "markdown": "# Antigravity Skill Vault\n\nA curated collection of **Agent Skills** for **Google Antigravity**, ported from the [Claude Code Agents](https://github.com/wshobson/agents) repository.\n\nThis vault transforms the extensive Claude Code ecosystem into **Antigravity Skills**, providing your agent with repeatable workflows, domain expertise, and specialized tools.\n\n---\n\n## 🚀 Overview\n\nThis repository contains **300+ specialized skills** across software development, operations, security, and business domains. Each skill is a directory-based package that teaches Antigravity's agent how to perform specific tasks.\n\n### What's Included?\n\nThe skills are derived from three types of Claude Code components, all unified into the Antigravity Skill format:\n\n1.  **Domain Skills** (e.g., `k8s-manifest-generator`, `async-python-patterns`): Specialized knowledge packages.\n2.  **Specialist Agents** (e.g., `backend-architect`, `security-auditor`): Persona-based instruction sets for complex reasoning.\n3.  **Commands & Workflows** (e.g., `full-stack-orchestration-full-stack-feature`, `conductor-implement`): Structured, multi-step procedures.\n\n---\n\n## 📂 Categories\n\nSkills are flattened in the `skills/` directory, but cover these broad categories:\n\n### 💻 Development & Languages\n- **Python**: `python-pro`, `fastapi-pro`, `async-python-patterns`, `uv-package-manager`\n- **JavaScript/TypeScript**: `typescript-pro`, `react-modernization`, `nextjs-app-router-patterns`\n- **Systems**: `rust-pro`, `golang-pro`, `memory-safety-patterns`\n- **Mobile**: `frontend-mobile-development-component-scaffold`, `react-native-architecture`\n\n### ☁️ Infrastructure & Operations\n- **Kubernetes**: `kubernetes-architect`, `helm-chart-scaffolding`, `gitops-workflow`\n- **Cloud**: `cloud-architect`, `terraform-module-library`, `cost-optimization`\n- **CI/CD**: `cicd-automation-workflow-automate`, `github-actions-templates`, `gitlab-ci-patterns`\n\n### 🔒 Security & Quality\n- **Security**: `security-auditor`, `sast-configuration`, `security-scanning-security-hardening`\n- **Code Quality**: `code-review-ai-ai-review`, `code-refactoring-refactor-clean`, `codebase-cleanup-tech-debt`\n- **Testing**: `unit-testing-test-generate`, `tdd-workflows-tdd-cycle`, `e2e-testing-patterns`\n\n### 🔄 Workflows & Architecture\n- **Conductor**: `conductor-implement`, `context-driven-development` (Context-Driven Development)\n- **Architecture**: `c4-architecture-c4-architecture`, `microservices-patterns`, `api-design-principles`\n- **Orchestration**: `full-stack-orchestration-full-stack-feature`, `incident-response-incident-response`\n\n### 📊 Data & AI\n- **Data Engineering**: `data-engineer`, `spark-optimization`, `dbt-transformation-patterns`\n- **AI/ML**: `ml-pipeline-workflow`, `prompt-engineering-patterns`, `rag-implementation`\n\n---\n\n## 🎯 Install Strategically (Token Efficient)\n\nAntigravity loads metadata (name + description) from every installed skill at session start. More skills means more token usage and a higher chance of irrelevant auto-activation. Prefer targeted installs via search, tags, or bundles. `install --all` is advanced and not recommended for most projects.\n\n## 🧭 Catalog & Discovery\n\nThis repo ships a generated catalog for discovery:\n\n- `CATALOG.md` (human-readable index)\n- `catalog.json` (machine-readable index used by the CLI)\n- `bundles.json` (curated bundles)\n- `aliases.json` (short names that map to long skill IDs)\n\nRegenerate after adding/editing skills:\n\n```bash\nnpm run build:catalog\n```\n\n## 🛠️ How to Use\n\nWhen a conversation starts, Antigravity loads the **metadata** (name & description) from all skills.\nANTIGRAVITY automatically activates a skill when your request matches its description.\n\n**Examples:**\n\n*   *\"Help me design a REST API for a user service\"* → Activates `api-design-principles` and `backend-architect`.\n*   *\"Scaffold a new FastAPI project\"* → Activates `python-development-python-scaffold`.\n*   *\"Review this PR for security issues\"* → Activates `security-scanning-security-hardening` or `security-auditor`.\n*   *\"Start a new feature track for login\"* → Activates `conductor-new-track`.\n\n---\n\nYou can install skills in **two scopes**:\n\n-   **Workspace scope** (project-specific): `<workspace-root>/.agent/skills/`\n-   **Global scope** (available in all projects): `~/.gemini/antigravity/skills/`\n\n### Using `agy plugin install` (Native AGY CLI) — experimental\n\n> **Experimental.** The plugin manifest below has not yet been verified end-to-end against a\n> released `agy` CLI. If `agy plugin install` does not pick it up, use the `npx` or manual\n> instructions below, which are the supported paths. Reports are welcome in the issue tracker.\n\nYou can install this repository directly as a native Antigravity plugin:\n\n```bash\nagy plugin install https://github.com/rmyndharis/antigravity-skills\n```\n\nThis registers the `antigravity-skills-manager` plugin and enables `/skills-manager` (or `/skills`) slash commands inside Antigravity:\n\n- **List available catalog skills:**\n  ```bash\n  /skills-manager list\n  ```\n- **Search skills by keyword:**\n  ```bash\n  /skills-manager search <term>\n  # Example:\n  /skills-manager search flutter\n  ```\n- **Install a skill to `~/.gemini/antigravity/skills/`:**\n  ```bash\n  /skills-manager install <skill_id>\n  # Example:\n  /skills-manager install flutter-expert\n  ```\n- **List locally installed skills:**\n  ```bash\n  /skills-manager installed\n  ```\n\n*(Note: `/skills` is also available as a short command alias.)*\n\n### Using `npx` (Recommended)\n\nYou can easily install skills directly from the repository without cloning it manually.\n\n**1. Search skills (recommended first):**\n\n```bash\nnpx @rmyndharis/antigravity-skills search <query>\n# Example:\nnpx @rmyndharis/antigravity-skills search kubernetes\n```\n\n**2. List available skills:**\n\n```bash\nnpx @rmyndharis/antigravity-skills list\n```\n\n**3. Install a specific skill to your current project:**\n\n```bash\nnpx @rmyndharis/antigravity-skills install <skill-name>\n# Example:\nnpx @rmyndharis/antigravity-skills install bash-pro\n```\n\n**4. Install by tag or bundle (targeted sets):**\n\n```bash\n# By tag\nnpx @rmyndharis/antigravity-skills install --tag kubernetes\n\n# By bundle\nnpx @rmyndharis/antigravity-skills install --bundle core-dev\n```\n\nAvailable bundles: `core-dev`, `security-core`, `k8s-core`, `data-core`, `ops-core`.\n\n**5. Install a skill globally:**\n\n```bash\nnpx @rmyndharis/antigravity-skills install <skill-name> --global\n# Example:\nnpx @rmyndharis/antigravity-skills install bash-pro --global\n```\n\n**6. Check installed skills:**\n\n```bash\n# List local specific skills\nnpx @rmyndharis/antigravity-skills installed\n\n# List globally installed skills\nnpx @rmyndharis/antigravity-skills installed --global\n```\n\n**7. Update installed skills:**\n\n```bash\n# Update a specific skill\nnpx @rmyndharis/antigravity-skills update <skill-name>\n\n# Update ALL installed skills\nnpx @rmyndharis/antigravity-skills update\n\n# Update global skills\nnpx @rmyndharis/antigravity-skills update --global\n```\n\n**8. Doctor / stats:**\n\n```bash\nnpx @rmyndharis/antigravity-skills doctor\nnpx @rmyndharis/antigravity-skills stats\n```\n\n**9. Install ALL skills (advanced, not recommended):**\n\n```bash\n# To your current workspace\nnpx @rmyndharis/antigravity-skills install --all\n\n# Globally\nnpx @rmyndharis/antigravity-skills install --all --global\n```\n\n> **Note:** Installing all skills increases token usage and can trigger unrelated skills. Prefer targeted installs.\n\nAliases are supported via `aliases.json` (for long skill names).\n\nExample:\n\n```bash\nnpx @rmyndharis/antigravity-skills install full-stack-feature\n```\n\n### Manual Installation\n\nIf you prefer to clone the repository:\n\n**Option A — Install to a workspace**\n\n```bash\nmkdir -p .agent/skills\ncp -R /path/to/antigravity-skills/skills/<skill-name> .agent/skills/\n```\n\n**Option B — Install globally**\n\n```bash\nmkdir -p ~/.gemini/antigravity/skills\ncp -R /path/to/antigravity-skills/skills/<skill-name> ~/.gemini/antigravity/skills/\n```\n\n> **Note:** After copying skills, restart your agent session so Antigravity re-detects them.\n\n---\n\n## ➕ Adding New Skills\n\n1.  Create a folder: `skills/<skill-name>/`\n2.  Add `SKILL.md` (required)\n3.  (Optional) Add helpers: `scripts/`, `references/`, `assets/`\n\n### Authoring Guidelines\n\n- Keep `SKILL.md` concise; move long examples to `resources/` or `examples/`.\n- Use narrow descriptions (for example: \"Use when you need to ...\") and include \"Do not use\" to reduce over-activation.\n- Add a \"Safety\" section for skills that propose terminal or infrastructure changes.\n- Regenerate catalog files with `npm run build:catalog`, then run the local gate: `npm test`, `STRICT=1 npm run validate:skills`, and `npm run check:catalog` (CI runs all three).\n- CI runs strict validation using `validation-baseline.json` for existing gaps; new skills must include the required sections, and any backticked `resources/`/`references/`/`assets/`/`scripts/` file referenced in `SKILL.md` must exist.\n- The baseline is intentionally empty. Refreshing it (`node scripts/validate-skills.js --write-baseline --yes`) grandfathers — and thus silences — current soft violations, so avoid it unless you truly need to; without `--yes` the command only previews what it would grandfather.\n\n### SKILL.md Template\n\n```markdown\n---\nname: <skill-name>\ndescription: <one sentence describing when to use this skill>\n---\n\n# <Skill Title>\n\n## Use this skill when\n- ...\n\n## Do not use this skill when\n- ...\n\n## Instructions\n1. ...\n2. ...\n```\n\n---\n\n## 🔐 Security\n\nSee [SECURITY.md](SECURITY.md) for safety expectations when writing skills that touch terminals or infrastructure.\n\n---\n\n## 📜 License\n\nMIT License. See [LICENSE](LICENSE) file for details.\n\nOriginal content © [Claude Code Agents](https://github.com/wshobson/agents).\nPorted to Antigravity Skills.\n",
  "bytes": 9805,
  "sha": "4b35e211752a2acbf6b1ee09a04e82c129fcd4fa9f64949cca01df5f95ca3ce1",
  "repo_slug": "rmyndharis/antigravity-skills",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/skl_rmyndharis_antigravity_skills_skills_fas_00c14e49/readme"
}