Skip to content

Commit e632337

Browse files
committed
feat(skills): add mrscraper-cli workspace skill
Made-with: Cursor
1 parent 2013855 commit e632337

1 file changed

Lines changed: 52 additions & 0 deletions

File tree

skills/mrscraper-cli/SKILL.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
name: mrscraper-cli
3+
description: Official MrScraper CLI for terminal scraping, AI extraction jobs, and polling results outside OpenClaw's built-in tools.
4+
homepage: https://www.npmjs.com/package/@mrscraper/cli
5+
metadata:
6+
{
7+
"openclaw":
8+
{
9+
"emoji": "🕷️",
10+
"requires": { "bins": ["mrscraper"] },
11+
"install":
12+
[
13+
{
14+
"id": "node",
15+
"kind": "node",
16+
"package": "@mrscraper/cli",
17+
"bins": ["mrscraper"],
18+
"label": "Install @mrscraper/cli (global npm)",
19+
},
20+
],
21+
},
22+
}
23+
---
24+
25+
# MrScraper CLI
26+
27+
Use the `mrscraper` command for scripted or agent-driven flows that mirror the
28+
[MrScraper](https://app.mrscraper.com) dashboard from the terminal. OpenClaw's
29+
bundled **MrScraper plugin** exposes related capabilities as agent tools; this
30+
skill covers the standalone CLI when you want the same platform from your shell.
31+
32+
## Install
33+
34+
```bash
35+
npm install -g @mrscraper/cli
36+
```
37+
38+
Or run without a global install: `npx --yes @mrscraper/cli --help`
39+
40+
## Auth
41+
42+
- Interactive: `mrscraper login`
43+
- Non-interactive: `mrscraper login --api-key "$MRSCRAPER_API_KEY"`
44+
- Environment: `MRSCRAPER_API_KEY` or `MRSCRAPER_API_TOKEN` (see upstream docs)
45+
46+
## Common commands
47+
48+
- `mrscraper scrape "<url>"` — HTML render, or add `--prompt` / `--agent` for AI mode
49+
- `mrscraper results` / `mrscraper result --id <uuid>` — inspect job output
50+
- `mrscraper --help` — full reference
51+
52+
Package and changelog: https://www.npmjs.com/package/@mrscraper/cli

0 commit comments

Comments
 (0)