{
  "markdown": "**Language:** **English** | [한국어](docs/ko-KR/README.md) | [简体中文](docs/zh-CN/README.md)\n\n> **Attribution:** This project was built by migrating [Everything Claude Code](https://github.com/affaan-m/everything-claude-code) by [@affaan-m](https://github.com/affaan-m) to the Gemini CLI ecosystem. Huge thanks for the original work.\n>\n> EGC is an **ecosystem port** of ECC, not an official ECC release, and does not claim API or behavioral compatibility with ECC. Harness-specific behavior is verified inside Gemini CLI itself. See [`upstream/README.md`](upstream/README.md) for the sync policy, the recorded upstream baseline, and a category-level summary of what was changed versus copied during the port.\n\n# Everything Gemini Code\n\n[![Stars](https://img.shields.io/github/stars/Jamkris/everything-gemini-code?style=flat)](https://github.com/Jamkris/everything-gemini-code/stargazers)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)\n![Skills](https://img.shields.io/badge/skills-183-green)\n![Agents](https://img.shields.io/badge/agents-48-purple)\n![Commands](https://img.shields.io/badge/commands-80-blue)\n\n**Battle-tested agents, skills, and workflows for Gemini CLI / Antigravity.**\n\nPorts 183 skills and 48 agents from [Everything Claude Code](https://github.com/affaan-m/everything-claude-code), retuned for Gemini's tool model. Adds Gemini-native features like `/egc-grok` — a whole-repo audit that uses Gemini's 1M context window in a single pass (Claude Code's 200K can't).\n\n---\n\n## What you can do\n\n- **Audit your whole repo in one pass** — `/egc-grok` uses Gemini's 1M context to map architecture, find dead files, detect circular deps. No file-by-file scrolling.\n- **Plan-before-code workflow** — `@planner` returns a phased breakdown with risks and dependencies. WAITs for your confirm before writing anything.\n- **Test-driven feature flow** — `/egc-tdd` + `@tdd-guide` enforce write-tests-first with 80%+ coverage.\n- **Security review on demand** — `@security-reviewer` flags OWASP top 10, hardcoded secrets, injection risks before commit.\n- **183 skills, on-demand** — Clean Architecture, MCP, Remotion, Django, x402 payments, and more. Loaded only when referenced.\n\n---\n\n## Quick Start\n\n```bash\ngemini extensions install https://github.com/Jamkris/everything-gemini-code\n```\n\nThat's it. No clone, no symlinks. Requires `GEMINI_API_KEY` in your environment ([get one from Google AI Studio](https://aistudio.google.com/)):\n\n```bash\nexport GEMINI_API_KEY=\"your_api_key_here\"\n```\n\n<details>\n<summary><strong>Other install methods (Antigravity, manual, dev mode, uninstall)</strong></summary>\n\n### Install via Script (Antigravity / advanced)\n\nRecommended if you use **Antigravity** (VS Code / Cursor) or need to customize the installation. Existing configurations will be updated.\n\n```bash\n# Antigravity only\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/install.sh)\" -- --antigravity\n\n# CLI + Antigravity\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/install.sh)\" -- --all\n```\n\n### Manual installation\n\n```bash\ngit clone https://github.com/Jamkris/everything-gemini-code.git\n\n# Copy agents, commands, skills\ncp everything-gemini-code/agents/*.md ~/.gemini/agents/\ncp everything-gemini-code/commands/*.toml ~/.gemini/commands/\ncp -r everything-gemini-code/skills/* ~/.gemini/skills/\n\n# Antigravity workflows (optional)\ncp everything-gemini-code/workflows/*.md ~/.gemini/antigravity/global_workflows/\n```\n\n> **For Antigravity users:** copying to `~/.gemini/antigravity/` subdirectories (`global_agents`, `global_skills`) is recommended for full compatibility. `install.sh` handles this automatically.\n>\n> **Rules:** Bundled into `~/.gemini/GEMINI.md` by `install.sh`. For manual installs, copy a template: `cp everything-gemini-code/templates/GEMINI_GLOBAL.md ~/.gemini/GEMINI.md`\n\n### Developer mode (link instead of copy)\n\nFor developing or contributing to this extension:\n\n```bash\ngit clone https://github.com/Jamkris/everything-gemini-code.git\ncd everything-gemini-code\ngemini extensions link .\n```\n\n### Uninstall\n\n```bash\n# Extension install\ngemini extensions uninstall https://github.com/Jamkris/everything-gemini-code\n\n# Script-based install (Antigravity only — selective)\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/uninstall.sh)\" -- --antigravity\n\n# Script-based install (CLI + Antigravity — selective)\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/uninstall.sh)\" -- --all\n\n# Script-based install (Antigravity, full — deletes everything in target dirs)\n/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/uninstall.sh)\" -- --antigravity --purge\n```\n\n> **Why the pinned tag?** `curl | bash` from a moving branch is reproducibility- and supply-chain-unsafe. The URLs above point at the `v1.3.12` release tag. To check what's running, view the script at <https://github.com/Jamkris/everything-gemini-code/blob/v1.3.12/scripts/install.sh> before executing.\n\n</details>\n\n---\n\n## 💻 Usage\n\nOnce installed, you can access the new capabilities directly in Gemini CLI.\n\n### Slash Commands\n\nUse custom commands to automate workflows (see [Full Command List](docs/en/commands/README.md)):\n\n```bash\n# Plan a feature implementation\n/egc-plan \"Add user authentication with JWT\"\n\n# Start Test-Driven Development workflow\n/egc-tdd \"Create a user service\"\n\n# Run a code review\n/egc-code-review\n```\n\n> **Antigravity users:** workflows are installed under bare names\n> (e.g. `/tdd`, `/code-review`, `/build-fix`) — the `egc-` prefix is only\n> applied to `/egc-plan`, which would otherwise conflict with Antigravity's\n> built-in `/plan`. In Gemini CLI every command uses the `egc-` prefix to\n> avoid collisions with its built-in command set.\n\n### Agents\n\nDelegate complex tasks to specialized agents:\n\n```bash\n# Use the architect agent for system design\n@architect \"Design a microservices architecture for...\"\n\n# Use the security reviewer for vulnerability checks\n@security-reviewer \"Audit this file for injection flaws\"\n```\n\n### Skills\n\nGemini will automatically utilize installed skills when relevant to your request, such as \"TDD Workflow\" or \"Backend Patterns\".\n\n### MCP Servers\n\nConfigure and manage Model Context Protocol (MCP) servers to extend Gemini's capabilities. (see [MCP Configuration Guide](docs/en/mcp-configs/README.md))\n\n---\n\n## 📦 What's Inside\n\nThis extension packs a complete development environment config:\n\n```\neverything-gemini-code/\n├── gemini-extension.json  # Extension manifest\n├── agents/                # Specialized subagents (@planner, @architect, etc.)\n├── skills/                # Workflow definitions (TDD, Patterns, etc.)\n├── commands/              # Gemini CLI commands (.toml)\n├── workflows/             # Antigravity workflows (.md)\n├── templates/             # GEMINI.md rule templates (Global, TS, Python, Go)\n├── hooks/                 # Automation triggers (hooks.json)\n├── scripts/               # Install, uninstall, CI, and utility scripts\n├── mcp-configs/           # MCP server configurations\n└── docs/                  # Documentation (en, ko-KR, zh-CN)\n```\n\n---\n\n## ⚠️ Troubleshooting\n\nIf you see \"Skill conflict detected\" warnings, it means you have previously installed skills manually. You can safely remove the local versions to use the extension's managed skills:\n\n```bash\n# Remove manually installed skills and commands to avoid conflicts\nrm -rf ~/.gemini/skills/* ~/.gemini/commands/*\n```\n\n## 🤝 Contributing\n\n**Contributions are welcome!** See the [Contributing Guide](CONTRIBUTING.md).\n\nIf you have useful agents, skills, or configurations, please submit a Pull Request.\n\n---\n\n## 📄 License\n\nMIT - Use freely, modify as needed.\n",
  "bytes": 7962,
  "sha": "ccd9e3e81840b55f91aa4a0912564c38f6467bb39d9cf6b9088e101ae94b1595",
  "repo_slug": "jamkris/everything-gemini-code",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_jamkris_everything_gemini_code_acfb63a9/readme"
}