rightbrain-cli-alpha 0.1.0-alpha → 0.1.0

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 (3) hide show
  1. package/README.md +8 -20
  2. package/dist/index.js +44 -3032
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -20,29 +20,17 @@ rightbrain login
20
20
 
21
21
  ### 2. Configuration File
22
22
 
23
- Create a `rightbrain.config.ts` file in your project root:
24
-
25
- ```typescript
26
- export default {
27
- orgId: process.env.RIGHTBRAIN_ORG_ID,
28
- projectId: process.env.RIGHTBRAIN_PROJECT_ID,
29
- apiKey: process.env.RIGHTBRAIN_API_KEY,
23
+ Create a `rightbrain.json` file in your project root:
24
+
25
+ ```json
26
+ {
27
+ "$schema": "https://app.rightbrain.ai/cli/schema.json",
28
+ "orgId": "${RB_ORG_ID}",
29
+ "projectId": "${RB_PROJECT_ID}",
30
+ "apiKey": "${RB_API_KEY}"
30
31
  }
31
32
  ```
32
33
 
33
- ## Development
34
-
35
- ```bash
36
- # Build
37
- pnpm build
38
-
39
- # Watch mode
40
- pnpm dev
41
-
42
- # Type check
43
- pnpm type-check
44
- ```
45
-
46
34
  ## License
47
35
 
48
36
  MIT