UNPKG
gemini-cli-chat
Version:
latest (2.0.10)
2.0.10
2.0.9
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.0.0
Gemini AI CLI with markdown and colorful UX
gemini-cli-chat
/
postinstall.js
13 lines
(9 loc)
•
214 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env node
import
chalk
from
'chalk'
;
console
.
log
(
`
${chalk.green.bold(
'✅ Gemini CLI installed successfully!'
)}
Run it using:
${chalk.cyan(
'gemini'
)}
Need help?
${chalk.cyan(
'gemini --help'
)}
`
);