Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

harvestharvest 搜索

Agent Skill

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

总安装

710

周安装

29

GitHub Stars

公开资料未说明

下载量

230
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/shihyuho/skills --skill harvest

简介

harvest 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果时使用。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 当前尚无详细功能描述,需查阅原始 SKILL.md 获取更多信息。

SKILL.md

Planning Second Brain

Create and maintain a project second brain without replacing source-of-truth planning files.

Core Contract

  • Treat task_plan.md, findings.md, and progress.md as the only source of truth (SOT).
  • Write second-brain outputs into docs/notes using Obsidian-compatible Markdown.
  • Never let docs/notes overwrite or redefine source-of-truth files.
  • Route all entrypoints through one deterministic capture workflow.

Required Skill Composition

  1. Invoke planning-with-files first for primary planning workflow.
  2. Invoke obsidian-markdown when writing or updating second-brain Markdown.

Trigger Contract

Use this skill when users ask to:

  • keep project memory over time
  • summarize milestones into reusable notes
  • record stable decisions and knowledge
  • build an Obsidian-friendly project knowledge base
  • read intents: find prior decision, look up past context, trace project timeline, retrieve existing second-brain note

Do not use this skill for unrelated implementation work that does not involve capture, summarization, or project memory publishing.

Output Locations

  • docs/notes/index.md
  • docs/notes/projects.md
  • docs/notes/decisions.md
  • docs/notes/knowledge.md
  • docs/notes/harvest-quality.md
  • docs/notes/projects/<project>/timeline/YYYY-MM-DD.md
  • docs/notes/decisions/*.md
  • docs/notes/knowledge/*.md
  • docs/notes/harvest-quality/YYYY-MM-DD-<project-slug>-harvest-review.md
  • docs/notes/harvest-quality/rollups/YYYY-MM-<project-slug>-harvest-optimization.md

Create missing folders/files when absent.

Progressive Disclosure Read Workflow (Required)

Follow this read order before any retrieval or context lookup:

  1. Read docs/notes/index.md to discover available hubs.
  2. Read the intent hub: docs/notes/projects.md, docs/notes/decisions.md, or docs/notes/knowledge.md.
  3. Read only targeted leaf notes that match the intent.

Stop condition:

  • Stop when the target note is found, or after two consecutive reads that add no novel information.

Hard constraints:

  • Never start from deep leaves unless the user provides an exact path.
  • Treat docs/notes as retrieval-only; never capture or summarize docs/notes back into docs/notes.
  • Preserve the anti-recursion guard and existing SOT-only contract (task_plan.md, findings.md, progress.md).
  • Do not expand read scope beyond the minimal files needed for the requested intent.

Reference example:

Deterministic Workflow (Required)

Run this workflow in order for every entrypoint (manual trigger phrases, slash-command wrappers, and plugin-driven invocation):

  1. Preflight

- Confirm SOT inputs exist: task_plan.md, findings.md, progress.md. - Confirm output root: docs/notes. - Set mode: capture, status, audit, review, or optimize. - For optimize mode, collect optional user-provided report directories as additional input roots.

  1. Bootstrap

- Ensure required minimal docs/notes files and templates exist. - Apply contract in references/publishing-and-dedupe.md.

  1. Extract Candidates

- Apply contracts in references/extraction-and-classification.md.

  1. Classify

- Route each candidate using the classification decision table contract.

  1. Publish

- Append same-day timeline events and update decision/knowledge notes with dedupe.

  1. Verify and Report

- Run verification checklist. - For review and optimize, apply references/quality-reports.md.

Candidate Schema and Extraction Rules (Required)

Candidate fields MUST include:

  • source_ref, change, why, candidate_type, confidence
  • optional: sot_fingerprint, exclusion_reason, unresolved_source_ref

Apply full extraction/classification contract in references/extraction-and-classification.md.

Publish Confirmation Semantics (Required)

  1. Extract candidate.
  2. Validate schema fields and thresholds.
  3. Publish into target note.
  4. Mark committed after publish succeeds.

Apply full publishing contract in references/publishing-and-dedupe.md.

First-Run Bootstrap (Required)

If docs/notes is missing, or if any required minimal file is missing, bootstrap from references/bootstrap/.

Apply the required minimal files list and bootstrap rules in references/publishing-and-dedupe.md.

Publishing Strategy

Apply classification, timeline, and milestone publish contracts in references/extraction-and-classification.md.

Review Report Mode (Required)

Use review mode to evaluate harvest output quality and persist one reusable report for later optimization planning.

Apply full review contract in references/quality-reports.md.

Review Rollup Mode (Required)

Use optimize mode to aggregate multiple review reports into one optimization roadmap.

Apply full rollup contract in references/quality-reports.md.

Execution Contract (Required)

  • Treat trigger methods as entrypoints only (manual phrases, slash-command wrappers, plugin-driven calls).
  • MUST route all entrypoints through the same deterministic workflow.
  • Produce equivalent output for equivalent source input regardless of trigger method.
  • Do not implement separate dedupe behavior per trigger entrypoint.
  • Keep plugin-driven capture behavior contract-compatible with manual entrypoints.
  • Keep review and optimize modes repo-agnostic. Do not hardcode project-specific heuristics as universal rules.

Source Extraction Boundaries (Required)

Extract with allowlist rules from source-of-truth files. Do not summarize everything.

Apply full allowlist/denylist and thresholds in references/extraction-and-classification.md.

Harvest Exclusion Markers

Support explicit exclusion markers inside source-of-truth files:

  • <!-- harvest:exclude:start -->
  • <!-- harvest:exclude:end -->

Ignore content inside this block during harvest publishing.

Anti-Recursion Guard

  • Do not summarize notes under docs/notes back into new notes.
  • Use source-of-truth files as input only (task_plan.md, findings.md, progress.md).
  • Skip entries that only describe harvest's own publishing activity.

Dedupe and Fingerprint Contract (Required)

  • Timeline events MUST include sot_fingerprint.
  • Compute sot_fingerprint from normalized source_ref + change + why.
  • Same timeline day + same sot_fingerprint means no-op (do not append duplicate block).
  • Equivalent source input must produce equivalent no-op behavior across manual and plugin entrypoints.

Fingerprint normalization:

  1. Trim leading/trailing whitespace on source_ref, change, and why.
  2. Collapse internal whitespace to single spaces.
  3. Lowercase each part.
  4. Join as <source_ref>||<change>||<why>.
  5. Compute SHA-256 hex lowercase.

Reference example:

Note Rules

  • Keep notes concise and reusable.
  • Include traceability metadata in formal notes.
  • Summarize; do not paste large verbatim source-of-truth sections.

Verification Checklist

Before finalizing updates:

  1. Every formal note has source_files, source_date, and source_ref.
  2. Every timeline event has source_ref and sot_fingerprint.
  3. docs/notes/index.md links to latest decisions and knowledge.
  4. No reverse edits were made to task_plan.md, findings.md, progress.md by second-brain steps.
  5. No large copied source-of-truth blocks appear in formal notes.
  6. In review mode, report file includes scorecard, deductions, and path-based evidence.
  7. In optimize mode, rollup file includes coverage counts, aggregated scores, roadmap priority, and source report paths.
  8. In optimize mode, rollup file includes input root resolution results (included + skipped + reasons).

Failure Handling

  • If source_ref cannot be resolved, set note status: draft and record unresolved_source_ref.
  • Do not block the source-of-truth workflow because of second-brain publish errors.

Non-Goals

  • Do not modify global IDE/user rule files.
  • Do not add mandatory always-on conversation loops.
  • Do not turn this skill into a general cross-skill memory engine.
  • Do not collect or persist tool chatter as project knowledge.

Anti-Patterns

  • Treating second-brain notes as execution-state files.
  • Creating parallel truth that conflicts with source-of-truth planning files.
  • Defining trigger-specific behavior that diverges from the deterministic workflow.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.65%
按下载量换算82

Claude

30.35%
按下载量换算70

Cursor

18.61%
按下载量换算43

Gemini CLI

9.77%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills