Skip to content

Commit 5249bd6

Browse files
catlog22claude
andcommitted
docs: fix Windows installation commands for ripgrep and jq
- Corrected ripgrep winget command from incorrect package ID to simplified `winget install ripgrep` - Simplified jq winget command to `winget install jq` - Added multiple Windows installation options (WinGet, Chocolatey, Scoop, manual) - Enhanced formatting with platform-specific sections - Added verification commands for both tools - Improved user experience with clearer instructions 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 2b52eae commit 5249bd6

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

INSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ While CCW works with Claude alone, installing these tools provides enhanced anal
151151
152152
| Tool | Purpose | Installation |
153153
|------|---------|--------------|
154-
| **ripgrep (rg)** | Fast code search | `brew install ripgrep` (macOS), `apt install ripgrep` (Ubuntu), `winget install ripgrep` (Windows) |
155-
| **jq** | JSON processing | `brew install jq` (macOS), `apt install jq` (Ubuntu), `winget install jq` (Windows) |
154+
| **ripgrep (rg)** | Fast code search | **macOS**: `brew install ripgrep`<br>**Linux**: `apt install ripgrep` (Ubuntu) / `dnf install ripgrep` (Fedora)<br>**Windows**: `winget install ripgrep` / `choco install ripgrep` / `scoop install ripgrep`<br>**Verify**: `rg --version` |
155+
| **jq** | JSON processing | **macOS**: `brew install jq`<br>**Linux**: `apt install jq` (Ubuntu) / `dnf install jq` (Fedora)<br>**Windows**: `winget install jq` / `choco install jq` / `scoop install jq`<br>**Verify**: `jq --version` |
156156

157157
#### External AI Tools
158158

INSTALL_CN.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,13 +175,21 @@ cd Dmsflow
175175
这些工具增强了文件搜索和数据处理能力。
176176

177177
- **`ripgrep` (rg)**: 一款高速代码搜索工具。
178-
- **Windows**: `winget install BurntSushi.Ripper.MSVC``choco install ripgrep`
178+
- **Windows**:
179+
- **WinGet**: `winget install ripgrep` (推荐,自动选择 MSVC 版本)
180+
- **Chocolatey**: `choco install ripgrep`
181+
- **Scoop**: `scoop install ripgrep`
182+
- **手动下载**: 从 [GitHub Releases](https://github.com/BurntSushi/ripgrep/releases) 下载预编译二进制文件
179183
- **macOS**: `brew install ripgrep`
180184
- **Linux**: `sudo apt-get install ripgrep` (Debian/Ubuntu) 或 `sudo dnf install ripgrep` (Fedora)
181185
- **验证**: `rg --version`
182186

183187
- **`jq`**: 一款命令行 JSON 处理器。
184-
- **Windows**: `winget install jqlang.jq``choco install jq`
188+
- **Windows**:
189+
- **WinGet**: `winget install jq` (推荐)
190+
- **Chocolatey**: `choco install jq`
191+
- **Scoop**: `scoop install jq`
192+
- **手动下载**: 从 [GitHub Releases](https://github.com/jqlang/jq/releases) 下载 `jq-windows-amd64.exe` 并重命名为 `jq.exe`
185193
- **macOS**: `brew install jq`
186194
- **Linux**: `sudo apt-get install jq` (Debian/Ubuntu) 或 `sudo dnf install jq` (Fedora)
187195
- **验证**: `jq --version`

0 commit comments

Comments
 (0)