DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Infoseek — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
I

infoseek

Infoseek

End-to-end intelligent content collection and research workflow: multi-source sniffing → four-dimensional scoring gate → Level 4 deep crawling → keyed fact-slot contradiction detection (GA11) → network boundary gate (GA12) → cross-source fusion → structured Markdown report. DeepSeek Harness (dsh) sk

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:GYINT/infoseek#980f1a43f74a376ed662648fcc4f997331323770
READMECompatibilityVersions

Description

End-to-end intelligent content collection and research workflow: multi-source sniffing → four-dimensional scoring gate → Level 4 deep crawling → keyed fact-slot contradiction detection (GA11) → network boundary gate (GA12) → cross-source fusion → structured Markdown report. DeepSeek Harness (dsh) skill bundle.

Compatibility and provenance

Infoseek is published as infoseek and currently resolves to version 2.0.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/20/2026

Versions

2.1.0stable
9/18/2026
2.0.0stable
9/16/2026

Related plugins

Loading related plugins…

Latest
2.0.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
35
Last push
9/18/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

Related plugins

More verified plugins in search-research.

Weknora@wxg-prc-cpg/dsh-weknoraWeKnora knowledge retrieval tools for DeepSeek Harness (dsh): semantic search, document reading and RAG/agent answers over your own knowledge bases.Anysearch Dsh@anysearch/anysearch-dshAnySearch web search and fetch providers plus advanced tools for DeepSeek HarnessResearch Reportdsh-research-reportVerifiable research-report engine for DeepSeek Harness: a content-addressed evidence ledger (claim 閳?snapshot binding, tamper-evident) plus versioned sealed reports where every claim carries a verification verdict and the manifest hash seals the directoryIndustry Researchdsh-industry-researchIndustry and company research domain pack for DeepSeek Harness: methodology skills, an industry-chain structure model (industry_map), public-source policy/news tracking over ctx.web (industry_track), company scan cards (company_scan), and auditable resear

README

Infoseek

端到端内容智能采集与调研工作流。v1.4.1 发布版。


5 秒看懂

from infoseek_core_v2 import streaming_research

# 流式研究:lite 模式 7 步 yield,秒级完成
async for partial in streaming_research("AI", sources, lite=True):
    print(partial["step"], "...")  # 7 步 yield
# MCP server(15 规范工具:2 研究核心 + 11 异步 + 2 Key 管理)
python scripts/infoseek_mcp_server.py

🎉 v1.4.1 发布亮点

能力说明
🧭 搜索引擎全生命周期健康状态机 / 配额追踪 / 认证粘滞 + 新鲜度自愈(配额重置、冷却恢复、API 漂移检测)+ CLI engine-status/reconcile/probe
🎯 搜索召回增强query 别名扩展 / 跨引擎多样性轮询(防单源垄断)/ 自适应相关性门槛 / 动态层权重
🕸️ 4 级抓取L1 静态 → L2 浏览器渲染 → L3 凭证辅助(KeyManager 注入,仅内存)→ L4 多媒体 chunk(whisper 可选降级)
🔑 Key 管理归一化 Key 管理(多后端 / 熔断 / 多 key 池 / 配额 / keyring / CLI 16 子命令)
⚡ perf 10k 基准10k 源近线性扩展(评分 139s / 冲突 89s / research 97s)
✅ 回归测试25 套件全绿 + 质量基线 26/26 all_ok

快速上手

1. 安装 / 升级

pip install -r requirements.txt            # 核心 + 文本分析 + 可选 LLM
pip install -r requirements-extra.txt      # playwright(L2/L3 浏览器抓取,可选)
# 完整依赖说明见 references/external-deps.md

2. Python SDK

from infoseek_core_v2 import (
    research,           # 同步(兼容入口)
    async_research,     # 异步(推荐)
    streaming_research, # 流式(推荐目标)
)

res = research("AI", sources, lite=True)
async for partial in streaming_research("AI", sources, lite=True):
    pass  # partial['step'] ∈ {score_complete, wikidata_complete, ...}

3. MCP 集成

项目提供 .mcp.json(双服务器配置,可直接被 Claude/Codex 等客户端加载):

{
  "mcpServers": {
    "infoseek-search": {
      "command": "${INFOSEEK_ROOT}/scripts/infoseek_mcp_server.py",
      "args": ["--transport", "stdio"],
      "env": {
        "INFOSEEK_ROOT": "${INFOSEEK_ROOT}",
        "INFOSEEK_DB": "${HOME}/.infoseek/infoseek_db.json",
        "INFOSEEK_ARCHIVE": "${HOME}/infoseek-archives"
      }
    }
  }
}

💡 Windows 环境请将 command 改为 python3 + args: ["脚本路径", "--transport", "stdio"]。

