From 744377a7d5ca471d08b0a7cdedf6c730bd9b1ac3 Mon Sep 17 00:00:00 2001 From: Jamkris Date: Wed, 13 May 2026 16:53:58 +0900 Subject: [PATCH 1/4] docs: redesign README header for first-5-seconds hook MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The first impression decided no stars. The header lead was "comprehensive configuration suite" โ€” abstract, doesn't tell a visitor why this repo is different from vanilla Gemini CLI. The Quick Start also had a broken code fence (a stray naked `npm install` line and a runaway four-backtick block) that rendered ugly on GitHub. Changes (README.md only, no source/code edits): - New tagline: "Battle-tested agents, skills, and workflows for Gemini CLI / Antigravity." Then a one-line differentiator paragraph that names the upstream port AND the Gemini-native killer feature (/egc-grok, 1M context vs Claude Code's 200K). - Stats badges added next to license: skills 183, agents 48, commands 80. Concrete numbers, scannable at a glance. - New "What you can do" section with five concrete bullets, each naming a real command or agent: /egc-grok, @planner, /egc-tdd + @tdd-guide, @security-reviewer, 183 skills on-demand. All five entry points cross-checked against the repo before this commit โ€” they exist. - Quick Start collapsed to a single one-line `gemini extensions install` command + the API key env var. The four other install paths (Antigravity script, manual copy, dev-mode link, uninstall variants) move into a single
fold so they're still there but no longer push the value prop below the fold. - Broken markdown fences in the old Quick Start cleaned up. - Usage / What's Inside / Troubleshooting / Contributing / License sections untouched. Counts will drift; refresh when releases bump skill/agent inventory by more than ~5%. (Could shields.io-dynamic these later if it becomes a recurring maintenance ask.) npm run lint clean. npm test 279/279. --- README.md | 111 ++++++++++++++++++++++-------------------------------- 1 file changed, 45 insertions(+), 66 deletions(-) diff --git a/README.md b/README.md index bcf68f8..a3deb03 100644 --- a/README.md +++ b/README.md @@ -8,116 +8,95 @@ [![Stars](https://img.shields.io/github/stars/Jamkris/everything-gemini-code?style=flat)](https://github.com/Jamkris/everything-gemini-code/stargazers) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) +![Skills](https://img.shields.io/badge/skills-183-green) +![Agents](https://img.shields.io/badge/agents-48-purple) +![Commands](https://img.shields.io/badge/commands-80-blue) -**A comprehensive configuration suite for Gemini CLI / Antigravity.** +**Battle-tested agents, skills, and workflows for Gemini CLI / Antigravity.** -This extension provides production-ready agents, skills, hooks, commands, rules, and MCP configurations designed to supercharge your development workflow with Gemini. +Ports 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). --- -## ๐Ÿš€ Quick Start +## What you can do -npm install -g @google/gemini-cli@latest +- **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. +- **Plan-before-code workflow** โ€” `@planner` returns a phased breakdown with risks and dependencies. WAITs for your confirm before writing anything. +- **Test-driven feature flow** โ€” `/egc-tdd` + `@tdd-guide` enforce write-tests-first with 80%+ coverage. +- **Security review on demand** โ€” `@security-reviewer` flags OWASP top 10, hardcoded secrets, injection risks before commit. +- **183 skills, on-demand** โ€” Clean Architecture, MCP, Remotion, Django, x402 payments, and more. Loaded only when referenced. -```` - -### Authentication (Required) - -The Gemini CLI requires an API key to function. - -1. Get your API key from [Google AI Studio](https://aistudio.google.com/). -2. Set it as an environment variable: - -```bash -export GEMINI_API_KEY="your_api_key_here" -```` +--- -Or configure it using the CLI (if supported by your version): +## Quick Start ```bash -gemini config set apiKey "your_api_key_here" +gemini extensions install https://github.com/Jamkris/everything-gemini-code ``` -### Option 1: Install via Gemini CLI (Recommended) - -The easiest way to install. This will automatically set up the extension for Gemini CLI. +That's it. No clone, no symlinks. Requires `GEMINI_API_KEY` in your environment ([get one from Google AI Studio](https://aistudio.google.com/)): ```bash -gemini extensions install https://github.com/Jamkris/everything-gemini-code +export GEMINI_API_KEY="your_api_key_here" ``` -### Option 2: Install via Script (For Antigravity & Advanced Users) +
+Other install methods (Antigravity, manual, dev mode, uninstall) + +### Install via Script (Antigravity / advanced) Recommended if you use **Antigravity** (VS Code / Cursor) or need to customize the installation. Existing configurations will be updated. ```bash -# Install for Antigravity (Recommended) +# Antigravity only /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/main/scripts/install.sh)" -- --antigravity -# Install All (CLI + Antigravity) +# CLI + Antigravity /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/main/scripts/install.sh)" -- --all ``` -### Option 1: Uninstallation (Recommended) - -```bash -gemini extensions uninstall https://github.com/Jamkris/everything-gemini-code -``` - -### Option 2: Uninstallation (Manual Script) - -```bash -# Selective Uninstall (Recommended): Removes only files installed by this extension. -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/main/scripts/uninstall.sh)" -- --antigravity - -# Full Uninstall (Caution): Deletes ALL files in the target directories. -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/main/scripts/uninstall.sh)" -- --antigravity --purge -``` - -### Option 2: Manual Installation (Advanced) - -If you prefer manual control or need to customize specific components: +### Manual installation ```bash -# Clone the repository git clone https://github.com/Jamkris/everything-gemini-code.git -# Copy agents +# Copy agents, commands, skills cp everything-gemini-code/agents/*.md ~/.gemini/agents/ - -# Copy commands (Gemini CLI) cp everything-gemini-code/commands/*.toml ~/.gemini/commands/ - -# Copy workflows (Antigravity) -# Note: For Antigravity, use ~/.gemini/antigravity/global_workflows/ -cp everything-gemini-code/workflows/*.md ~/.gemini/antigravity/global_workflows/ - -# Copy skills cp -r everything-gemini-code/skills/* ~/.gemini/skills/ +# Antigravity workflows (optional) +cp everything-gemini-code/workflows/*.md ~/.gemini/antigravity/global_workflows/ ``` -> **For Antigravity Users:** -> If you are manually installing for Antigravity, copying to `~/.gemini/antigravity/` subdirectories (`global_agents`, `global_skills`) is recommended for full compatibility. The `install.sh` script handles this automatically. +> **For Antigravity users:** copying to `~/.gemini/antigravity/` subdirectories (`global_agents`, `global_skills`) is recommended for full compatibility. `install.sh` handles this automatically. > -> **Note:** Rules are bundled into `~/.gemini/GEMINI.md` via `install.sh`. For manual installs, copy a template: `cp everything-gemini-code/templates/GEMINI_GLOBAL.md ~/.gemini/GEMINI.md` +> **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` -```` +### Developer mode (link instead of copy) -### Option 3: Install as Gemini CLI Extension (Developer Mode) - -You can link this repository directly to Gemini CLI as an extension. This allows you to develop and test changes in real-time. +For developing or contributing to this extension: ```bash -# Clone the repository git clone https://github.com/Jamkris/everything-gemini-code.git cd everything-gemini-code - -# Link the extension gemini extensions link . -```` +``` + +### Uninstall + +```bash +# Extension install +gemini extensions uninstall https://github.com/Jamkris/everything-gemini-code + +# Script-based install (selective โ€” only files installed by this extension) +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/main/scripts/uninstall.sh)" -- --antigravity + +# Script-based install (full โ€” deletes everything in the target dirs) +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/main/scripts/uninstall.sh)" -- --antigravity --purge +``` -> โš ๏ธ **Note:** Rules are generated into `~/.gemini/GEMINI.md` by the install script. For extension-only installs, copy a template manually: `cp templates/GEMINI_GLOBAL.md ~/.gemini/GEMINI.md` +
--- From d049ff910ef1218815a3d36cfeff32dfae2aca2c Mon Sep 17 00:00:00 2001 From: Jamkris Date: Wed, 13 May 2026 17:14:20 +0900 Subject: [PATCH 2/4] fix: address PR #79 review feedback MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit P1 โ€” curl | bash from `main` is unsafe (CodeRabbit, line 56): All five `raw.githubusercontent.com/.../main/scripts/*` URLs pinned to `refs/tags/v1.3.12`. Avoids the supply-chain risk of installer drift between releases. Added a brief explanatory note linking to the blob URL so readers can audit the script before piping to bash. P2 โ€” uninstall --all flag undocumented (CodeRabbit, line 56): The install section showed `--all` (CLI + Antigravity) but the uninstall section only showed `--antigravity`. Verified scripts/uninstall.sh:28 supports `--all` (sets both TARGET_ANTIGRAVITY and TARGET_CLI). Added a parallel uninstall --all example and tightened the comment labels for the three uninstall variants (Antigravity only / CLI + Antigravity / full Antigravity purge). Bump cadence: when the next release tag lands, run `sed -i '' 's|refs/tags/v1.3.12|refs/tags/v1.3.13|g' README.md` or similar. Could be automated in scripts/release.sh as a follow-up if this becomes recurring. npm run lint clean. --- README.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a3deb03..5983572 100644 --- a/README.md +++ b/README.md @@ -49,10 +49,10 @@ Recommended if you use **Antigravity** (VS Code / Cursor) or need to customize t ```bash # Antigravity only -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/main/scripts/install.sh)" -- --antigravity +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/install.sh)" -- --antigravity # CLI + Antigravity -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/main/scripts/install.sh)" -- --all +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/install.sh)" -- --all ``` ### Manual installation @@ -89,13 +89,18 @@ gemini extensions link . # Extension install gemini extensions uninstall https://github.com/Jamkris/everything-gemini-code -# Script-based install (selective โ€” only files installed by this extension) -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/main/scripts/uninstall.sh)" -- --antigravity +# Script-based install (Antigravity only โ€” selective) +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/uninstall.sh)" -- --antigravity -# Script-based install (full โ€” deletes everything in the target dirs) -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/main/scripts/uninstall.sh)" -- --antigravity --purge +# Script-based install (CLI + Antigravity โ€” selective) +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/uninstall.sh)" -- --all + +# Script-based install (Antigravity, full โ€” deletes everything in target dirs) +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/uninstall.sh)" -- --antigravity --purge ``` +> **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 before executing. +
--- From e00db29d4dd7f7afee21a2167a19360afe71ab2a Mon Sep 17 00:00:00 2001 From: Jamkris Date: Wed, 13 May 2026 17:18:54 +0900 Subject: [PATCH 3/4] docs: mirror README redesign to ko-KR + zh-CN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The English README redesign in this PR (new header, badges, "What you can do", collapsed Quick Start, tag-pinned curl URLs, --all uninstall) was applied to docs/ko-KR/README.md and docs/zh-CN/README.md so non-English visitors see the same first- 5-seconds hook and the same supply-chain-safe install commands. Per-mirror changes: docs/ko-KR/README.md - Stats badges added (skills-183, agents-48, commands-80) next to the existing language-stack badges. - Tagline rewritten: "Gemini CLI / Antigravity ๋ฅผ ์œ„ํ•œ ๊ฒ€์ฆ๋œ ์—์ด์ „ํŠธ, ์Šคํ‚ฌ, ์›Œํฌํ”Œ๋กœ์šฐ ๋ชจ์Œ." + a Gemini-native differentiator paragraph naming the 1M-context advantage. - New "๋ฌด์—‡์„ ํ•  ์ˆ˜ ์žˆ๋‚˜" section with the same five concrete bullets as English (/egc-grok, @planner, /egc-tdd, etc). - Quick Start collapsed: one extension-install line + API key + everything else (script-based, manual notes, uninstall variants) inside a
fold. - 4 curl URLs in install + 3 uninstall URLs pinned to refs/tags/v1.3.12; uninstall --all example added. - Stale inventory counts fixed: 28โ†’48 agents, 125โ†’183 skills, 60โ†’80 commands (3 locations in "๊ตฌ์„ฑ ์š”์†Œ" section). docs/zh-CN/README.md - Stats badges added (skills-183, agents-48, commands-80). - Tagline rewritten with Gemini-native framing. - New "ไฝ ่ƒฝๅšไป€ไนˆ" section with the same five bullets in Simplified Chinese. - Quick Start collapsed identically to English (single extension-install + API key +
fold). - 5 curl URLs pinned to refs/tags/v1.3.12; uninstall --all example added. Untouched in both: - Language nav (line 1) - Attribution + ecosystem-port disclaimer (lines 3-5, already polished from upstream feedback round) - Below-the-fold sections (์‚ฌ์šฉ ์˜ˆ์‹œ, ๊ตฌ์„ฑ ์š”์†Œ, Troubleshooting equivalents, Contributing, License) npm run lint clean. --- docs/ko-KR/README.md | 83 +++++++++++++++++++++++++++----------------- docs/zh-CN/README.md | 69 ++++++++++++++++++++++++++---------- 2 files changed, 102 insertions(+), 50 deletions(-) diff --git a/docs/ko-KR/README.md b/docs/ko-KR/README.md index 475ab4d..7cf164e 100644 --- a/docs/ko-KR/README.md +++ b/docs/ko-KR/README.md @@ -8,54 +8,80 @@ [![Stars](https://img.shields.io/github/stars/Jamkris/everything-gemini-code?style=flat)](https://github.com/Jamkris/everything-gemini-code/stargazers) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](../../LICENSE) +![Skills](https://img.shields.io/badge/skills-183-green) +![Agents](https://img.shields.io/badge/agents-48-purple) +![Commands](https://img.shields.io/badge/commands-80-blue) ![Shell](https://img.shields.io/badge/-Shell-4EAA25?logo=gnu-bash&logoColor=white) ![TypeScript](https://img.shields.io/badge/-TypeScript-3178C6?logo=typescript&logoColor=white) ![Python](https://img.shields.io/badge/-Python-3776AB?logo=python&logoColor=white) ![Go](https://img.shields.io/badge/-Go-00ADD8?logo=go&logoColor=white) -**Gemini CLI / Antigravity๋ฅผ ์œ„ํ•œ ์ข…ํ•ฉ ์„ค์ • ๋ฐ ์—์ด์ „ํŠธ ์‹œ์Šคํ…œ.** +**Gemini CLI / Antigravity ๋ฅผ ์œ„ํ•œ ๊ฒ€์ฆ๋œ ์—์ด์ „ํŠธ, ์Šคํ‚ฌ, ์›Œํฌํ”Œ๋กœ์šฐ ๋ชจ์Œ.** -๋‹จ์ˆœํ•œ ์„ค์ • ํŒŒ์ผ ๋ชจ์Œ์ด ์•„๋‹™๋‹ˆ๋‹ค. ์—์ด์ „ํŠธ, ์Šคํ‚ฌ, ํ›…, ์ปค๋งจ๋“œ, ๋ฃฐ, MCP ์„ค์ •์„ ์•„์šฐ๋ฅด๋Š” ์™„์ „ํ•œ ์‹œ์Šคํ…œ์ž…๋‹ˆ๋‹ค. -์‹ค์ œ ํ”„๋กœ๋•ํŠธ๋ฅผ ๋งŒ๋“ค๋ฉฐ ๋งค์ผ ์ง‘์ค‘์ ์œผ๋กœ ์‚ฌ์šฉํ•ด ๋ฐœ์ „์‹œํ‚จ ํ”„๋กœ๋•์…˜ ๋ ˆ๋ฒจ์˜ ์„ค์ •์ด ํฌํ•จ๋˜์–ด ์žˆ์Šต๋‹ˆ๋‹ค. - -**Gemini CLI**, **Antigravity** ๋“ฑ ๋‹ค์–‘ํ•œ AI ์—์ด์ „ํŠธ ํ™˜๊ฒฝ์—์„œ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. +[Everything Claude Code](https://github.com/affaan-m/everything-claude-code)์—์„œ 183๊ฐœ ์Šคํ‚ฌ๊ณผ 48๊ฐœ ์—์ด์ „ํŠธ๋ฅผ Gemini ์˜ ํˆด ๋ชจ๋ธ๋กœ ํฌํŒ…ํ–ˆ์Šต๋‹ˆ๋‹ค. `/egc-grok` ๊ฐ™์€ Gemini ์ „์šฉ ๊ธฐ๋Šฅ๋„ ์ถ”๊ฐ€๋˜์–ด ์žˆ์–ด์š” โ€” Gemini ์˜ 1M ์ปจํ…์ŠคํŠธ๋กœ ๋ ˆํฌ ์ „์ฒด๋ฅผ ํ•œ ๋ฒˆ์— ๊ฐ์‚ฌํ•˜๋Š” ๋ช…๋ น์–ด์ž…๋‹ˆ๋‹ค (Claude Code ์˜ 200K ๋กœ๋Š” ๋ถˆ๊ฐ€๋Šฅํ•œ ์˜์—ญ). --- -## ๐Ÿš€ ๋น ๋ฅธ ์‹œ์ž‘ +## ๋ฌด์—‡์„ ํ•  ์ˆ˜ ์žˆ๋‚˜ + +- **๋ ˆํฌ ์ „์ฒด๋ฅผ ํ•œ ๋ฒˆ์— ๊ฐ์‚ฌ** โ€” `/egc-grok` ์ด Gemini ์˜ 1M ์ปจํ…์ŠคํŠธ๋กœ ์•„ํ‚คํ…์ฒ˜ ๋งต, ๋ฐ๋“œ ํŒŒ์ผ, ์ˆœํ™˜ ์˜์กด์„ ํ•œ ๋ฒˆ์— ์ถ”์ถœํ•ฉ๋‹ˆ๋‹ค. ํŒŒ์ผ๋ณ„ ์Šคํฌ๋กค ๋ถˆํ•„์š”. +- **๊ณ„ํš-๋จผ์ € ์›Œํฌํ”Œ๋กœ์šฐ** โ€” `@planner` ๊ฐ€ ๋‹จ๊ณ„๋ณ„ ๋ถ„ํ•ด + ๋ฆฌ์Šคํฌ + ์˜์กด์„ฑ์„ ๋ฐ˜ํ™˜ํ•˜๊ณ , ์ฝ”๋“œ ์ž‘์„ฑ ์ „์— ์‚ฌ์šฉ์ž์˜ ํ™•์ธ์„ ๊ธฐ๋‹ค๋ฆฝ๋‹ˆ๋‹ค. +- **ํ…Œ์ŠคํŠธ-์šฐ์„  ํ๋ฆ„** โ€” `/egc-tdd` + `@tdd-guide` ๊ฐ€ ํ…Œ์ŠคํŠธ ๋จผ์ € + 80% ์ด์ƒ ์ปค๋ฒ„๋ฆฌ์ง€๋ฅผ ๊ฐ•์ œํ•ฉ๋‹ˆ๋‹ค. +- **์˜จ๋””๋งจ๋“œ ๋ณด์•ˆ ๋ฆฌ๋ทฐ** โ€” `@security-reviewer` ๊ฐ€ OWASP Top 10, ํ•˜๋“œ์ฝ”๋”ฉ๋œ ์‹œํฌ๋ฆฟ, ์ธ์ ์…˜ ์œ„ํ—˜์„ ์ปค๋ฐ‹ ์ „์— ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค. +- **183๊ฐœ ์Šคํ‚ฌ, ํ•„์š”ํ•  ๋•Œ๋งŒ** โ€” Clean Architecture, MCP, Remotion, Django, x402 ๊ฒฐ์ œ ๋“ฑ. ์ฐธ์กฐ๋  ๋•Œ๋งŒ ๋กœ๋“œ๋ฉ๋‹ˆ๋‹ค. -### 1๋‹จ๊ณ„: Gemini CLI ์„ค์น˜ +--- + +## ๋น ๋ฅธ ์‹œ์ž‘ ```bash -npm install -g @google/gemini-cli@latest +gemini extensions install https://github.com/Jamkris/everything-gemini-code ``` -### 2๋‹จ๊ณ„: API ํ‚ค ์„ค์ • - -1. [Google AI Studio](https://aistudio.google.com/)์—์„œ API ํ‚ค๋ฅผ ๋ฐœ๊ธ‰๋ฐ›์œผ์„ธ์š”. -2. ํ™˜๊ฒฝ ๋ณ€์ˆ˜๋กœ ์„ค์ •ํ•˜์„ธ์š”: +๋. ํด๋ก ๋„ ์‹ฌ๋ณผ๋ฆญ๋งํฌ๋„ ํ•„์š” ์—†์Šต๋‹ˆ๋‹ค. ํ™˜๊ฒฝ ๋ณ€์ˆ˜์— `GEMINI_API_KEY` ๋งŒ ์žˆ์œผ๋ฉด ๋ฉ๋‹ˆ๋‹ค ([Google AI Studio ์—์„œ ๋ฐœ๊ธ‰](https://aistudio.google.com/)): ```bash export GEMINI_API_KEY="your_api_key_here" ``` -### 3๋‹จ๊ณ„: ํ™•์žฅ ์„ค์น˜ (๊ถŒ์žฅ) +
+๋‹ค๋ฅธ ์„ค์น˜ ๋ฐฉ๋ฒ• (Antigravity / ์ˆ˜๋™ / ๊ฐœ๋ฐœ ๋ชจ๋“œ / ์ œ๊ฑฐ) + +### ์Šคํฌ๋ฆฝํŠธ๋กœ ์„ค์น˜ (Antigravity / ๊ณ ๊ธ‰) + +**Antigravity** (VS Code / Cursor) ๋ฅผ ์“ฐ๊ฑฐ๋‚˜ ์„ค์น˜๋ฅผ ์ปค์Šคํ„ฐ๋งˆ์ด์ฆˆํ•ด์•ผ ํ•œ๋‹ค๋ฉด ๊ถŒ์žฅ๋ฉ๋‹ˆ๋‹ค. ๊ธฐ์กด ์„ค์ •์€ ๊ฐฑ์‹ ๋ฉ๋‹ˆ๋‹ค. ```bash -gemini extensions install https://github.com/Jamkris/everything-gemini-code +# Antigravity ๋งŒ +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/install.sh)" -- --antigravity + +# CLI + Antigravity +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/install.sh)" -- --all ``` -Antigravity ์‚ฌ์šฉ์ž๋Š” ์Šคํฌ๋ฆฝํŠธ๋ฅผ ์‚ฌ์šฉํ•˜์„ธ์š”: +### ์ œ๊ฑฐ ```bash -# Antigravity์šฉ ์„ค์น˜ -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/main/scripts/install.sh)" -- --antigravity +# ์ต์Šคํ…์…˜ ์„ค์น˜ +gemini extensions uninstall https://github.com/Jamkris/everything-gemini-code + +# ์Šคํฌ๋ฆฝํŠธ ์„ค์น˜ (Antigravity ๋งŒ, ์„ ํƒ์ ) +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/uninstall.sh)" -- --antigravity -# CLI + Antigravity ๋ชจ๋‘ ์„ค์น˜ -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/main/scripts/install.sh)" -- --all +# ์Šคํฌ๋ฆฝํŠธ ์„ค์น˜ (CLI + Antigravity, ์„ ํƒ์ ) +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/uninstall.sh)" -- --all + +# ์Šคํฌ๋ฆฝํŠธ ์„ค์น˜ (Antigravity, ํ’€ โ€” ํƒ€๊นƒ ๋””๋ ‰ํ† ๋ฆฌ ์ „์ฒด ์‚ญ์ œ) +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/uninstall.sh)" -- --antigravity --purge ``` -### 4๋‹จ๊ณ„: ์‚ฌ์šฉ ์‹œ์ž‘ +> **์™œ ํƒœ๊ทธ๋ฅผ ํ•€ํ•˜๋‚˜์š”?** ์›€์ง์ด๋Š” ๋ธŒ๋žœ์น˜๋ฅผ ํ–ฅํ•ด `curl | bash` ํ•˜๋Š” ๊ฑด ์žฌํ˜„์„ฑ๊ณผ ๊ณต๊ธ‰๋ง ์•ˆ์ „์„ฑ ์ธก๋ฉด์—์„œ ์œ„ํ—˜ํ•ฉ๋‹ˆ๋‹ค. ์œ„ URL ๋“ค์€ `v1.3.12` ๋ฆด๋ฆฌ์Šค ํƒœ๊ทธ๋ฅผ ๊ฐ€๋ฆฌํ‚ต๋‹ˆ๋‹ค. ์‹ค์ œ๋กœ ๋ฌด์—‡์ด ์‹คํ–‰๋˜๋Š”์ง€ ํ™•์ธํ•˜๋ ค๋ฉด ๋ฅผ ๋จผ์ € ๋ณด์„ธ์š”. + +
+ +### ์ฒซ ๋ช…๋ น์–ด + +์„ค์น˜ ํ›„ Gemini CLI ์—์„œ: ```bash # ๊ธฐ๋Šฅ ๊ตฌํ˜„ ๊ณ„ํš @@ -64,20 +90,15 @@ Antigravity ์‚ฌ์šฉ์ž๋Š” ์Šคํฌ๋ฆฝํŠธ๋ฅผ ์‚ฌ์šฉํ•˜์„ธ์š”: # TDD ์›Œํฌํ”Œ๋กœ์šฐ ์‹œ์ž‘ /egc-tdd "์‚ฌ์šฉ์ž ์„œ๋น„์Šค ์ƒ์„ฑ" -# ์ฝ”๋“œ ๋ฆฌ๋ทฐ ์‹คํ–‰ -/egc-code-review +# ๋ ˆํฌ ์ „์ฒด ๊ฐ์‚ฌ +/egc-grok # ์—์ด์ „ํŠธ ์ง์ ‘ ํ˜ธ์ถœ @architect "๋งˆ์ดํฌ๋กœ์„œ๋น„์Šค ์•„ํ‚คํ…์ฒ˜ ์„ค๊ณ„" @security-reviewer "์ด ํŒŒ์ผ์˜ ์ธ์ ์…˜ ์ทจ์•ฝ์  ๊ฐ์‚ฌ" ``` -> **Antigravity ์‚ฌ์šฉ์ž ์ฐธ๊ณ :** ์›Œํฌํ”Œ๋กœ์šฐ๋Š” bare name ์œผ๋กœ ์„ค์น˜๋ฉ๋‹ˆ๋‹ค -> (์˜ˆ: `/tdd`, `/code-review`, `/build-fix`). Antigravity ๋‚ด์žฅ `/plan` ๊ณผ -> ์ถฉ๋Œํ•˜๋Š” `/egc-plan` ์—๋งŒ `egc-` ํ”„๋ฆฌํ”ฝ์Šค๊ฐ€ ๋ถ™์Šต๋‹ˆ๋‹ค. Gemini CLI ์—์„œ๋Š” -> ๋‚ด์žฅ ์ปค๋งจ๋“œ ์ถฉ๋Œ ๋ฐฉ์ง€๋ฅผ ์œ„ํ•ด ๋ชจ๋“  ์ปค๋งจ๋“œ๊ฐ€ `egc-` ํ”„๋ฆฌํ”ฝ์Šค๋ฅผ ์‚ฌ์šฉํ•ฉ๋‹ˆ๋‹ค. - -โœจ **์™„๋ฃŒ!** ์ด์ œ 28๊ฐœ ์—์ด์ „ํŠธ, 125๊ฐœ ์Šคํ‚ฌ, 60๊ฐœ ์ปค๋งจ๋“œ๋ฅผ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. +> **Antigravity ์‚ฌ์šฉ์ž ์ฐธ๊ณ :** ์›Œํฌํ”Œ๋กœ์šฐ๋Š” bare name ์œผ๋กœ ์„ค์น˜๋ฉ๋‹ˆ๋‹ค (์˜ˆ: `/tdd`, `/code-review`, `/build-fix`). Antigravity ๋‚ด์žฅ `/plan` ๊ณผ ์ถฉ๋Œํ•˜๋Š” `/egc-plan` ์—๋งŒ `egc-` ํ”„๋ฆฌํ”ฝ์Šค๊ฐ€ ๋ถ™์Šต๋‹ˆ๋‹ค. Gemini CLI ์—์„œ๋Š” ๋‚ด์žฅ ์ปค๋งจ๋“œ ์ถฉ๋Œ ๋ฐฉ์ง€๋ฅผ ์œ„ํ•ด ๋ชจ๋“  ์ปค๋งจ๋“œ๊ฐ€ `egc-` ํ”„๋ฆฌํ”ฝ์Šค๋ฅผ ์‚ฌ์šฉํ•ฉ๋‹ˆ๋‹ค. --- @@ -89,7 +110,7 @@ Antigravity ์‚ฌ์šฉ์ž๋Š” ์Šคํฌ๋ฆฝํŠธ๋ฅผ ์‚ฌ์šฉํ•˜์„ธ์š”: everything-gemini-code/ โ”œโ”€โ”€ gemini-extension.json # ํ™•์žฅ ๋งค๋‹ˆํŽ˜์ŠคํŠธ โ”‚ -โ”œโ”€โ”€ agents/ # ์ „๋ฌธ ์„œ๋ธŒ์—์ด์ „ํŠธ (28๊ฐœ) +โ”œโ”€โ”€ agents/ # ์ „๋ฌธ ์„œ๋ธŒ์—์ด์ „ํŠธ (48๊ฐœ) โ”‚ โ”œโ”€โ”€ planner.md # ๊ธฐ๋Šฅ ๊ตฌํ˜„ ๊ณ„ํš โ”‚ โ”œโ”€โ”€ architect.md # ์‹œ์Šคํ…œ ์„ค๊ณ„ ์˜์‚ฌ๊ฒฐ์ • โ”‚ โ”œโ”€โ”€ tdd-guide.md # ํ…Œ์ŠคํŠธ ์ฃผ๋„ ๊ฐœ๋ฐœ @@ -118,7 +139,7 @@ everything-gemini-code/ โ”‚ โ”œโ”€โ”€ rust-build-resolver.md # Rust ๋นŒ๋“œ ์—๋Ÿฌ ํ•ด๊ฒฐ โ”‚ โ””โ”€โ”€ pytorch-build-resolver.md # PyTorch/CUDA ํ›ˆ๋ จ ์—๋Ÿฌ โ”‚ -โ”œโ”€โ”€ skills/ # ์›Œํฌํ”Œ๋กœ์šฐ ์ •์˜ ๋ฐ ๋„๋ฉ”์ธ ์ง€์‹ (125๊ฐœ) +โ”œโ”€โ”€ skills/ # ์›Œํฌํ”Œ๋กœ์šฐ ์ •์˜ ๋ฐ ๋„๋ฉ”์ธ ์ง€์‹ (183๊ฐœ) โ”‚ โ”œโ”€โ”€ coding-standards/ # ์–ธ์–ด ๋ชจ๋ฒ” ์‚ฌ๋ก€ โ”‚ โ”œโ”€โ”€ backend-patterns/ # API, ๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค, ์บ์‹ฑ ํŒจํ„ด โ”‚ โ”œโ”€โ”€ frontend-patterns/ # React, Next.js ํŒจํ„ด @@ -147,7 +168,7 @@ everything-gemini-code/ โ”‚ โ”œโ”€โ”€ search-first/ # ๋ฆฌ์„œ์น˜-๋จผ์ € ๊ฐœ๋ฐœ ์›Œํฌํ”Œ๋กœ์šฐ โ”‚ โ””โ”€โ”€ ๊ทธ ์™ธ 100๊ฐœ+ ์Šคํ‚ฌ... โ”‚ -โ”œโ”€โ”€ commands/ # Gemini CLI ์ปค๋งจ๋“œ (.toml, 60๊ฐœ) +โ”œโ”€โ”€ commands/ # Gemini CLI ์ปค๋งจ๋“œ (.toml, 80๊ฐœ) โ”‚ โ”œโ”€โ”€ plan.toml # /egc-plan - ๊ตฌํ˜„ ๊ณ„ํš โ”‚ โ”œโ”€โ”€ tdd.toml # /egc-tdd - ํ…Œ์ŠคํŠธ ์ฃผ๋„ ๊ฐœ๋ฐœ โ”‚ โ”œโ”€โ”€ code-review.toml # /egc-code-review - ์ฝ”๋“œ ๋ฆฌ๋ทฐ diff --git a/docs/zh-CN/README.md b/docs/zh-CN/README.md index 92575af..46569b9 100644 --- a/docs/zh-CN/README.md +++ b/docs/zh-CN/README.md @@ -8,59 +8,90 @@ [![Stars](https://img.shields.io/github/stars/Jamkris/everything-gemini-code?style=flat)](https://github.com/Jamkris/everything-gemini-code/stargazers) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE) +![Skills](https://img.shields.io/badge/skills-183-green) +![Agents](https://img.shields.io/badge/agents-48-purple) +![Commands](https://img.shields.io/badge/commands-80-blue) -**้€‚็”จไบŽ Gemini CLI / Antigravity ็š„็ปผๅˆ้…็ฝฎๅฅ—ไปถใ€‚** +**้€‚็”จไบŽ Gemini CLI / Antigravity ็š„็ป่ฟ‡ๅฎžๆˆ˜ๆฃ€้ชŒ็š„ Agentsใ€Skills ๅ’Œ Workflowsใ€‚** -่ฏฅๆ‰ฉๅฑ•ๆไพ›ไบ†็”Ÿไบง็บง็š„ Agentsใ€Skillsใ€Hooksใ€Commandsใ€Rules ๅ’Œ MCP ้…็ฝฎ๏ผŒๆ—จๅœจ้€š่ฟ‡ Gemini ๆžๅคงๅœฐๅขžๅผบๆ‚จ็š„ๅผ€ๅ‘ๅทฅไฝœๆตใ€‚ +ไปŽ [Everything Claude Code](https://github.com/affaan-m/everything-claude-code) ็งปๆคไบ† 183 ไธช Skills ๅ’Œ 48 ไธช Agents๏ผŒๅนถ้’ˆๅฏน Gemini ็š„ๅทฅๅ…ทๆจกๅž‹้‡ๆ–ฐ่ฐƒๆ•ดใ€‚ๆ–ฐๅขžไบ† `/egc-grok` ็ญ‰ Gemini ๅŽŸ็”ŸๅŠŸ่ƒฝ โ€”โ€” ไฝฟ็”จ Gemini ็š„ 1M ไธŠไธ‹ๆ–‡็ช—ๅฃไธ€ๆฌกๆ€งๅฎก่ฎกๆ•ดไธชไป“ๅบ“๏ผˆClaude Code ็š„ 200K ไธŠไธ‹ๆ–‡ๅšไธๅˆฐ๏ผ‰ใ€‚ --- -## ๐Ÿš€ ๅฟซ้€Ÿๅผ€ๅง‹ +## ไฝ ่ƒฝๅšไป€ไนˆ -### ้€‰้กน 1๏ผš้€š่ฟ‡ Gemini CLI ๅฎ‰่ฃ…๏ผˆๆŽจ่๏ผ‰ +- **ไธ€ๆฌกๆ€งๅฎก่ฎกๆ•ดไธชไป“ๅบ“** โ€” `/egc-grok` ๅˆฉ็”จ Gemini ็š„ 1M ไธŠไธ‹ๆ–‡็ป˜ๅˆถๆžถๆž„ๅ›พใ€ๆŸฅๆ‰พๆญปๆ–‡ไปถใ€ๆฃ€ๆต‹ๅพช็Žฏไพ่ต–ใ€‚ๆ— ้œ€้€ๆ–‡ไปถ็ฟป้˜…ใ€‚ +- **ๅ…ˆ่ง„ๅˆ’ๅŽ็ผ–็ ** โ€” `@planner` ่ฟ”ๅ›žๅธฆ้ฃŽ้™ฉๅ’Œไพ่ต–็š„ๅˆ†้˜ถๆฎตๆ–นๆกˆ๏ผŒๅœจๅ†™ไปฃ็ ๅ‰็ญ‰ๅพ…ไฝ ็š„็กฎ่ฎคใ€‚ +- **ๆต‹่ฏ•้ฉฑๅŠจๆต็จ‹** โ€” `/egc-tdd` + `@tdd-guide` ๅผบๅˆถๅ…ˆๅ†™ๆต‹่ฏ• + 80% ไปฅไธŠ่ฆ†็›–็އใ€‚ +- **ๆŒ‰้œ€ๅฎ‰ๅ…จๅฎกๆŸฅ** โ€” `@security-reviewer` ๅœจๆไบคๅ‰ๆ ‡่ฎฐ OWASP Top 10ใ€็กฌ็ผ–็  secretsใ€ๆณจๅ…ฅ้ฃŽ้™ฉใ€‚ +- **183 ไธช Skills๏ผŒๆŒ‰้œ€ๅŠ ่ฝฝ** โ€” Clean Architectureใ€MCPใ€Remotionใ€Djangoใ€x402 ๆ”ฏไป˜็ญ‰ใ€‚ไป…ๅœจ่ขซๅผ•็”จๆ—ถๅŠ ่ฝฝใ€‚ + +--- + +## ๅฟซ้€Ÿๅผ€ๅง‹ ```bash -# ็›ดๆŽฅไปŽ GitHub ๅฎ‰่ฃ… gemini extensions install https://github.com/Jamkris/everything-gemini-code ``` -### ้€‰้กน 2๏ผšๆ‰‹ๅŠจๅฎ‰่ฃ…๏ผˆ้ซ˜็บง๏ผ‰ +ๅฐฑ่ฟ™ไบ›ใ€‚ๆ— ้œ€ cloneใ€ๆ— ้œ€่ฝฏ้“พใ€‚ๅช้œ€็Žฏๅขƒๅ˜้‡ไธญๆœ‰ `GEMINI_API_KEY`๏ผˆ[ไปŽ Google AI Studio ่Žทๅ–](https://aistudio.google.com/)๏ผ‰๏ผš + +```bash +export GEMINI_API_KEY="your_api_key_here" +``` + +
+ๅ…ถไป–ๅฎ‰่ฃ…ๆ–นๅผ๏ผˆAntigravity / ๆ‰‹ๅŠจ / ๅผ€ๅ‘ๆจกๅผ / ๅธ่ฝฝ๏ผ‰ + +### ่„šๆœฌๅฎ‰่ฃ…๏ผˆAntigravity / ้ซ˜็บง๏ผ‰ + +ๅฆ‚ๆžœๆ‚จไฝฟ็”จ **Antigravity**๏ผˆVS Code / Cursor๏ผ‰ๆˆ–้œ€่ฆ่‡ชๅฎšไน‰ๅฎ‰่ฃ…๏ผŒๆŽจ่ๆญคๆ–นๅผใ€‚ไผšๆ›ดๆ–ฐ็Žฐๆœ‰้…็ฝฎใ€‚ -ๅฆ‚ๆžœๆ‚จๅๅฅฝๆ‰‹ๅŠจๆŽงๅˆถๆˆ–้œ€่ฆ่‡ชๅฎšไน‰็‰นๅฎš็ป„ไปถ๏ผš +```bash +# ไป… Antigravity +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/install.sh)" -- --antigravity + +# CLI + Antigravity +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/install.sh)" -- --all +``` + +### ๆ‰‹ๅŠจๅฎ‰่ฃ… ```bash -# ๅ…‹้š†ไป“ๅบ“ git clone https://github.com/Jamkris/everything-gemini-code.git # ๅคๅˆถ Agents cp everything-gemini-code/agents/*.md ~/.gemini/agents/ # ๅคๅˆถ Commands -cp everything-gemini-code/commands/*.md ~/.gemini/commands/ +cp everything-gemini-code/commands/*.toml ~/.gemini/commands/ # ๅคๅˆถ Skills cp -r everything-gemini-code/skills/* ~/.gemini/skills/ - ``` -> โš ๏ธ **ๆณจๆ„๏ผš** ่ง„ๅˆ™้€š่ฟ‡ `install.sh` ็”Ÿๆˆๅˆฐ `~/.gemini/GEMINI.md`ใ€‚ๆ‰‹ๅŠจๅฎ‰่ฃ…ๆ—ถ๏ผš`cp everything-gemini-code/templates/GEMINI_GLOBAL.md ~/.gemini/GEMINI.md` +> โš ๏ธ **ๆณจๆ„๏ผš** ่ง„ๅˆ™้€š่ฟ‡ `install.sh` ็”Ÿๆˆๅˆฐ `~/.gemini/GEMINI.md`ใ€‚ๆ‰‹ๅŠจๅฎ‰่ฃ…ๆ—ถๆ‰ง่กŒ๏ผš`cp everything-gemini-code/templates/GEMINI_GLOBAL.md ~/.gemini/GEMINI.md` -### ้€‰้กน 1๏ผšๅธ่ฝฝ๏ผˆๆŽจ่๏ผ‰ +### ๅธ่ฝฝ ```bash +# ๆ‰ฉๅฑ•ๅฎ‰่ฃ… gemini extensions uninstall https://github.com/Jamkris/everything-gemini-code -``` -### ้€‰้กน 2๏ผšๅธ่ฝฝ๏ผˆๆ‰‹ๅŠจ่„šๆœฌ๏ผ‰ +# ่„šๆœฌๅฎ‰่ฃ…๏ผˆไป… Antigravity๏ผŒ้€‰ๆ‹ฉๆ€ง๏ผ‰ +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/uninstall.sh)" -- --antigravity -```bash -# ้€‰ๆ‹ฉๆ€งๅธ่ฝฝ๏ผˆๆŽจ่๏ผ‰๏ผšไป…ๅธ่ฝฝๆญคๆ‰ฉๅฑ•ๅฎ‰่ฃ…็š„ๆ–‡ไปถใ€‚ -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/main/scripts/uninstall.sh)" -- --antigravity +# ่„šๆœฌๅฎ‰่ฃ…๏ผˆCLI + Antigravity๏ผŒ้€‰ๆ‹ฉๆ€ง๏ผ‰ +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/uninstall.sh)" -- --all -# ๅฎŒๅ…จๅธ่ฝฝ๏ผˆ่ญฆๅ‘Š๏ผ‰๏ผšๅˆ ้™ค็›ฎๆ ‡็›ฎๅฝ•ไธญ็š„ๆ‰€ๆœ‰ๆ–‡ไปถใ€‚ -/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/main/scripts/uninstall.sh)" -- --antigravity --purge +# ่„šๆœฌๅฎ‰่ฃ…๏ผˆAntigravity๏ผŒๅฎŒๅ…จ โ€” ๅˆ ้™ค็›ฎๆ ‡็›ฎๅฝ•ไธญ็š„ๆ‰€ๆœ‰ๆ–‡ไปถ๏ผ‰ +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Jamkris/everything-gemini-code/refs/tags/v1.3.12/scripts/uninstall.sh)" -- --antigravity --purge ``` +> **ไธบไป€ไนˆ้’‰็‰ˆๆœฌๆ ‡็ญพ๏ผŸ** ็›ดๆŽฅๅฏน็งปๅŠจ็š„ๅˆ†ๆ”ฏๆ‰ง่กŒ `curl | bash` ๅœจๅฏๅค็Žฐๆ€งๅ’Œไพ›ๅบ”้“พๅฎ‰ๅ…จๆ–น้ข้ƒฝไธๅฏ้ ใ€‚ไธŠ้ข็š„ URL ๆŒ‡ๅ‘ `v1.3.12` ๅ‘ๅธƒๆ ‡็ญพใ€‚ๆ‰ง่กŒๅ‰่ฏท้€š่ฟ‡ ๅฎกๆŸฅๅฎž้™…่ฟ่กŒ็š„่„šๆœฌใ€‚ + +
+ --- ## ๐Ÿ’ป ไฝฟ็”จๆ–นๆณ• From 566052aa9926f0c64e45b5f67d01c05bab527b93 Mon Sep 17 00:00:00 2001 From: Jamkris Date: Wed, 13 May 2026 17:24:08 +0900 Subject: [PATCH 4/4] =?UTF-8?q?docs:=20mirror=20=E9=A6=96=E6=AC=A1?= =?UTF-8?q?=E5=91=BD=E4=BB=A4=20section=20into=20zh-CN=20README?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CodeRabbit (PR #79 round 3) flagged the zh-CN README as missing the post-install "First Command" hook that ko-KR has. Adds the section in the same position (immediately after the install
fold, before the dedicated ไฝฟ็”จๆ–นๆณ• section) so the zh-CN reader sees the same first-command suggestion (/egc-grok) and the same Antigravity prefix note as the Korean reader. Mirrors ko-KR's content: - /egc-grok as the first example (whole-repo audit) - /egc-plan + /egc-tdd as workflow entry points - @architect + @security-reviewer for direct agent calls - Antigravity bare-name vs egc- prefix explanation npm run lint clean. --- docs/zh-CN/README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/docs/zh-CN/README.md b/docs/zh-CN/README.md index 46569b9..3888f34 100644 --- a/docs/zh-CN/README.md +++ b/docs/zh-CN/README.md @@ -92,6 +92,27 @@ gemini extensions uninstall https://github.com/Jamkris/everything-gemini-code
+### ้ฆ–ๆฌกๅ‘ฝไปค + +ๅฎ‰่ฃ…ๅฎŒๆˆๅŽ๏ผŒๅœจ Gemini CLI ไธญ๏ผš + +```bash +# ไธ€ๆฌกๆ€งๅฎก่ฎกๆ•ดไธชไป“ๅบ“ +/egc-grok + +# ่ง„ๅˆ’ๅŠŸ่ƒฝๅฎž็Žฐ +/egc-plan "ๆทปๅŠ ็”จๆˆท่ฎค่ฏ" + +# ๅฏๅŠจ TDD ๅทฅไฝœๆต +/egc-tdd "ๅˆ›ๅปบ็”จๆˆทๆœๅŠก" + +# ็›ดๆŽฅ่ฐƒ็”จ Agent +@architect "่ฎพ่ฎกๅพฎๆœๅŠกๆžถๆž„" +@security-reviewer "ๅฎก่ฎกๆญคๆ–‡ไปถ็š„ๆณจๅ…ฅๆผๆดž" +``` + +> **Antigravity ็”จๆˆทๆณจๆ„๏ผš** ๅทฅไฝœๆตไฝฟ็”จ่ฃธๅ็งฐๅฎ‰่ฃ…๏ผˆไพ‹ๅฆ‚ `/tdd`ใ€`/code-review`ใ€`/build-fix`๏ผ‰ใ€‚ๅชๆœ‰ไธŽ Antigravity ๅ†…็ฝฎ `/plan` ๅ†ฒ็ช็š„ `/egc-plan` ไผšๅŠ ไธŠ `egc-` ๅ‰็ผ€ใ€‚ๅœจ Gemini CLI ไธญ๏ผŒๆ‰€ๆœ‰ๅ‘ฝไปค้ƒฝไฝฟ็”จ `egc-` ๅ‰็ผ€ไปฅ้ฟๅ…ไธŽๅ†…็ฝฎๅ‘ฝไปค้›†ๅ†ฒ็ชใ€‚ + --- ## ๐Ÿ’ป ไฝฟ็”จๆ–นๆณ•