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.
Files changed (2) hide show
  1. package/README.md +33 -6
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,15 +1,42 @@
1
- # js
1
+ # Cerebras CLI
2
2
 
3
- To install dependencies:
3
+ An AI-powered coding assistant for your terminal, optimized for Cerebras inference.
4
+
5
+ ## Install
4
6
 
5
7
  ```bash
6
- bun install
8
+ npm install -g cerebras-cli
7
9
  ```
8
10
 
9
- To run:
11
+ ## Run
10
12
 
11
13
  ```bash
12
- bun run index.ts
14
+ cerebras-cli
13
15
  ```
14
16
 
15
- This project was created using `bun init` in bun v1.2.12. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.
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.138",
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
- "opencode": "./bin/opencode"
14
+ "cerebras-cli": "./bin/opencode"
15
15
  },
16
16
  "exports": {
17
17
  "./*": "./src/*.ts"