diff --git a/README.ko.md b/README.ko.md index c05b611..22c19f9 100644 --- a/README.ko.md +++ b/README.ko.md @@ -89,12 +89,12 @@ cp everything-gemini-code/workflows/*.md ~/.gemini/antigravity/global_workflows/ # 스킬 복사 cp -r everything-gemini-code/skills/* ~/.gemini/skills/ -# 규칙 설치 (두 설치 방법 모두 필수) -cp -r everything-gemini-code/rules/common/* ~/.gemini/rules/ ``` > **Antigravity 사용자 참고:** -> Antigravity를 위해 수동 설치하는 경우, 호환성을 위해 `~/.gemini/antigravity/` 하위 디렉토리(`global_agents`, `global_skills`, `global_rules`)에 복사하는 것이 좋습니다. `install.sh` 스크립트는 이를 자동으로 처리합니다. +> Antigravity를 위해 수동 설치하는 경우, 호환성을 위해 `~/.gemini/antigravity/` 하위 디렉토리(`global_agents`, `global_skills`)에 복사하는 것이 좋습니다. `install.sh` 스크립트는 이를 자동으로 처리합니다. +> +> **참고:** 규칙은 `install.sh`를 통해 `~/.gemini/GEMINI.md`에 통합됩니다. 수동 설치 시: `cp everything-gemini-code/templates/GEMINI_GLOBAL.md ~/.gemini/GEMINI.md` ### 옵션 3: Gemini CLI 확장 프로그램으로 설치 (개발자 모드) @@ -165,7 +165,7 @@ everything-gemini-code/ ├── skills/ # 워크플로우 정의 (TDD, 패턴 등) ├── commands/ # Gemini CLI 명령어 (.toml) ├── workflows/ # Antigravity 워크플로우 (.md) -├── rules/ # 코딩 가이드라인 (TypeScript, Python, Go) +├── templates/ # GEMINI.md 규칙 템플릿 (Global, TS, Python, Go) ├── hooks/ # 자동화 트리거 (hooks.json) └── mcp-configs/ # MCP 서버 설정 ``` diff --git a/README.md b/README.md index 5380f0a..4ed869b 100644 --- a/README.md +++ b/README.md @@ -91,12 +91,12 @@ cp everything-gemini-code/workflows/*.md ~/.gemini/antigravity/global_workflows/ # Copy skills cp -r everything-gemini-code/skills/* ~/.gemini/skills/ -# Install rules (Required for both installation methods) -cp -r everything-gemini-code/rules/common/* ~/.gemini/rules/ ``` > **For Antigravity Users:** -> If you are manually installing for Antigravity, copying to `~/.gemini/antigravity/` subdirectories (`global_agents`, `global_skills`, `global_rules`) is recommended for full compatibility. The `install.sh` script handles this automatically. +> 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. +> +> **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` ```` @@ -113,7 +113,7 @@ cd everything-gemini-code gemini extensions link . ```` -> ⚠️ **Note:** Rules still need to be installed manually to `~/.gemini/rules/` or `~/.gemini/antigravity/global_rules/` as extensions do not automatically distribute them. +> ⚠️ **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` --- @@ -169,7 +169,7 @@ everything-gemini-code/ ├── skills/ # Workflow definitions (TDD, Patterns, etc.) ├── commands/ # Gemini CLI commands (.toml) ├── workflows/ # Antigravity workflows (.md) -├── rules/ # Coding guidelines (TypeScript, Python, Go) +├── templates/ # GEMINI.md rule templates (Global, TS, Python, Go) ├── hooks/ # Automation triggers (hooks.json) └── mcp-configs/ # MCP server configurations ``` diff --git a/README.zh-CN.md b/README.zh-CN.md index 10a38ae..bc5d9b6 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -37,11 +37,9 @@ cp everything-gemini-code/commands/*.md ~/.gemini/commands/ # 复制 Skills cp -r everything-gemini-code/skills/* ~/.gemini/skills/ -# 安装 Rules(两种安装方式均必需) -cp -r everything-gemini-code/rules/common/* ~/.gemini/rules/ ``` -> ⚠️ **注意:** Rules(规则)无法通过扩展自动分发,必须手动安装到 `~/.gemini/rules/` 目录。 +> ⚠️ **注意:** 规则通过 `install.sh` 生成到 `~/.gemini/GEMINI.md`。手动安装时:`cp everything-gemini-code/templates/GEMINI_GLOBAL.md ~/.gemini/GEMINI.md` ### 选项 1:卸载(推荐) @@ -112,7 +110,7 @@ everything-gemini-code/ ├── agents/ # 专用子智能体 (@planner, @architect 等) ├── skills/ # 工作流定义 (TDD, Patterns 等) ├── commands/ # 斜杠命令 (/plan, /tdd 等) -├── rules/ # 编码指南 (TypeScript, Python, Go) +├── templates/ # GEMINI.md 规则模板 (Global, TS, Python, Go) ├── hooks/ # 自动化触发器 (hooks.json) └── mcp-configs/ # MCP 服务器配置 ``` diff --git a/docs/ko-KR/README.md b/docs/ko-KR/README.md index a3f2448..7971484 100644 --- a/docs/ko-KR/README.md +++ b/docs/ko-KR/README.md @@ -151,11 +151,11 @@ everything-gemini-code/ │ ├── workflows/ # Antigravity 워크플로우 (.md) │ -├── rules/ # 코딩 가이드라인 -│ ├── common/ # 언어 무관 원칙 -│ ├── typescript/ # TypeScript/JavaScript 전용 -│ ├── python/ # Python 전용 -│ └── golang/ # Go 전용 +├── templates/ # GEMINI.md 규칙 템플릿 +│ ├── GEMINI_GLOBAL.md # 공통 규칙 +│ ├── GEMINI_TS.md # TypeScript/JavaScript 전용 +│ ├── GEMINI_PYTHON.md # Python 전용 +│ └── GEMINI_GO.md # Go 전용 │ ├── hooks/ # 자동화 트리거 (hooks.json) │ @@ -193,13 +193,14 @@ cp everything-gemini-code/commands/*.toml ~/.gemini/commands/ # 스킬 복사 cp -r everything-gemini-code/skills/* ~/.gemini/skills/ -# 룰 복사 (공통 + 언어별) -cp -r everything-gemini-code/rules/common/* ~/.gemini/rules/ -cp -r everything-gemini-code/rules/typescript/* ~/.gemini/rules/ # 사용하는 스택 선택 ``` +> **규칙 설치:** 규칙은 `install.sh`를 통해 `~/.gemini/GEMINI.md`에 통합됩니다. +> 수동 설치 시: `cp everything-gemini-code/templates/GEMINI_GLOBAL.md ~/.gemini/GEMINI.md` +> TypeScript 규칙 추가: `cat everything-gemini-code/templates/GEMINI_TS.md >> ~/.gemini/GEMINI.md` +> > **Antigravity 사용자:** -> Antigravity용으로 수동 설치 시 `~/.gemini/antigravity/` 하위 디렉토리(`global_agents`, `global_skills`, `global_rules`)에 복사하는 것을 권장합니다. `install.sh` 스크립트가 이를 자동으로 처리합니다. +> Antigravity용으로 수동 설치 시 `~/.gemini/antigravity/` 하위 디렉토리(`global_agents`, `global_skills`)에 복사하는 것을 권장합니다. `install.sh` 스크립트가 이를 자동으로 처리합니다. ---