# superclaw **Repository Path**: simplecoder-1/superclaw ## Basic Information - **Project Name**: superclaw - **Description**: 用于爬虫的slills - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-22 - **Last Updated**: 2026-03-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SuperClaw An enhanced web crawler skill built on OpenClaw for Trae IDE. ## Description SuperClaw is a powerful web scraping skill that extracts structured data from websites efficiently. It provides advanced features like pagination handling, dynamic content support, and multiple data extraction patterns. ## Features - Multi-page crawling with automatic pagination - Structured data extraction (tables, lists, products) - JavaScript-rendered page support - Built-in rate limiting and error handling - JSON/CSV data export support ## Installation Copy the `superclaw` folder to your `.trae/skills/` directory: ``` .trae/skills/superclaw/SKILL.md ``` ## Usage See [SKILL.md](superclaw/SKILL.md) for detailed usage examples and documentation. ## Quick Start ```javascript // Navigate to target page await playwright_navigate({ url: "https://example.com" }) // Extract data const data = await playwright_evaluate({ script: `Array.from(document.querySelectorAll('.item')).map(item => ({ title: item.querySelector('.title')?.innerText, price: item.querySelector('.price')?.innerText }))` }) ``` ## License MIT