Skip to main content

Documentation Index

Fetch the complete documentation index at: https://aisa.one/docs/llms.txt

Use this file to discover all available pages before exploring further.

View on GitHub -> Clean web page extraction. Turn one or more public URLs into readable text with Tavily Extract through AIsa.

Install

aisa skills install tavily-extract

What can agents do with it?

Article extraction

Pull readable article text from a public URL.

Document review

Extract source text before analysis.

Citation prep

Keep source content attached to summaries.

Research cleanup

Remove page chrome and keep useful content.

Setup

This skill requires the AISA_API_KEY environment variable. When installed as a Claude plugin, the key is configured via the plugin’s userConfig.

Usage

Run the search client with the extract subcommand:
python3 ${CLAUDE_PLUGIN_ROOT}/skills/tavily-extract/scripts/search_client.py extract --urls "<comma-separated URLs>"

Arguments

ArgumentRequiredDefaultDescription
--urls / -uYesComma-separated list of URLs to extract content from

Examples

# Extract a single article
python3 ${CLAUDE_PLUGIN_ROOT}/skills/tavily-extract/scripts/search_client.py extract --urls "https://example.com/article"

# Extract multiple pages
python3 ${CLAUDE_PLUGIN_ROOT}/skills/tavily-extract/scripts/search_client.py extract --urls "https://example.com/page1,https://example.com/page2"

Output

For each URL, the script prints:
  • URL — The source URL
  • Content — Clean extracted text (up to 3000 characters per page)

When to Use

Use this skill when the user provides a URL and wants to read or analyze its content, or when you need to fetch the full text of an article found via search. This is the best tool for “read this page” or “summarize this URL” requests.

Get started

  1. Sign up at aisa.one (new accounts start with $2 free credit).
  2. Generate an API key from the console.
  3. Set your key and install the skill:
    export AISA_API_KEY="your-key"
    aisa skills install tavily-extract
    
  4. Start a new agent session so the runtime loads the updated skill instructions.

Tavily Search

Search the web before extracting sources.

AIsa Tavily Search

Combined search and extraction workflow.

Tavily Extract API

Endpoint reference for extraction.