grok-cli-hurry-mode 1.0.18 → 1.0.19

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 CHANGED
@@ -76,30 +76,35 @@ A conversational AI CLI tool powered by Grok with **Claude Code-level intelligen
76
76
  ### Prerequisites
77
77
  - Node.js 18+ (Node.js 20+ recommended)
78
78
 
79
- ### Quick Install
79
+ ### 🚀 Quick Install
80
+
81
+ **Recommended: Automated installer (handles all edge cases)**
80
82
  ```bash
81
- npm install -g grok-cli-hurry-mode
83
+ curl -fsSL https://raw.githubusercontent.com/hinetapora/grok-cli-hurry-mode/main/install.sh | bash
82
84
  ```
83
85
 
84
- ### Troubleshooting Installation Issues
85
-
86
- If you encounter `ENOTEMPTY` errors during installation:
87
-
86
+ **Alternative: Standard npm install**
88
87
  ```bash
89
- # Method 1: Force reinstall
90
- npm install -g grok-cli-hurry-mode --force
91
-
92
- # Method 2: Clean install (if Method 1 fails)
93
- npm uninstall -g grok-cli-hurry-mode 2>/dev/null || true
94
- npm cache clean --force
95
88
  npm install -g grok-cli-hurry-mode
89
+ ```
96
90
 
97
- # Method 3: Alternative package managers
91
+ **Alternative: Package managers**
92
+ ```bash
98
93
  # Using Yarn
99
94
  yarn global add grok-cli-hurry-mode
100
95
 
101
96
  # Using pnpm
102
97
  pnpm add -g grok-cli-hurry-mode
98
+
99
+ # Using Homebrew (coming soon)
100
+ brew install grok-cli-hurry-mode
101
+ ```
102
+
103
+ ### ⚡ One-liner with API key setup
104
+ ```bash
105
+ curl -fsSL https://raw.githubusercontent.com/hinetapora/grok-cli-hurry-mode/main/install.sh | bash && \
106
+ echo 'export GROK_API_KEY=your_api_key_here' >> ~/.bashrc && \
107
+ source ~/.bashrc
103
108
  ```
104
109
  - Grok API key from X.AI
105
110
  - (Optional, Recommended) Morph API key for Fast Apply editing
package/dist/index.js CHANGED
@@ -9130,7 +9130,7 @@ EOF`;
9130
9130
 
9131
9131
  // package.json
9132
9132
  var package_default = {
9133
- version: "1.0.18"};
9133
+ version: "1.0.19"};
9134
9134
 
9135
9135
  // src/utils/text-utils.ts
9136
9136
  function isWordBoundary(char) {