Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计通过

infoseekinfoseek 搜索

Agent Skill

infoseek 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,671

周安装

107

GitHub Stars

公开资料未说明

下载量

865
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install infoseek

简介

infoseek 用于对个人、组织或产品进行全面网络信息搜索与归档。

  • 支持多搜索引擎(如百度、Tavily)并行检索,覆盖深层网络资源。
  • 通过 clawhub 安装后,可根据关键词生成结构化搜索结果摘要。
  • 使用前需确保具备合法访问权限并遵守各平台爬虫政策。
  • 建议设置合理的搜索深度和结果去重策略以提高效率。

SKILL.md

name
infoseek-en
description
>
Triggers
infoseek, deep search, information gathering, background check, media monitoring,
metadata
openclaw
requires
bins
[python3]
primaryEnv
OPENCLAW_WORKSPACE

InfoSeek - Deep Web Search & Archival

Overview

InfoSeek performs comprehensive web research on any subject (person, organization, product) across multiple search engines, deduplicates results, extracts clean content, and archives everything with full metadata in organized folders.

Prerequisites

Before executing a search task, verify these skills are installed:

import os
from pathlib import Path

workspace = os.environ.get('OPENCLAW_WORKSPACE')
skills_dir = Path(workspace) / 'skills'

required = ['baidu-search', 'tavily', 'Multi-Search-Engine', 'agent-browser-clawdbot-0.1.0']
missing = [s for s in required if not (skills_dir / s).exists()]

If any are missing, instruct the user to install them:

openclaw skills install baidu-search
openclaw skills install tavily-search
openclaw skills install multi-search-engine

Workflow

Phase 0: Task Setup

  1. Confirm the search subject — name, organization, or product
  2. Collect optional context — background info, time range, output format (default: .md), special requirements
  3. Check dependencies — run the prerequisite check above
  4. Create archive folder — run:
   python scripts/infoseek_helper.py create-folder "<subject_name>"

Phase 1: Multi-Engine Deep Search

Execute searches across all available engines. Each engine runs independently.

1.1 Baidu Search (100+ pages)

Use the baidu-search skill:

  • Query: "<subject> <background_context>"
  • Depth: 100+ pages
  • Record: URL, title, website name, publish date for each result

1.2 Tavily Search

Use tavily_search tool:

query: "<subject> <background_context>"
search_depth: advanced
max_results: 50

1.3 Multi-Search-Engine

Use the multi-search-engine skill across multiple engines simultaneously.

1.4 Browser Deep-Crawl

For discovered URLs, use the browser tool to:

  1. Open each page
  2. Extract body content (filter ads, sidebars, comments)
  3. Extract metadata: title, author, editor, date, website name

Phase 2: Deduplication

Run URL deduplication on all collected results:

python scripts/infoseek_helper.py deduplicate "<temp_results_file>"

The script normalizes URLs (remove www, tracking params, unify http/https, remove trailing slashes) and checks against the SQLite database to skip duplicates.

Phase 3: Content Extraction & Storage

For each unique URL:

  1. Extract content using the browser tool — get title, body, metadata
  2. Filter content — remove ads, sidebars, navigation, comments, related articles, footers
  3. Generate filename:
   python scripts/infoseek_helper.py generate-filename \
     --date "<YYYYMMDD>" --title "<title>" --website "<site>" --format "<ext>"

Format: YYYYMMDD-title-website.ext

  1. Save the file:
   python scripts/infoseek_helper.py save-content \
     --folder "<archive_path>" --filename "<name>" --url "<url>" \
     --website "<site>" --source "<source>" --date "<date>" \
     --title "<title>" --author "<author>" --editor "<editor>" \
     --content "<body>" --task "<subject>"
  1. Record in database:
   python scripts/infoseek_helper.py add-url \
     --url "<normalized_url>" --task "<subject>" --filename "<name>"

Phase 4: Task Report

Output a summary when complete:

InfoSeek Task Report
====================
Subject: {query}
Engines used: {engines}
Total found: {total} | Duplicates skipped: {dupes} | New archived: {new}
Files saved: {count}
Location: {path}
Database records: {db_total}

File Naming

Format: YYYYMMDD-title-website.ext

  • Date: 8 digits (YYYYMMDD) from page metadata
  • Title: page title (strip special chars <>:"/\|?*)
  • Website: domain or media name
  • Extension: md (default), json, txt, csv, xlsx, html, docx

If filename exists, append 8-char hash to prevent overwrites.

Output Formats

All formats include full metadata (URL, website, source, date, title, author, editor) plus body content.

  • .md — Markdown with metadata table
  • .json — Structured JSON with metadata object and content field
  • .txt — Plain text with header metadata
  • .csv — One row per article, all metadata as columns
  • .xlsx — Excel spreadsheet with metadata columns
  • .html — Styled HTML page with metadata table
  • .docx — Word document with metadata paragraph

Storage Structure

{workspace}/
├── infoseek-archives/
│   ├── <subject_1>/
│   │   ├── 20260404-title-website.md
│   │   └── ...
│   └── <subject_2>/
└── infoseek/
    ├── infoseek.db          # SQLite dedup database
    ├── infoseek.log         # Operation log
    └── backups/

Deletion Policy

Strict data retention — no permanent deletes without confirmation.

OperationConfirmationMethod
Bulk folder deleteRequiredMove to recycle bin
Single file deleteRequiredMove to recycle bin
Dedup skipAutomaticSkip only, no delete
Database cleanupRequiredMark as deleted

Process:

  1. List files to delete (name, URL, date)
  2. Ask user: "Confirm deletion? Files go to recycle bin and can be recovered."
  3. On confirmation, move to recycle bin (Windows: PowerShell, Mac/Linux: system trash)
  4. Update database, log the deletion, confirm to user

Never:

  • Delete without user consent
  • Permanently delete (bypass recycle bin)
  • Delete without logging
  • Delete without updating database

Configuration

Override defaults in task instructions:

  • Search depth: default 100 pages, specify e.g. "150 pages"
  • Time range: default unlimited, specify e.g. "2020-01-01 to 2026-04-07"
  • Output format: default md, specify e.g. "xlsx"
  • Storage path: default {workspace}/infoseek-archives/, specify custom path

Troubleshooting

ProblemSolution
Missing search skillopenclaw skills install <name>
Date extraction failsCheck page metadata; use 00000000 for unknown
Encoding errorsEnsure UTF-8; on Windows enable Unicode UTF-8 in region settings
Database corruptionpython scripts/infoseek_helper.py restore-backup

Security & Privacy

  • All searches use public channels only
  • No personal data stored — only search results
  • SQLite database is local, never uploaded
  • Deletions use system recycle bin (recoverable)
  • All operations logged and auditable
  • No telemetry, no external data transmission

Version History

VersionDateNotes
2.0.02026-04-07Full rewrite: SQLite dedup, URL normalization, HTML parsing, multi-engine integration
1.0.02026-04-06Initial version (deprecated)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.45%
按下载量换算748

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills