Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

tabstack-extractor标签栈提取器

Agent Skill

tabstack-extractor 用于处理浏览器自动化、网页检查和页面信息提取,适合在 OpenClaw 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

60,840

周安装

2,535

GitHub Stars

公开资料未说明

下载量

20,280
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tabstack-extractor(标签栈提取器)
来源仓库:https://github.com/noblepayne/tabstack-extractor
安装命令:
openclaw skills install tabstack-extractor
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install tabstack-extractor

简介

使用 Tabstack API 从网站提取结构化数据。当您需要抓取职位列表、新闻文章、产品页面或任何结构化 Web 内容时使用。提供基于 JSON 模式的提取和干净的 Markdown 转换。需要 TABSTACK_API_KEY 环境变量。

SKILL.md

name
tabstack-extractor
description
Extract structured data from websites using Tabstack API. Use when you need to scrape job listings, news articles, product pages, or any structured web content. Provides JSON schema-based extraction and clean markdown conversion. Requires TABSTACK_API_KEY environment variable.

Tabstack Extractor

Overview

This skill enables structured data extraction from websites using the Tabstack API. It's ideal for web scraping tasks where you need consistent, schema-based data extraction from job boards, news sites, product pages, or any structured content.

Quick Start

1. Install Babashka (if needed)

# Option A: From GitHub (recommended for sharing)
curl -s https://raw.githubusercontent.com/babashka/babashka/master/install | bash

# Option B: From Nix
nix-shell -p babashka

# Option C: From Homebrew
brew install borkdude/brew/babashka

2. Set up API Key

Option A: Environment variable (recommended)

export TABSTACK_API_KEY="your_api_key_here"

Option B: Configuration file

mkdir -p ~/.config/tabstack
echo '{:api-key "your_api_key_here"}' > ~/.config/tabstack/config.edn

Get an API key: Sign up at Tabstack Console

3. Test Connection

bb scripts/tabstack.clj test

4. Extract Markdown (Simple)

bb scripts/tabstack.clj markdown "https://example.com"

5. Extract JSON (Start Simple)

# Start with simple schema (fast, reliable)
bb scripts/tabstack.clj json "https://example.com" references/simple_article.json

# Try more complex schemas (may be slower)
bb scripts/tabstack.clj json "https://news.site" references/news_schema.json

6. Advanced Features

# Extract with retry logic (3 retries, 1s delay)
bb scripts/tabstack.clj json-retry "https://example.com" references/simple_article.json

# Extract with caching (24-hour cache)
bb scripts/tabstack.clj json-cache "https://example.com" references/simple_article.json

# Batch extract from URLs file
echo "https://example.com" > urls.txt
echo "https://example.org" >> urls.txt
bb scripts/tabstack.clj batch urls.txt references/simple_article.json

Core Capabilities

1. Markdown Extraction

Extract clean, readable markdown from any webpage. Useful for content analysis, summarization, or archiving.

When to use: When you need the textual content of a page without the HTML clutter.

Example use cases:

  • Extract article content for summarization
  • Archive webpage content
  • Analyze blog post content

2. JSON Schema Extraction

Extract structured data using JSON schemas. Define exactly what data you want and get it in a consistent format.

When to use: When scraping job listings, product pages, news articles, or any structured data.

Example use cases:

  • Scrape job listings from BuiltIn/LinkedIn
  • Extract product details from e-commerce sites
  • Gather news articles with consistent metadata

3. Schema Templates

Pre-built schemas for common scraping tasks. See references/ directory for templates.

Available schemas:

  • Job listing schema (see references/job_schema.json)
  • News article schema
  • Product page schema
  • Contact information schema

Workflow: Job Scraping Example

Follow this workflow to scrape job listings:

  1. Identify target sites - BuiltIn, LinkedIn, company career pages
  2. Choose or create schema - Use references/job_schema.json or customize
  3. Test extraction - Run a single page to verify schema works
  4. Scale up - Process multiple URLs
  5. Store results - Save to database or file

Example job schema:

{
  "type": "object",
  "properties": {
    "title": {"type": "string"},
    "company": {"type": "string"},
    "location": {"type": "string"},
    "description": {"type": "string"},
    "salary": {"type": "string"},
    "apply_url": {"type": "string"},
    "posted_date": {"type": "string"},
    "requirements": {"type": "array", "items": {"type": "string"}}
  }
}

Integration with Other Skills

Combine with Web Search

  1. Use web_search to find relevant URLs
  2. Use Tabstack to extract structured data from those URLs
  3. Store results in Datalevin (future skill)

Combine with Browser Automation

  1. Use browser tool to navigate complex sites
  2. Extract page URLs
  3. Use Tabstack for structured extraction

Error Handling

Common issues and solutions:

  1. Authentication failed - Check TABSTACK_API_KEY environment variable
  2. Invalid URL - Ensure URL is accessible and correct
  3. Schema mismatch - Adjust schema to match page structure
  4. Rate limiting - Add delays between requests

Resources

scripts/

  • tabstack.clj - Main API wrapper in Babashka (recommended, has retry logic, caching, batch processing)
  • tabstack_curl.sh - Bash/curl fallback (simple, no dependencies)
  • tabstack_api.py - Python API wrapper (requires requests module)

references/

  • job_schema.json - Template schema for job listings
  • api_reference.md - Tabstack API documentation

Best Practices

  1. Start small - Test with single pages before scaling
  2. Respect robots.txt - Check site scraping policies
  3. Add delays - Avoid overwhelming target sites
  4. Validate schemas - Test schemas on sample pages
  5. Handle errors gracefully - Implement retry logic for failed requests

Teaching Focus: How to Create Schemas

This skill is designed to teach agents how to use Tabstack API effectively. The key is learning to create appropriate JSON schemas for different websites.

Learning Path

  1. Start Simple - Use references/simple_article.json (4 basic fields)
  2. Test Extensively - Try schemas on multiple page types
  3. Iterate - Add fields based on what the page actually contains
  4. Optimize - Remove unnecessary fields for speed

See Schema Creation Guide for detailed instructions and examples.

Common Mistakes to Avoid

  • Over-complex schemas - Start with 2-3 fields, not 20
  • Missing fields - Don't require fields that don't exist on the page
  • No testing - Always test with example.com first, then target sites
  • Ignoring timeouts - Complex schemas take longer (45s timeout)

Babashka Advantages

Using Babashka for this skill provides:

  1. Single binary - Easy to share/install (GitHub releases, brew, nix)
  2. Fast startup - No JVM warmup, ~50ms startup time
  3. Built-in HTTP client - No external dependencies
  4. Clojure syntax - Familiar to you (Wes), expressive
  5. Retry logic & caching - Built into the skill
  6. Batch processing - Parallel extraction for multiple URLs

Example User Requests

For this skill to trigger:

  • "Scrape job listings from Docker careers page"
  • "Extract the main content from this article"
  • "Get structured product data from this e-commerce page"
  • "Pull all the news articles from this site"
  • "Extract contact information from this company page"
  • "Batch extract job listings from these 20 URLs"
  • "Get cached results for this page (avoid API calls)"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

91.96%
按下载量换算18,649

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills