Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
npx claudepluginhub zytedata/claude-skills-testAdd an empty web-poet page object to a Scrapy project
Extract all available fields with values from a detail page
Analyze an HTML page to produce field extraction instructions for code generation
Generate web-poet page object code from per-page extraction analyses
Generate web-poet page object code from an extraction spec
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Intelligent draw.io diagramming plugin with AI-powered diagram generation, multi-platform embedding (GitHub, Confluence, Azure DevOps, Notion, Teams, Harness), conditional formatting, live data binding, and MCP server integration for programmatic diagram creation and management.
Manus-style persistent markdown files for planning, progress tracking, and knowledge storage. Works with Claude Code, Kiro, Clawd CLI, Gemini CLI, Cursor, Continue, Hermes, and 17+ AI coding assistants. Now with Arabic, German, Spanish, and Chinese (Simplified & Traditional) support.
A growing collection of Claude-compatible academic workflow bundles for producing work at Nature-journal standard. Covers scientific figures (nature-figure), manuscript prose polishing (nature-polishing), manuscript drafting and methods writing (nature-writing), reviewer-style pre-submission assessment (nature-reviewer), citation retrieval and export (nature-citation), data availability statements and FAIR metadata (nature-data), paper-to-PPTX presentation conversion (nature-paper2ppt), literature search via MCP (nature-academic-search), paper reading and annotation (nature-reader), and peer-review response drafting (nature-response). Future releases planned: statistical reporting, cover letters, and review articles. Rules are derived from primary sources, including published Nature papers, journal author guidelines, and structured writing curricula.
Complete creative writing suite with 10 specialized agents covering the full writing process: research gathering, character development, story architecture, world-building, dialogue coaching, editing/review, outlining, content strategy, believability auditing, and prose style/voice analysis. Includes genre-specific guides, templates, and quality checklists.
Payload Development plugin - covers collections, fields, hooks, access control, plugins, and database adapters.
Zyte Web Data for Claude Code
From a plain-English prompt to a working Scrapy spider.
claude plugin marketplace add zyte-ai/claude-skills
claude plugin install zyte-web-data@zyte-ai
If Claude Code is already running, reload plugins in the active session:
/reload-plugins
See also: Discovering and installing plugins
This is Zyte's official Claude Code plugin that generates production-ready Scrapy spiders with web-poet page objects from a plain-English prompt. Give it a URL and describe what you want to extract. It handles site exploration, schema discovery, code generation, and smoke testing: no boilerplate, no manual selector hunting.
The plugin explores the target site, discovers available fields, and presents a schema for your approval before generating a single line of code. After you confirm the schema, it creates a Scrapy project with all dependencies configured, generates web-poet page objects and test fixtures, wires up the spider, and runs a smoke test to verify that extraction is working before handing the project back to you.
Optionally, use /scrape-scrapy-cloud to deploy directly to Scrapy Cloud for scheduled runs, job history, and monitoring. A free tier is available.
The /scrape skill works on any website with repeating structured content: detail pages linked from a listing or category page. Examples from the skill:
The /scrape skill orchestrates five stages automatically:
1. Decide which fields to extract → /scrape-define
2. Analyze the website → /scrape-spec
3. Create the Scrapy project → /scrape-ensure-project
4. Generate the extraction code → /scrape-codegen
5. Generate the spider → /scrape-create-spider
Each stage feeds directly into the next. When the pipeline completes, you have a runnable spider and a passing test suite:
uv run scrapy crawl <spider_name>
uv run pytest fixtures/
| Skill | Description |
|---|---|
scrape | End-to-end web scraping workflow — from URL to working spider with web-poet page objects |
/scrape)| Skill | Description |
|---|---|
scrape-define | Quick schema definition: explore one detail page, discover fields, fast approval loop |
scrape-spec | Explore diverse pages and validate the extraction spec: downloads pages, compares variants, optional browser review |
scrape-explore-site | Explore a website to find and save diverse pages (start, list, detail) with classified links |
scrape-analyze-page | Extract all available fields with values from a detail page |
scrape-ensure-project | Ensure a Scrapy project exists with scrapy-poet and Zyte API support |
scrape-codegen | Generate web-poet page object code from an extraction spec |
scrape-codegen-analyze | Analyze an HTML page to produce field extraction instructions for code generation |
scrape-codegen-generate | Generate web-poet page object code from per-page extraction analyses |
scrape-create-spider | Generate a Scrapy spider that wires page objects together |
| Skill | Description |
|---|---|
scrape-add-page-object | Add an empty web-poet page object to a Scrapy project |
scrape-review-schema | Generate an HTML review page for schema and extracted data verification |
| Skill | Description |
|---|---|
scrape-scrapy-cloud | Deploy projects, schedule spiders, list/stop jobs, and view items or logs on Scrapy Cloud |
scrape-zyte-login | Set up your Zyte account and credentials |
uv — used to create and manage the Scrapy projectProject dependencies (scrapy, scrapy-poet, scrapy-zyte-api, web-poet, extruct, price-parser, pytest) are installed automatically by the skills.
Any scraping prompt triggers the skill automatically. For example:
/scrape https://books.toscrape.com/ products