cerebras-cli 1.0.138 → 1.0.140
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 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,15 +1,42 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Cerebras CLI
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
An AI-powered coding assistant for your terminal, optimized for Cerebras inference.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
4
6
|
|
|
5
7
|
```bash
|
|
6
|
-
|
|
8
|
+
npm install -g cerebras-cli
|
|
7
9
|
```
|
|
8
10
|
|
|
9
|
-
|
|
11
|
+
## Run
|
|
10
12
|
|
|
11
13
|
```bash
|
|
12
|
-
|
|
14
|
+
cerebras-cli
|
|
13
15
|
```
|
|
14
16
|
|
|
15
|
-
|
|
17
|
+
## Get Your API Key
|
|
18
|
+
|
|
19
|
+
1. Go to [cloud.cerebras.ai](https://cloud.cerebras.ai)
|
|
20
|
+
2. Create an account and get your API key
|
|
21
|
+
3. Run `cerebras-cli` and follow the onboarding to connect
|
|
22
|
+
|
|
23
|
+
## Features
|
|
24
|
+
|
|
25
|
+
- ⚡ **Fastest inference** - Powered by Cerebras
|
|
26
|
+
- 🛠️ **Full coding agent** - Read, write, edit files, run commands
|
|
27
|
+
- 🎨 **Beautiful TUI** - Modern terminal interface with themes
|
|
28
|
+
- 🔌 **MCP Support** - Extend with Model Context Protocol servers
|
|
29
|
+
- 📚 **Skills** - On-demand loaded specialized knowledge
|
|
30
|
+
|
|
31
|
+
## Keyboard Shortcuts
|
|
32
|
+
|
|
33
|
+
| Key | Action |
|
|
34
|
+
|-----|--------|
|
|
35
|
+
| `Enter` | Send message |
|
|
36
|
+
| `Ctrl+C` | Cancel/Exit |
|
|
37
|
+
| `Ctrl+L` | Clear screen |
|
|
38
|
+
| `/` | Commands menu |
|
|
39
|
+
|
|
40
|
+
## License
|
|
41
|
+
|
|
42
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.140",
|
|
4
4
|
"name": "cerebras-cli",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"random": "echo 'Random script updated at $(date)'"
|
|
12
12
|
},
|
|
13
13
|
"bin": {
|
|
14
|
-
"
|
|
14
|
+
"cerebras-cli": "./bin/opencode"
|
|
15
15
|
},
|
|
16
16
|
"exports": {
|
|
17
17
|
"./*": "./src/*.ts"
|