@sift-wiki/cli 0.1.1 → 0.1.4

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 +25 -4
  2. package/dist/bin/sift.js +1508 -250
  3. package/package.json +11 -9
package/README.md CHANGED
@@ -6,15 +6,36 @@ The intended public install path is npm:
6
6
  npm install -g @sift-wiki/cli
7
7
  ```
8
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:
9
+ The package is live on the public npm registry and installs the `sift` command.
10
+ This private monorepo owns CLI source and package verification. Public npm
11
+ publishes are cut from the `goodnight000/sift-cli` release mirror so provenance
12
+ can point at a public GitHub source repository.
13
+
14
+ Repo maintainers can verify package changes before promoting a release artifact
15
+ with:
13
16
 
14
17
  ```bash
15
18
  pnpm --filter @sift-wiki/cli pack:verify
16
19
  ```
17
20
 
21
+ For one-off use without a global install:
22
+
23
+ ```bash
24
+ npx -y @sift-wiki/cli@latest auth status --json
25
+ npm exec --yes --package @sift-wiki/cli@latest -- sift auth status --json
26
+ ```
27
+
28
+ The CLI bundles its own agent setup skill. An agent can install it before any
29
+ other setup (this is the entry point of the local-agent onboarding prompt):
30
+
31
+ ```bash
32
+ npx -y @sift-wiki/cli@latest skill install # writes .claude/skills/sift-setup/SKILL.md
33
+ sift skill print sift-cli # or print it to stdout
34
+ sift skill list # list bundled skills
35
+ ```
36
+
37
+ `sift skill` commands are local and need no auth.
38
+
18
39
  Then authenticate and check the installed command:
19
40
 
20
41
  ```bash