Skip to main content
Transform any topic into a comprehensive learning guide by automatically discovering, scraping, and synthesizing content from documentation, GitHub, StackOverflow, and blogs.

Quick Start

How It Works

1

Source Discovery

AI-powered search finds 8 relevant URLs:
  • 2 documentation sources
  • 2 GitHub repositories
  • 2 StackOverflow Q&As
  • 2 blog tutorials
2

Parallel Scraping

All 8 sources scraped simultaneously with type-specific extraction:
  • Docs → API references, examples
  • GitHub → Code patterns, implementations
  • StackOverflow → Problems, solutions
  • Blogs → Tutorials, explanations
3

AI Synthesis

Content combined into SKILL.md format:
  • Quick Start
  • Core Concepts
  • Essential Patterns
  • Common Pitfalls

Source Types

Agents

Source Finder

Tool: identify_sourcesDiscovers 8 high-quality URLs

Scraper

Tool: scrape_sourceExtracts content in parallel

Synthesizer

Model: GPT-4o-miniCreates SKILL.md output

Output Format

The generated SKILL-{topic}.md follows Anthropic’s format:
Get up and running in minutes with installation commands and basic examples.
Essential knowledge everyone needs to understand the topic.
Common usage patterns with working code examples.
Mistakes to avoid and how to fix them.

Configuration

string
required
The topic to generate a skill guide for.Examples: "react hooks", "kubernetes pods", "python decorators"
integer
default:"2"
Number of sources to find per type (docs, github, stackoverflow, blog).
integer
default:"4"
Maximum parallel scraping workers.

Requirements

For better search results, also set:
The recipe uses built-in tools from praisonaiagents:
  • search_web - Multi-provider search
  • web_crawl - Content extraction
No additional packages required.

Example Output

Running with topic="react hooks" produces:

Core Concepts

Hooks let you use state and other React features without writing a class…

Essential Patterns

useState Pattern

useEffect Pattern


Common Pitfalls

Don’t call hooks conditionally
Always call at top level