@org-dashboard/cli 0.0.1-beta.3
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 +37 -0
- package/dist/index.js +4943 -0
- package/package.json +35 -0
package/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# OrgDashboard CLI
|
|
2
|
+
|
|
3
|
+
Use OrgDashboard from the terminal with a Bun-native CLI.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
Requires Bun `>=1.3.0`.
|
|
8
|
+
|
|
9
|
+
Run directly:
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
bunx @org-dashboard/cli@beta help
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Install globally:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
npm install -g @org-dashboard/cli@beta
|
|
19
|
+
org help
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Login
|
|
23
|
+
|
|
24
|
+
```sh
|
|
25
|
+
org login
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
This opens the browser, signs you into OrgDashboard, and stores a local CLI token.
|
|
29
|
+
|
|
30
|
+
## Common Commands
|
|
31
|
+
|
|
32
|
+
```sh
|
|
33
|
+
org help
|
|
34
|
+
org tools
|
|
35
|
+
org tools slack
|
|
36
|
+
org tools slack messages fetch --json '{"channel":"C123","limit":10}'
|
|
37
|
+
```
|