@agentskillshub/cli 0.2.2 → 0.2.3
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 +9 -5
- package/bin/ash.mjs +11 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ npx @agentskillshub/cli search "scrape a website" --safe
|
|
|
11
11
|
Discovering a skill is easy. Knowing whether it's safe to run against your credentials is not. `ash` puts the trust signal *before* the install:
|
|
12
12
|
|
|
13
13
|
```
|
|
14
|
-
$
|
|
14
|
+
$ npx @agentskillshub/cli search postgres --category mcp-server --limit 2
|
|
15
15
|
|
|
16
16
|
call518/MCP-PostgreSQL-Ops 150★ 🟢 SAFE
|
|
17
17
|
Give AI assistants full PostgreSQL DBA superpowers — 30+ tools…
|
|
@@ -24,12 +24,16 @@ sgaunet/postgresql-mcp 5★ ⚪ UNAUDITED ~23.0k tok
|
|
|
24
24
|
|
|
25
25
|
## Commands
|
|
26
26
|
|
|
27
|
+
Run via `npx @agentskillshub/cli <command>`. (A global `npm i -g` also exposes an
|
|
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.)
|
|
30
|
+
|
|
27
31
|
| | |
|
|
28
32
|
|---|---|
|
|
29
|
-
| `
|
|
30
|
-
| `
|
|
31
|
-
| `
|
|
32
|
-
| `
|
|
33
|
+
| `search <query> [filters]` | Find skills. Filters: `--category` `--platform` `--min-stars` `--safe` `--limit` |
|
|
34
|
+
| `audit <owner/repo>` | Free basic trust check: security grade + plain-English verdict |
|
|
35
|
+
| `install <owner/repo>` | Install commands + "check before you install" safety line |
|
|
36
|
+
| `update` | Force-refresh the cached index |
|
|
33
37
|
|
|
34
38
|
Add `--json` to any of `search` / `audit` / `install` for machine-readable output.
|
|
35
39
|
|
package/bin/ash.mjs
CHANGED
|
@@ -335,20 +335,20 @@ function fail(msg) {
|
|
|
335
335
|
process.exitCode = 1;
|
|
336
336
|
}
|
|
337
337
|
|
|
338
|
-
const
|
|
338
|
+
const RUN = "npx @agentskillshub/cli";
|
|
339
|
+
const HELP = `${bold("AgentSkillsHub CLI")} ${dim("· search · audit · install · ~20K skills")}
|
|
339
340
|
|
|
340
|
-
${bold("Usage")}
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
ash --help
|
|
341
|
+
${bold("Usage")} ${dim("(globally installed? `ash <command>` also works)")}
|
|
342
|
+
${RUN} search <query> [--category <c>] [--platform <p>] [--min-stars <n>] [--safe] [--limit <n>] [--json]
|
|
343
|
+
${RUN} audit <owner/repo> [--json]
|
|
344
|
+
${RUN} install <owner/repo> [--json]
|
|
345
|
+
${RUN} update ${dim("force-refresh the cached index")}
|
|
346
346
|
|
|
347
347
|
${bold("Examples")}
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
348
|
+
${RUN} search "scrape a website" --safe
|
|
349
|
+
${RUN} search postgres --category mcp-server --limit 5
|
|
350
|
+
${RUN} audit modelcontextprotocol/servers
|
|
351
|
+
${RUN} install owner/repo
|
|
352
352
|
|
|
353
353
|
${dim("Index is a static CDN file, downloaded once and cached at")} ${CACHE_DIR}
|
|
354
354
|
${dim("Refreshes every 8h. Zero backend load. Set NO_COLOR=1 to disable color.")}`;
|
package/package.json
CHANGED