chops-sh 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.
- package/README.md +14 -0
- package/dist/index.js +11422 -0
- package/package.json +30 -0
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# chops
|
|
2
|
+
|
|
3
|
+
Find and install agent skills from the chops registry.
|
|
4
|
+
|
|
5
|
+
```sh
|
|
6
|
+
npx --yes chops-sh find "convert markdown to slides"
|
|
7
|
+
npx --yes chops-sh add anthropics/skills@slides --yes
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
Installed skills are SHA-pinned under `~/.chops/store`, linked into detected
|
|
11
|
+
agent skill directories, and recorded in `~/.chops/chops.lock`.
|
|
12
|
+
|
|
13
|
+
Commands: `find`, `add`, `list`, and `remove`. Add `--json` for the stable
|
|
14
|
+
agent-facing response contract.
|