Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

swain-searchswain 搜索

Agent Skill

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

总安装

2,491

周安装

107

GitHub Stars

2

下载量

873
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/cristoslc/swain --skill swain-search

简介

swain-search 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前已有较完整的功能说明,可直接用于相关搜索场景。

SKILL.md

swain-search

Collect, normalize, and cache source materials into reusable troves that swain-design artifacts can reference.

Mode detection

SignalMode
No trove exists for the topic, or user says "research X" / "gather sources"Create — new trove
Trove exists and user provides new sources or says "add to" / "extend"Extend — add sources to existing trove
Trove exists and user says "refresh" or sources are past TTLRefresh — re-fetch stale sources
User asks "what troves do we have" or "find sources about X"Discover — search existing troves by tag

Prior art check

Before creating a new trove or running web searches, scan existing troves for relevant content. This avoids duplicating research and surfaces connections to prior work.

Phase 1 — Literal keyword match

Search for the source name, URL fragments, and author name:

# Search trove manifests by tag
grep -rl "<keyword>" docs/troves/*/manifest.yaml 2>/dev/null

# Search trove source content
grep -rl "<keyword>" docs/troves/*/sources/**/*.md 2>/dev/null

# Search trove syntheses
grep -rl "<keyword>" docs/troves/*/synthesis.md 2>/dev/null

Phase 2 — Semantic topic match

After fetching the source and understanding what it's about, extract 3-5 topic keywords from the source's *content* (not just its name or URL). Then search existing troves by topic:

# Search trove tags for topic keywords
grep -l "<topic-keyword-1>\|<topic-keyword-2>\|<topic-keyword-3>" docs/troves/*/manifest.yaml 2>/dev/null

