@agentskillshub/cli 0.2.3 → 0.2.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.
- package/README.md +3 -5
- package/SKILL.md +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# AgentSkillsHub CLI
|
|
2
2
|
|
|
3
3
|
Search, audit, and install open-source AI agent skills & MCP servers from your terminal. Every result is **security-graded** and **quality-scored** by [AgentSkillsHub](https://agentskillshub.top).
|
|
4
4
|
|
|
@@ -8,7 +8,7 @@ npx @agentskillshub/cli search "scrape a website" --safe
|
|
|
8
8
|
|
|
9
9
|
## Why
|
|
10
10
|
|
|
11
|
-
Discovering a skill is easy. Knowing whether it's safe to run against your credentials is not.
|
|
11
|
+
Discovering a skill is easy. Knowing whether it's safe to run against your credentials is not. It puts the trust signal *before* the install:
|
|
12
12
|
|
|
13
13
|
```
|
|
14
14
|
$ npx @agentskillshub/cli search postgres --category mcp-server --limit 2
|
|
@@ -24,9 +24,7 @@ sgaunet/postgresql-mcp 5★ ⚪ UNAUDITED ~23.0k tok
|
|
|
24
24
|
|
|
25
25
|
## Commands
|
|
26
26
|
|
|
27
|
-
Run via `npx @agentskillshub/cli <command
|
|
28
|
-
`ash` shorthand — but `ash` is the Almquist shell on Alpine/BusyBox, so the `npx`
|
|
29
|
-
form is the recommended, collision-free way to invoke it.)
|
|
27
|
+
Run via `npx @agentskillshub/cli <command>`:
|
|
30
28
|
|
|
31
29
|
| | |
|
|
32
30
|
|---|---|
|
package/SKILL.md
CHANGED
|
@@ -17,22 +17,22 @@ The catalog is a static index downloaded once and cached locally (`~/.cache/agen
|
|
|
17
17
|
|
|
18
18
|
## How to use
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
Zero-dependency Node CLI (Node ≥ 18). Run it with `npx`:
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
23
|
# Search (local fuzzy ranking over name/desc/tags; quality + popularity tiebreak)
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
npx @agentskillshub/cli search "scrape a website" --safe --limit 5
|
|
25
|
+
npx @agentskillshub/cli search postgres --category mcp-server
|
|
26
26
|
# filters: --category <c> --platform <p> --min-stars <n> --safe --limit <n>
|
|
27
27
|
|
|
28
28
|
# Audit — free basic trust check (security grade + plain-English verdict)
|
|
29
|
-
|
|
29
|
+
npx @agentskillshub/cli audit owner/repo
|
|
30
30
|
|
|
31
31
|
# Install — install commands + a "check before you install" safety line
|
|
32
|
-
|
|
32
|
+
npx @agentskillshub/cli install owner/repo
|
|
33
33
|
|
|
34
34
|
# Force-refresh the cached index
|
|
35
|
-
|
|
35
|
+
npx @agentskillshub/cli update
|
|
36
36
|
```
|
|
37
37
|
|
|
38
38
|
Add `--json` to `search`, `audit`, or `install` for structured output to parse programmatically.
|
package/package.json
CHANGED