cerebras-cli 1.0.158 → 1.0.159

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 +19 -0
  2. package/package.json +10 -3
package/README.md ADDED
@@ -0,0 +1,19 @@
1
+ # Cerebras Code CLI
2
+
3
+ The fastest AI coding assistant, powered by Cerebras inference.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install -g cerebras-cli
9
+ ```
10
+
11
+ ## Run
12
+
13
+ ```bash
14
+ cerebras-cli
15
+ ```
16
+
17
+ ## Get Your API Key
18
+
19
+ Get a free Cerebras API key at [cloud.cerebras.ai](https://cloud.cerebras.ai)
package/package.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
2
  "name": "cerebras-cli",
3
- "version": "1.0.158",
3
+ "version": "1.0.159",
4
4
  "description": "The fastest AI coding assistant, powered by Cerebras inference",
5
- "bin": { "cerebras-cli": "./bin/cerebras-cli.cjs" },
6
- "optionalDependencies": { "cerebras-cli-darwin-arm64": "1.0.158" },
5
+ "bin": {
6
+ "cerebras-cli": "./bin/cerebras-cli.cjs"
7
+ },
8
+ "scripts": {
9
+ "postinstall": "node ./postinstall.mjs || true"
10
+ },
11
+ "optionalDependencies": {
12
+ "cerebras-cli-darwin-arm64": "1.0.159"
13
+ },
7
14
  "license": "MIT"
8
15
  }