# Search synthesis summaries for topic keywords
grep -l "<topic-keyword-1>\|<topic-keyword-2>\|<topic-keyword-3>" docs/troves/*/synthesis.md 2>/dev/null

Topic keywords should describe what the source *is about*, not what it's *called*. For example, a repo named "Cog" that implements a memory system for Claude Code should generate topic keywords like agent-memory, memory-architecture, claude-code, persistent-memory — not cog or marciopuga.

If the source has not been fetched yet (URL-only invocation), use whatever topic information is available from the URL or title and defer full topic matching until after the source is fetched.

Decision gate

Before proceeding to Create or Extend mode, output a visible routing decision:

Prior art check: Phase 1 found [N matches / no matches]. Phase 2 found [N matches / no matches]: [trove-id (tags: x, y),...]. Decision: Extending [trove-id] / Creating new trove [slug] because [reason].

This makes the trove routing decision auditable. If any trove matches on 2+ topic keywords, default to Extend mode unless the topic is genuinely distinct (adjacent but different subject matter).

Action on matches

If existing troves contain relevant sources:

  1. Report what was found — show the trove ID, matching source titles, and relevant excerpts
  2. Suggest extend over create — if an existing trove covers the same topic, extend it rather than creating a parallel trove
  3. Cross-link — if the topic is adjacent but distinct, create a new trove but note the related trove in synthesis.md

This step runs in all modes (Create, Extend, Discover) and before any web searches. Existing trove content is always checked first.

Snapshot evidence gate (SPEC-220)

Before a remote source can be treated as collected evidence, the run must produce a raw snapshot and a metadata ledger entry in .agents/search-snapshots/metadata.jsonl.

Required flow for remote sources:

  1. Export/download the raw snapshot first:

- bash skills/swain-search/scripts/export-snapshot.sh --url "<source-url>" --out-dir ".agents/search-snapshots/raw"

  1. Normalize the downloaded file using writing-skills or skill-creator (never summary-only browser notes).
  2. Log metadata:

- bash skills/swain-search/scripts/log-snapshot-metadata.sh --source-url "<source-url>" --export-mode "<mode>" --raw-path "<raw-path>" --normalized-path "<normalized-path>" --normalization-skill "<writing-skills|skill-creator>"

  1. Verify before publication:

- bash skills/swain-search/scripts/verify-snapshot-evidence.sh --source-url "<source-url>"

If verification fails, mark the source unverified, do not publish it downstream, and report the warning to the operator.

Create mode

Build a new trove from scratch.

Step 1 — Gather inputs

Ask the user (or infer from context) for:

  1. Trove ID — a slug for the topic (e.g., websocket-vs-sse). Suggest one if the context is clear.
  2. Tags — keywords for discovery (e.g., real-time, websocket, sse)
  3. Sources — any combination of:

- Web search queries ("search for WebSocket vs SSE comparisons") - URLs (web pages, forum threads, docs) - Video/audio URLs - Local file paths

  1. Freshness TTL overrides — optional, defaults are fine for most troves

If invoked from swain-design (e.g., spike entering Active), the artifact context provides the topic, tags, and sometimes initial sources.

Step 2 — Collect and normalize

For each source, use the appropriate capability. Read references/normalization-formats.md for the exact markdown structure per source type.

Web search queries:

  1. Use a web search capability to find relevant results
  2. Select the top 3-5 most relevant results
  3. For each: fetch the page, normalize to markdown per the web page format
  4. If no web search capability is available, tell the user and skip

Web page URLs:

  1. Fetch the page using a browser or page-fetching capability
  2. Strip boilerplate (nav, ads, sidebars, cookie banners)
  3. Normalize to markdown per the web page format
  4. If fetch fails, record the URL in manifest with a failed: true flag and move on

Google Docs / Drive-like documents:

  1. Export raw content first (required):

- bash skills/swain-search/scripts/export-snapshot.sh --url "<source-url>" --out-dir ".agents/search-snapshots/raw"

  1. Prefer API export modes (google-doc-export, google-slides-export, google-drive-download).
  2. If API export fails, use a browser helper fallback only when available.
  3. Normalize the exported file with writing-skills or skill-creator.
  4. Log metadata in .agents/search-snapshots/metadata.jsonl.
  5. Verify with verify-snapshot-evidence.sh before including the source in trove outputs.

Paywall proxy fallback:

After fetching a web page, check if a paywall proxy is available for the URL's domain:

  1. Run scripts/resolve-proxy.sh <url>

- Exit 1: no proxy configured — use the direct fetch content as-is - Exit 0: outputs PROXY:<name>:<proxy-url> and SIGNAL:<text> lines

  1. If exit 0, check the fetched content for each SIGNAL text (case-sensitive literal match)
  2. If any signal matches (or the article body is under ~200 words):

- Log: "Paywall detected for <url> — trying proxy fallback" - Try each PROXY URL in order, fetching via the same page-fetching capability used for web pages - First proxy that returns substantive content (more than the truncated original) wins - Set proxy-used: <name> and notes: "Full article retrieved via <name> proxy" in the manifest entry

  1. If no signals match: use the direct fetch content as-is (no proxy needed)
  2. If all proxies fail: keep the original truncated content, set notes: "Paywalled; proxies exhausted — content from direct fetch only"

The registry lives at references/paywall-proxies.yaml. Add new domains or proxies there — no skill file changes needed.

Video/audio URLs:

  1. Use a media transcription capability to get the transcript
  2. Normalize to markdown per the media format (timestamps, speaker labels, key points)
  3. If no transcription capability is available, tell the user and skip — or accept a pre-made transcript

Local files:

  1. Use a document conversion capability (PDF, DOCX, etc.) or read directly if already markdown
  2. Normalize per the document format using writing-skills or skill-creator
  3. For markdown files: add frontmatter only, preserve content

Forum threads / discussions:

  1. Fetch and normalize per the forum format (chronological, author-attributed)
  2. Flatten nested threads to chronological order with reply-to context

Repositories:

  1. Clone or read the repository contents
  2. Mirror the original directory tree under sources/<source-id>/
  3. Default: mirror the full tree. For large repositories (thousands of files), ingest selectively and set selective: true in the manifest entry
  4. Populate the highlights array with paths to the most important files (relative to the source-id directory)

Documentation sites:

  1. Crawl or fetch the documentation site
  2. Mirror the section hierarchy under sources/<source-id>/
  3. Default: mirror the full site. For large sites, ingest selectively and set selective: true
  4. Populate the highlights array with paths to the most important pages
  5. Preserve internal link structure where possible

Each normalized source gets a slug-based source ID and lives in a directory-per-source layout:

  • Flat sources (web, forum, media, document, local): sources/<source-id>/<source-id>.md
  • Hierarchical sources (repository, documentation-site): sources/<source-id>/ with the original tree mirrored inside

Source ID generation:

  • Derive the source ID as a slug from the source title or URL (e.g., mdn-websocket-api, strangeloop-2025-realtime)
  • When a slug collides with an existing source ID: append __word1-word2 using two random words from references/wordlist.txt
  • If the wordlist is missing, append __ followed by 4 hex characters (e.g., __a3f8) as a fallback

Step 3 — Generate manifest

Create manifest.yaml following the schema in references/manifest-schema.md. Include:

  • Trove metadata (id, created date, tags)
  • Default freshness TTL per source type
  • One entry per source with provenance (URL/path, fetch date, content hash, type)

Compute content hashes as bare hex SHA-256 digests (no prefix) of the normalized markdown content:

shasum -a 256 sources/mdn-websocket-api/mdn-websocket-api.md | cut -d' ' -f1

Step 4 — Generate synthesis

Create synthesis.md — a structured distillation of key findings across all sources.

Structure the synthesis by theme, not by source. Group related findings together, cite sources by ID, and surface:

  • Key findings — what the sources collectively say about the topic
  • Points of agreement — where sources converge
  • Points of disagreement — where sources conflict or present alternatives
  • Gaps — what the sources don't cover that might matter

Keep it concise. The synthesis is a starting point, not a comprehensive report — the user or artifact author will refine it.

Step 5 — Commit and stamp

Use the dual-commit pattern (same as swain-design lifecycle stamps) to give the trove a reachable commit hash.

Before Commit A — append a history entry to manifest.yaml with a -- placeholder for the commit hash:

history:
  - event: created
    date: 2026-03-09
    commit: "--"
    sources: 3

Commit A — commit the trove content:

git add docs/troves/<trove-id>/
git commit -m "research(<trove-id>): create trove with N sources"
TROVE_HASH=$(git rev-parse HEAD)

Commit B — back-fill the commit hash into the history entry, then update the referencing artifact's frontmatter (if one exists):

# Replace "--" with the real hash in the history entry
# Update artifact frontmatter: trove: <trove-id>@<TROVE_HASH>
git add docs/troves/<trove-id>/manifest.yaml
git add docs/<artifact-type>/<phase>/<artifact-dir>/   # if artifact exists
git commit -m "docs(<trove-id>): stamp history hash ${TROVE_HASH:0:7}"

If no referencing artifact exists yet (standalone research), Commit B still stamps the history entry — report the hash so it can be referenced later.

Push — after Commit B, push to origin/trunk so the trove is immediately available to other agents and sessions:

git push origin trunk

Step 6 — Report

Tell the user what was created:

Trove <trove-id> created with N sources — committed as <TROVE_HASH:0:7>. - docs/troves/<trove-id>/manifest.yaml — provenance and metadata - docs/troves/<trove-id>/sources/ — N normalized source files - docs/troves/<trove-id>/synthesis.md — thematic distillation Reference from artifacts with: trove: <trove-id>@<TROVE_HASH:0:7>

Extend mode

Add new sources to an existing trove.

  1. Read the existing manifest.yaml
  2. Collect and normalize new sources (same as Create step 2)
  3. Assign slug-based source IDs to new sources (following the same ID generation rules)
  4. Append new entries to manifest.yaml
  5. Update refreshed date
  6. Regenerate synthesis.md incorporating all sources (old + new)
  7. Append a history entry with event: extended and commit: "--" placeholder
  8. Commit and stamp (same dual-commit pattern as Create step 5):

- Commit A: git commit -m "research(<trove-id>): extend with N new sources" - Capture TROVE_HASH=$(git rev-parse HEAD) - Commit B: back-fill hash in history entry, update referencing artifact frontmatter (if artifact exists) - Push: git push origin trunk

  1. Report what was added, including the new commit hash

Refresh mode

Re-fetch stale sources and update changed content.

  1. Read manifest.yaml
  2. For each source, check if fetched date + freshness-ttl has elapsed
  3. For stale sources:

- Re-fetch the raw content - Re-normalize to markdown - Compute new content hash - If hash changed: replace the source file, update manifest entry - If hash unchanged: update only fetched date

  1. Update refreshed date in manifest
  2. If any content changed, regenerate synthesis.md
  3. Append a history entry with event: refreshed, sources-changed: M, and commit: "--" placeholder
  4. Commit and stamp (same dual-commit pattern as Create step 5):

- Commit A: git commit -m "research(<trove-id>): refresh N sources (M changed)" - Capture TROVE_HASH=$(git rev-parse HEAD) - Commit B: back-fill hash in history entry, update referencing artifact(s) frontmatter — check referenced-by in manifest for all dependents - Push: git push origin trunk

  1. Report: "Refreshed N sources. M had changed content, K were unchanged. New hash: <TROVE_HASH:0:7>."

For sources with freshness-ttl: never, skip them during refresh.

Discover mode

Help the user find existing troves relevant to their topic.

  1. Scan docs/troves/*/manifest.yaml for all troves
  2. Match against the user's query by:

