/byted-byteplus-infoquest-search
AI-optimized web search, image search and content extraction via BytePlus InfoQuest API. Use this skill when you need to gather concise and up-to-date information from the web, find images, or extract clean content from specific URLs.
$ npx -y skills add bytedance/agentkit-samples --skill byted-byteplus-infoquest-search --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/byted-byteplus-infoquest-search
Context preview
The summary Claude sees to decide when to auto-load this skill.
AI-optimized web search, image search and content extraction via BytePlus InfoQuest API. Use this skill when you need to gather concise and up-to-date information from the web, find images, or extract clean content from specific URLs.
SKILL.md
byted-byteplus-infoquest-search.SKILL.mdname: byted-byteplus-infoquest-search
description: AI-optimized web search, image search and content extraction via BytePlus InfoQuest API. Use this skill when you need to gather concise and up-to-date information from the web, find images, or extract clean content from specific URLs.
Byted InfoQuest
AI-optimized web search, image search and content extraction using BytePlus InfoQuest API. Returns concise, relevant results with time filtering, site-specific search, and image search capabilities.
> **Tip**: InfoQuest is currently not available in Mainland China regions.
Environment Variables
Before using this skill, ensure the following environment variable are set:
- `INFOQUEST_API_KEY`: API key for the web search, image search and content extraction service
Web Search
python3 scripts/search.py "query"
python3 scripts/search.py "query" -d 7
python3 scripts/search.py "query" -s github.com
Image Search
python3 scripts/search.py "query" -i
python3 scripts/search.py "query" -i -z l
python3 scripts/search.py "query" -i -s unsplash.com -d 30
Options
- `-d, --days <number>`: Search within last N days (default: all time)
- `-s, --site <domain>`: Search within specific site (e.g., `github.com`, `unsplash.com`)
- `-i, --image`: Perform image search (default: web search)
- `-z, --image-size <size>`: Image size filter: `l` (large), `m` (medium), `i` (icon)
Extract content from URL
python3 scripts/extract.py "https://example.com/article"
Examples
Recent News Search
# Search for AI news from last 3 days
python3 scripts/search.py "artificial intelligence news" -d 3
Site-Specific Research
# Search for Python projects on GitHub
python3 scripts/search.py "Python machine learning" -s github.com
Image Search Examples
# Search for cat images
python3 scripts/search.py "cat" -i
# Search for large landscape images
python3 scripts/search.py "landscape" -i -z l
# Search for icons from specific site
python3 scripts/search.py "logo" -i -z i -s github.com
# Search for recent images
python3 scripts/search.py "sunset" -i -d 7
Content Extraction
# Extract content from a single article
python3 scripts/extract.py "https://example.com/article"
Notes
API Access
- **API Key**: Get from https://console.byteplus.com/infoquest/infoquests
- **Documentation**: https://docs.byteplus.com/en/docs/InfoQuest/What_is_Info_Quest
- **About**: InfoQuest is AI-optimized intelligent search and crawling toolset independently developed by BytePlus
Search Features
- **Time Filtering**: Use `-d` for searches within last N days (e.g., `-d 7`)
- **Site Filtering**: Use `-s` for site-specific searches (e.g., `-s github.com`)
- **Image Search**: Use `-i` for image search, with optional size filtering (`-z`)
- **Image Size Options**: `l` (large), `m` (medium), `i` (icon)
Image Search Usage
Image search returns URLs to images that can be used as reference for image generation. Each result includes:
- `title`: Image title or description
- `image_url`: Direct URL to the image
**Usage hint**: Use the `image_url` values as reference images in image generation. Download them first if needed.
Quick Setup
1. **Set API key:**
export INFOQUEST_API_KEY=<REPLACE_WITH_YOUR_KEY>
2. **Install required Python packages:**
pip install requests
3. **Test the setup:**
# Test web search
python3 scripts/search.py "test search"
# Test image search
python3 scripts/search.py "test" -i
Error Handling
The API returns error messages starting with `"Error:"` for:
- Authentication failures
- Network timeouts
- Empty responses
- Invalid response formats
- Invalid image size parameters (must be 'l', 'm', or 'i')
Differences from Node.js Version
- **Python 3.6+** required
- **requests** library used instead of fetch
- Simplified argument parsing using argparse
- Same functionality and API endpoints
Read more
name: byted-byteplus-infoquest-search description: AI-optimized web search, image search and content extraction via BytePlus InfoQuest API. Use this skill when you need to gather concise and up-to-date information from the web, find images, or extract clean content from specific URLs.
Byted InfoQuest
AI-optimized web search, image search and content extraction using BytePlus InfoQuest API. Returns concise, relevant results with time filtering, site-specific search, and image search capabilities.
> **Tip**: InfoQuest is currently not available in Mainland China regions.
Environment Variables
Before using this skill, ensure the following environment variable are set:
- `INFOQUEST_API_KEY`: API key for the web search, image search and content extraction service
Web Search
python3 scripts/search.py "query" python3 scripts/search.py "query" -d 7 python3 scripts/search.py "query" -s github.com
Image Search
python3 scripts/search.py "query" -i python3 scripts/search.py "query" -i -z l python3 scripts/search.py "query" -i -s unsplash.com -d 30
Options
- `-d, --days <number>`: Search within last N days (default: all time)
- `-s, --site <domain>`: Search within specific site (e.g., `github.com`, `unsplash.com`)
- `-i, --image`: Perform image search (default: web search)
- `-z, --image-size <size>`: Image size filter: `l` (large), `m` (medium), `i` (icon)
Extract content from URL
python3 scripts/extract.py "https://example.com/article"
Examples
Recent News Search
# Search for AI news from last 3 days python3 scripts/search.py "artificial intelligence news" -d 3
Site-Specific Research
# Search for Python projects on GitHub python3 scripts/search.py "Python machine learning" -s github.com
Image Search Examples
# Search for cat images python3 scripts/search.py "cat" -i # Search for large landscape images python3 scripts/search.py "landscape" -i -z l # Search for icons from specific site python3 scripts/search.py "logo" -i -z i -s github.com # Search for recent images python3 scripts/search.py "sunset" -i -d 7
Content Extraction
# Extract content from a single article python3 scripts/extract.py "https://example.com/article"
Notes
API Access
- **API Key**: Get from https://console.byteplus.com/infoquest/infoquests
- **Documentation**: https://docs.byteplus.com/en/docs/InfoQuest/What_is_Info_Quest
- **About**: InfoQuest is AI-optimized intelligent search and crawling toolset independently developed by BytePlus
Search Features
- **Time Filtering**: Use `-d` for searches within last N days (e.g., `-d 7`)
- **Site Filtering**: Use `-s` for site-specific searches (e.g., `-s github.com`)
- **Image Search**: Use `-i` for image search, with optional size filtering (`-z`)
- **Image Size Options**: `l` (large), `m` (medium), `i` (icon)
Image Search Usage
Image search returns URLs to images that can be used as reference for image generation. Each result includes:
- `title`: Image title or description
- `image_url`: Direct URL to the image
**Usage hint**: Use the `image_url` values as reference images in image generation. Download them first if needed.
Quick Setup
1. **Set API key:**
export INFOQUEST_API_KEY=<REPLACE_WITH_YOUR_KEY>
2. **Install required Python packages:**
pip install requests
3. **Test the setup:**
# Test web search python3 scripts/search.py "test search" # Test image search python3 scripts/search.py "test" -i
Error Handling
The API returns error messages starting with `"Error:"` for:
- Authentication failures
- Network timeouts
- Empty responses
- Invalid response formats
- Invalid image size parameters (must be 'l', 'm', or 'i')
Differences from Node.js Version
- **Python 3.6+** required
- **requests** library used instead of fetch
- Simplified argument parsing using argparse
- Same functionality and API endpoints
欢迎来到 AgentKit 代码工坊(Samples)仓库! AgentKit 是火山引擎推出的企业级 AI Agent 开发平台,为开发者提供完整的 Agent 构建、部署和运维解决方案。平台通过标准化的开发工具链和云原生基础设施,显著降低复杂智能体应用的开发部署门槛。 本代码库包含了一系列示例和教程,帮助您理解、实现和集成 AgentKit 的各项功能到您的应用中。
Other skills on agentkit-samples.
- /code-optimization
Optimize code performance through iterative improvements (max 2 rounds). Benchmark execution time and memory usage, compare against baseline implementations, and generate detailed optimization reports. Supports C++, Python, Java, Rust, and other languages.
Open skill - /image-video-gen
根据文字描述生成视频,一个生成图片和视频的工作流技能。依赖 skills: byted-web-search, image-generate, video-generate。注意:此 workflow 没有执行脚本,只是一个描述性的文档。
Open skill - /skills-management
Manage AgentKit skills, SkillHub/skillhub, skill centers, and skill spaces. Use this skill whenever the user has a management intent for AgentKit skills, skill中心, skill 空间, skill space, or skill hub, including listing, inspecting, downloading, fetching, uploading, publishing,
Open skill - /tos-file-access
Upload files or directories to TOS-compatible object storage for Volcano Engine or BytePlus and download files from URLs. Use this skill when (1) Upload Agent-generated files or directories for sharing, (2) Download files from URLs before Agent processing.
Open skill - /veadk-go-skills
根据用户的功能需求,完成与 VeADK-Go 相关的功能; 包括:直接根据需求生成 Agent;将Enio Agent转换为VeADK-Go Agent。
Open skill - /veadk-skills
根据用户的功能需求,完成与 VeADK 相关的功能。
Open skill

