grok-cli-hurry-mode 1.0.43 → 1.0.46
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 +33 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## 1.0.
|
|
1
|
+
## 1.0.44 – Stability Release
|
|
2
2
|
|
|
3
3
|
This release restores the proven 1.0.31 baseline. Auto-version test.
|
|
4
4
|
- Fixes all Read/Update tool reliability issues
|
|
@@ -17,7 +17,38 @@ This release restores the proven 1.0.31 baseline. Auto-version test.
|
|
|
17
17
|
|
|
18
18
|
A conversational AI CLI tool powered by Grok with **Claude Code-level intelligence** and advanced tool capabilities.
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
```
|
|
21
|
+
@@@@@# %@@@@@
|
|
22
|
+
@@@@@# %@@@@@
|
|
23
|
+
@@@@@# %@@@@@
|
|
24
|
+
@@@@@ @@@@@
|
|
25
|
+
@@@@@ @@@@@
|
|
26
|
+
@@@@@ @@@@@
|
|
27
|
+
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
|
28
|
+
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
|
29
|
+
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
|
30
|
+
@@@@@@ @@@@@@@@@@@@@@@@ @@@@@@
|
|
31
|
+
@@@@@@@@@@@# @@@@@@@@@@@@@@ #@@@@@@@@@@@
|
|
32
|
+
@@@@@@@@@@@# @@@@@@@@@@@@@@ #@@@@@@@@@@@
|
|
33
|
+
@@@@@@@@@@@@ @@@@@@@@@@@@@@ @@@@@@@@@@@@
|
|
34
|
+
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
|
35
|
+
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
|
36
|
+
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
|
37
|
+
@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@
|
|
38
|
+
@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@
|
|
39
|
+
@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@
|
|
40
|
+
@@@@@ @@@@@@ @@@@@@ @@@@@+
|
|
41
|
+
@@@@@ @@@@@@ @@@@@@ @@@@@+
|
|
42
|
+
@@@@@ @@@@@@ @@@@@@ @@@@@+
|
|
43
|
+
@@@@@ @@@@@# #@@@@@ @@@@@+
|
|
44
|
+
|
|
45
|
+
@@@@@@@@@ @@@@@@@@@
|
|
46
|
+
@@@@@@@@@ @@@@@@@@@
|
|
47
|
+
@@@@@@@@ @@@@@@@@
|
|
48
|
+
@@@@@# #@@@@@
|
|
49
|
+
@@@@@# %@@@@@
|
|
50
|
+
@@@@@# %@@@@@
|
|
51
|
+
```
|
|
21
52
|
|
|
22
53
|
## 🔗 Quick Links
|
|
23
54
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "grok-cli-hurry-mode",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.46",
|
|
5
5
|
"description": "An open-source AI agent that brings the power of Grok directly into your terminal.",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"typecheck": "tsc --noEmit",
|
|
29
29
|
"install:bun": "bun install",
|
|
30
30
|
"preinstall": "echo '🤖 Installing Grok CLI...'",
|
|
31
|
-
"postinstall": "echo '✅ Grok CLI installed successfully!' && echo '🚀 Try: grok --help' && echo '💡
|
|
31
|
+
"postinstall": "echo '==================================================' && echo '✅ Grok CLI installed successfully!' && echo '==================================================' && echo '🚀 Try: grok --help' && echo '💡 If \"command not found\", add to PATH:' && node -e \"const p=process.platform;const isMac=p==='darwin';const isLinux=p==='linux';if(isMac||isLinux){const shell=isMac?'zshrc':'bashrc';console.log((isMac?'🍎 Mac':'🐧 Linux')+': echo \\'export PATH=\\\"$(npm config get prefix)/bin:$PATH\\\"\\' >> ~/.'+shell+' && source ~/.'+shell);}\" && echo '📖 Docs: https://github.com/hinetapora/grok-cli-hurry-mode#installation' && echo '🔑 Set API key: export GROK_API_KEY=your_key_here' && echo '==================================================' && echo '🔧 Auto-setup PATH? Press Enter to add (or Ctrl+C to skip)' && read -t 10 && node -e \"const fs=require('fs');const p=process.platform;const isMac=p==='darwin';const isLinux=p==='linux';if(isMac||isLinux){const shellFile=isMac?'.zshrc':'.bashrc';const rcPath=process.env.HOME+'/'+shellFile;const pathCmd='export PATH=\\\"$(npm config get prefix)/bin:$PATH\\\"';try{const content=fs.readFileSync(rcPath,'utf8');if(!content.includes(pathCmd)){fs.appendFileSync(rcPath,'\\n'+pathCmd+'\\n');console.log('✅ Added to ~/'+shellFile+' - restart terminal');}else{console.log('ℹ️ Already in ~/'+shellFile);}}catch(e){console.log('⚠️ Could not modify ~/'+shellFile+' - add manually');}}\" && echo '🔍 Verifying: ' && grok --version 2>/dev/null || echo '⚠️ grok not in PATH yet - follow above steps'",
|
|
32
32
|
"prepare": "husky install"
|
|
33
33
|
},
|
|
34
34
|
"lint-staged": {
|
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
"openai": "^5.10.1",
|
|
68
68
|
"react": "^18.3.1",
|
|
69
69
|
"ripgrep-node": "^1.0.0",
|
|
70
|
+
"terminal-image": "^4.0.0",
|
|
70
71
|
"tiktoken": "^1.0.21"
|
|
71
72
|
},
|
|
72
73
|
"devDependencies": {
|