工具列表(15 规范 + 12 兼容并存):

  • 研究核心 2 个:research_v3 / research_stream
  • 异步工具 11 个:search_anchors_async / fetch_content_async / save_archive_async / check_dedup_async / dedup_stats_async / fuse_analysis_async / cross_subject_analysis_async / summarize_content_async / conflict_detection_async / score_source_async / score_contradiction_async
  • Key 管理 2 个:manage_keys(list/stat/rotate/revoke,脱敏)/ key_usage(用量成本报表)
  • 兼容并存期 12 个:11 个同步工具 + research(附 deprecated 标记)

文档导航

文档用途
SKILL.mdSkill 完整定义(概念/能力/触发词)
RELEASE_NOTES.md版本发布说明
requirements.txt运行时依赖清单
references/external-deps.md外部依赖清单 + 作用 + 降级路径
references/api-keys.md外部 API Key 清单 + 效益 + 获取
references/ROADMAP.md历史脉络 · 待办 · 前景方向
tests/测试套件(25 标准 + deep,run_tests.py 聚合)

ℹ️ 冷启动说明:运行时状态(claims.json、entity_aliases.json、pending_entities.json、anchor_db.json、engine_state.json 等)首跑为空占位,运行后随调研逐步积累。这些文件不写入技能源码目录,落在运行时数据目录(默认 ~/.infoseek/,可用 INFOSEEK_DATA_DIR 覆盖),技能更新不丢数据。详见 core/state_dir.py。


版本路线

版本状态备注
v1.4.1🟢 当前发布版能力里程碑:引擎生命周期 / 召回增强 / 4 级抓取 / Key 管理 / perf 10k
v1.0.1✅ 历史审计 G1–G13 + ABC 能力增强 + 引擎生命周期 P0–P3
v1.0.0✅ 历史工具面收敛 + 搜索引擎降级链重写
后续🟡 待办见 references/ROADMAP.md

测试矩阵

⚠️ 用例数为各套件自报(PASS 计数)。运行入口:python tests/run_tests.py(脚本风格,勿用 pytest)。

套件用例类别
test_infoseek_v231.py10回归
test_infoseek_v240.py15回归
test_boundary_v240.py12能力边界
test_compat_v240.py5兼容性
test_correctness_v240.py18正确性
test_reliability_v240.py11可靠性
test_security_v240.py5安全
test_stability_v240.py9稳定性
test_e2e_scenarios_v240.py12E2E 实战
test_streaming_v300.py6流式
test_search_engines.py16搜索链
test_tools_surface.py11工具面
test_async_tools.py11async 包装
test_domain_orchestrator_v200.py13领域编排
test_v174_jaccard.py3Jaccard 兼容
test_qcm_bridge_v101.py10QCM 协同
test_key_manager_v101.py29Key 管理
test_engine_lifecycle_v101.py40引擎生命周期
test_freshness_cron_v101.py23新鲜度 cron
test_recall_enhance_v101.py16召回增强
test_fetch_levels_v101.py264 级抓取
test_deep_v101.py22深度(单独运行)

环境差异说明:test_stability_v240.py 在 POSIX 环境含内存维度(ru_maxrss);Windows 下自动跳过内存判定,不误报 FAIL。


项目结构

infoseek/
├── SKILL.md            # Skill 定义(yfm + 文档)
├── manifest.yaml       # 平台 manifest
├── RELEASE_NOTES.md   # 版本发布说明
├── README.md           # 本文件
├── core/               # 核心库(22 功能模块;运行时状态经 state_dir 落 ~/.infoseek)
│   ├── conflict_v3.py / contradiction_scorer.py
│   ├── entity_*.py     # graph/heat/profile/trajectory/tracker/aliases
│   ├── wikidata_sync.py / freshness_cron.py / claim_store.py
│   ├── key_manager.py / llm_router.py / ner.py / trust_sources.py
│   └── state_dir.py
├── scripts/            # 适配层 + MCP server
│   ├── infoseek_core_v2.py       # 核心 API(research/async/streaming)
│   ├── infoseek_mcp_server.py    # MCP server 门面(15 规范工具)
│   ├── mcp_tools_*.py            # 工具模块(search/archive/analysis/keys/async/common/qcm)
│   ├── infoseek_pipeline.py      # 搜索降级链 + 召回增强
│   ├── engine_lifecycle.py       # 搜索引擎全生命周期
│   ├── infoseek_keys_cli.py      # keys CLI(16 子命令)
│   └── ...
├── references/         # 契约 + 配置 + 依赖/Key/路线图
├── domains/            # 领域配置(tech/market/finance/policy/competitor)
│   ├── *.yaml          # 领域 profile
│   └── templates.yaml  # 报告模板(块标量合并)
├── tests/              # 测试套件(25 标准 + deep)
└── dist/               # 质量基线 + perf 基准 + 生态构建产物

贡献与反馈

  • Bug 报告:附 infoseek --version + 最小复现
  • 性能问题:附 dist/quality_baseline.json 对比
  • 功能请求:附用例 + 期望输出
  • 路线图:见 references/ROADMAP.md

v1.4.1 | 能力里程碑:引擎生命周期 / 召回增强 / 4 级抓取 / Key 管理 | 多生态(ima/Claude/Codex/Dify/Coze)| MIT License