用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/zeenie-ai/OpenCompany --skill crawlee-scraper-skill命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to generate well-branded interfaces and assets for OpenCompany (opencompany.sh), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Read, search, and write raw local data (files, CSV, JSON, PDF, HTML, XLSX, images) across the workspace and operator-mounted folders. Use when the user asks about local files, documents, spreadsheets, logs, or data on disk.
Understand images (describe content, answer questions about them, extract text/OCR) via a vision model. Use when the user asks what an image, screenshot, chart, scan, or photo contains.
基于 SOC 职业分类
正在显示 SKILL.md
| name | crawlee-scraper-skill |
| description | Read and extract content from any web page URL. |
| allowed-tools | crawlee_scraper |
| metadata | {"author":"opencompany","version":"1.0","category":"web"} |
web_reader IMMEDIATELY with crawlerType: "beautifulsoup". Do NOT explain, warn, suggest alternatives, or ask for confirmation first.crawlerType: "playwright".| Field | Type | Required | Default | Description |
|---|---|---|---|---|
| url | string | Yes | URL to read | |
| crawlerType | string | No | beautifulsoup | beautifulsoup (fast) or playwright (JS pages) |
| mode | string | No | single | single or crawl (follow links) |
| cssSelector | string | No | CSS selector for specific content | |
| maxPages | int | No | 10 | Max pages in crawl mode |
| outputFormat | string | No | text | text, html, or markdown |
| useProxy | bool | No | false | Route through proxy |
Read a page:
{"url": "https://example.com", "crawlerType": "beautifulsoup"}
Read a JS-rendered page:
{"url": "https://app.example.com", "crawlerType": "playwright"}
Crawl a site:
{"url": "https://docs.example.com", "mode": "crawl", "maxPages": 20, "outputFormat": "markdown"}
Extract specific content:
{"url": "https://blog.example.com", "cssSelector": "article .content"}