- Tag match — trove tags contain query keywords - Title match — trove ID slug contains query keywords

  1. For each match, show: trove ID, tags, source count, last refreshed date, referenced-by list
  2. If no matches, suggest creating a new trove

Graceful degradation

The skill references capabilities generically. When a capability isn't available:

CapabilityFallback
Web searchSkip search-based sources. Tell user: "No web search capability available — provide URLs directly or add a search MCP."
Browser / page fetcherTry basic URL fetch. If that fails: "Can't fetch this URL — paste the content or provide a local file."
Snapshot export for remote docsIf export fails and no helper exists: mark source unverified, do not publish downstream, report exact URL and failure mode.
Media transcription"No transcription capability available — provide a pre-made transcript file, or add a media conversion tool."
Document conversion"Can't convert this file type — provide a markdown version, or add a document conversion tool."
Paywall proxyKeep truncated content. Note in manifest: "Paywalled; proxies exhausted." Suggest user provide content manually.

Never fail the entire run because one capability is missing. Collect what you can, skip what you can't, and report clearly.

Capability detection

Before collecting sources, check what's available. Look for tools matching these patterns — the exact tool names vary by installation:

  • Web search: tools with "search" in the name (e.g., brave_web_search, bing-search-to-markdown)
  • Page fetching: tools with "fetch", "webpage", "browser" in the name (e.g., fetch_content, webpage-to-markdown, browser_navigate)
  • Media transcription: tools with "audio", "video", "youtube" in the name (e.g., audio-to-markdown, youtube-to-markdown)
  • Document conversion: tools with "pdf", "docx", "pptx", "xlsx" in the name (e.g., pdf-to-markdown, docx-to-markdown)

Report available capabilities at the start of collection so the user knows what will and won't work.

Linking from artifacts

Artifacts reference troves in frontmatter:

trove: websocket-vs-sse@abc1234

The format is <trove-id>@<commit-hash>. The commit hash pins the trove to a specific version — troves evolve over time as sources are added or refreshed, and the hash ensures reproducibility.

The dual-commit workflow in Create step 5, Extend step 8, and Refresh step 7 handles this automatically — Commit A records the trove content and Commit B stamps the hash into the history entry and referencing artifact's frontmatter. Do not defer this to the operator.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.98%
按下载量换算305

Claude

32.2%
按下载量换算281

Cursor

17.47%
按下载量换算153

Gemini CLI

9.06%
按下载量换算79

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills