chops-sh 0.1.0 → 0.2.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.
- package/README.md +19 -2
- package/dist/index.js +1029 -112
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,5 +10,22 @@ npx --yes chops-sh add anthropics/skills@slides --yes
|
|
|
10
10
|
Installed skills are SHA-pinned under `~/.chops/store`, linked into detected
|
|
11
11
|
agent skill directories, and recorded in `~/.chops/chops.lock`.
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
Sign in without leaving the terminal (passwordless email code), then share
|
|
14
|
+
private skills with yourself or your team — encrypted at rest, never in the
|
|
15
|
+
public index:
|
|
16
|
+
|
|
17
|
+
```sh
|
|
18
|
+
npx --yes chops-sh auth start you@company.com
|
|
19
|
+
npx --yes chops-sh auth verify 123456
|
|
20
|
+
|
|
21
|
+
npx --yes chops-sh team create yourteam
|
|
22
|
+
npx --yes chops-sh team invite dana@company.com
|
|
23
|
+
npx --yes chops-sh publish ./skills/deploy --team yourteam
|
|
24
|
+
npx --yes chops-sh add @yourteam/deploy # teammates
|
|
25
|
+
npx --yes chops-sh publish ./skills/notes # private to you → @me/notes
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Commands: `find`, `add`, `list`, `remove`, `auth`, `team`, and `publish`. Add
|
|
29
|
+
`--json` for the stable agent-facing response contract. Credentials live in
|
|
30
|
+
`~/.chops/credentials.json` (0600); exit codes are machine-readable (42 =
|
|
31
|
+
needs a verified email, 44 = team policy, 45 = rate limited).
|