用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/clowlove/Hermes-House --skill data-scraper命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Migrate Hermes Agent to a new server while keeping both instances running in parallel. Covers backup, SSH troubleshooting, skill/memory sync, and GitHub remote setup.
Backup, restore, and migrate Hermes Agent data across machines. Covers the local backup scripts, cron scheduling, retention policies, git remote management, shallow-clone migration, and cross-machine parallel deployment.
Modify PDF appearance without changing content/structure: change font colors, remove highlights, adjust styling. Preserves all text, layout, fonts, and embedded resources.
基于 SOC 职业分类
正在显示 SKILL.md
| name | data-scraper |
| description | Extract data from websites, APIs, and files. Supports structured extraction, pagination, and anti-bot bypass. |
| triggers | ["scrape website","爬虫","extract data","web scraping"] |
Extract data from websites, APIs, and files.
# Simple scrape
hermes scrape "https://example.com/products" \
--selector ".product-item" \
--fields name,price,image
# With pagination
hermes scrape "https://example.com/products" \
--selector ".product" \
--fields name,price \
--pages 10
hermes scrape-api "https://api.example.com/data" \
--headers "Authorization: Bearer TOKEN" \
--output data.json
# Parse CSV
hermes scrape file data.csv --format json
# Parse Excel
hermes scrape file report.xlsx --sheet "Sales"
# Parse PDF
hermes scrape file document.pdf --extract text
# scraper-config.yml
scraping:
delay: 1000 # ms between requests
retries: 3
timeout: 30
anti_bot:
rotate_user_agent: true
use_proxy: false
bypass_cloudflare: true
output:
format: json
encoding: utf-8
hermes scrape --selector ".product .title" --attr text
hermes scrape --selector "img.product" --attr src
hermes scrape-json --path "$.data[*].name" --file data.json
hermes scrape --xpath "//div[@class='product']/span" --file page.html