@sift-wiki/cli 0.1.1
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 +30 -0
- package/dist/bin/sift.js +3497 -0
- package/package.json +29 -0
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Sift CLI
|
|
2
|
+
|
|
3
|
+
The intended public install path is npm:
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm install -g @sift-wiki/cli
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
Current release caveat: do not claim live `npm install -g @sift-wiki/cli` proof until
|
|
10
|
+
npm trusted publishing is configured, a matching `cli-v<version>` tag has
|
|
11
|
+
published the package, and a post-publish global install smoke has passed. Repo
|
|
12
|
+
verification before that is:
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
pnpm --filter @sift-wiki/cli pack:verify
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Then authenticate and check the installed command:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
sift login
|
|
22
|
+
sift doctor
|
|
23
|
+
sift ask "what changed this week?"
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
The CLI is a hosted thin client. `sift login` is the normal setup path and opens
|
|
27
|
+
the existing browser login flow.
|
|
28
|
+
|
|
29
|
+
For repo-local install details, troubleshooting, and advanced CI/headless
|
|
30
|
+
env-token auth, see `docs/cli/install.md`.
|