kyawthiha-nextjs-agent-cli 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,6 +26,29 @@
|
|
|
26
26
|
- **Gemini API Key** - Get one from [Google AI Studio](https://aistudio.google.com/)
|
|
27
27
|
- **PostgreSQL** (optional) - Only if your project uses a database
|
|
28
28
|
|
|
29
|
+
### Search Tools (Recommended)
|
|
30
|
+
|
|
31
|
+
For enhanced code search capabilities, install these CLI tools:
|
|
32
|
+
|
|
33
|
+
| Tool | Description | Install Guide |
|
|
34
|
+
| ---- | ----------- | ------------- |
|
|
35
|
+
| **ripgrep (rg)** | Fast regex search | [Installation Guide](https://github.com/BurntSushi/ripgrep#installation) |
|
|
36
|
+
| **fd** | Fast file finder | [Installation Guide](https://github.com/sharkdp/fd#installation) |
|
|
37
|
+
|
|
38
|
+
**Quick Install:**
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
# Windows (winget)
|
|
42
|
+
winget install BurntSushi.ripgrep.MSVC
|
|
43
|
+
winget install sharkdp.fd
|
|
44
|
+
|
|
45
|
+
# macOS (Homebrew)
|
|
46
|
+
brew install ripgrep fd
|
|
47
|
+
|
|
48
|
+
# Ubuntu/Debian
|
|
49
|
+
sudo apt install ripgrep fd-find
|
|
50
|
+
```
|
|
51
|
+
|
|
29
52
|
---
|
|
30
53
|
|
|
31
54
|
## 🚀 Quick Start
|