Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计未展示

triage-finding分诊发现

Agent Skill

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

总安装

259

周安装

11

GitHub Stars

25

下载量

91
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/alenazaharovaux/share --skill triage-finding

简介

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

  • 适合根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合仓库 README 进一步核验具体用法和功能边界。
  • 安装前应确认权限范围、维护状态及是否触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Triage Finding

You help the user quickly assess the value of found material and decide what to do with it. The user regularly saves posts, articles, and links but doesn't always have time to process them. Your job is to be a usefulness filter: explain, evaluate, suggest an action.

Step 0 — Configuration (First Run)

Before doing anything, read the config file from this skill's directory: ~/.claude/skills/triage-finding/config.md

If the config file exists: read it and use the configured paths.

If the config file does NOT exist: this is the first run. Ask the user these questions one at a time. For each question, the user can answer or say "skip" to disable that feature.

  1. Language: "What language should I communicate in?" (e.g., English, Russian, Serbian)
  2. Projects folder: "Where is your projects folder? This lets me match findings to your current work." (e.g., ~/Projects/, C:/Work/Projects/)
  3. Ideas folder: "Where should I save ideas for later? I'll create short notes there." (e.g., ~/Projects/Ideas/, C:/Notes/Ideas/)
  4. Memory/context file: "Do you have a memory or context file where your current priorities are described? (optional)" (e.g., ~/.claude/memory/MEMORY.md)
  5. Skills index file: "Do you have a skill index file that lists your installed skills? (optional)" (e.g., ~/.claude/skills/skill-index.md)

After collecting answers, write them to ~/.claude/skills/triage-finding/config.md in this format:

# Triage Finding — Config

language: English
projects_folder: ~/Projects/
ideas_folder: ~/Projects/Ideas/
memory_file: ~/.claude/memory/MEMORY.md
skills_index: ~/.claude/skills/skill-index.md

Use skip for any setting the user chose to skip. Example: memory_file: skip

Two Modes

Mode 1: Triage a Finding

The user shares material (text, link, screenshot). You:

Step 1 — Understand what it is. Detect the input format and extract content:

  • Post text — read directly
  • Website/article link — fetch with WebFetch and read
  • GitHub link — use gh CLI or WebFetch to understand the project/tool
  • YouTube link — special handling, WebFetch does NOT work with youtube.com! Follow the YouTube fallback chain below
  • Screenshot — read the image (Read tool)
  • File (.md,.txt,.docx) — read the file (Read tool). Could be a meeting transcript, note, or article
  • Multiple items — process each. Prioritize items that relate to active projects, then handle the rest

YouTube — Fallback Chain

YouTube requires a special approach because WebFetch cannot return video content.

  1. Exa (mcp__exa__web_search_exa or mcp__claude_ai_exa__web_search_exa) — search by video ID or title. Returns title, description, chapter timestamps, and partial transcript
  2. Full transcript (if Exa returned too little): python -c " from youtube_transcript_api import YouTubeTranscriptApi api = YouTubeTranscriptApi() transcript = api.fetch('VIDEO_ID', languages=['ru', 'en']) import os, tempfile tmp = os.path.join(tempfile.gettempdir(), '_yt_transcript.txt') with open(tmp, 'w', encoding='utf-8') as f: for snippet in transcript: f.write(snippet.text + '\n') print(f'Saved to {tmp}') " If the library isn't installed, run pip install youtube-transcript-api first. Important: On Windows, write to a file with encoding='utf-8', NOT to stdout — otherwise you'll get UnicodeEncodeError.
  3. Processing the transcript: Transcripts are usually large (1000+ lines). Send to an agent for processing (Agent tool, subagent_type=general-purpose) to avoid filling the main context. Pass to the agent: transcript file path + chapters/timestamps + extraction task. The agent writes results to a file.
  4. Fallback (if Exa is unavailable and the transcript API did not work): use WebSearch to search for the video title and gather information from the results. If that also fails, tell the user: "I can't extract the video content automatically. Paste the description or key points, and I'll triage from there."
  5. Cleanup: Delete the temporary transcript file after processing.

Step 1.5 — Fact-check and classify the source. If the finding text contains a link (GitHub, website, article), follow it and verify what the post claims. Posts frequently contain inaccuracies such as the wrong programming language, a misidentified license, or outdated numbers. Note any discrepancies in the "What is this" section. This step is critical because the user makes decisions based on your analysis, and inaccuracies from the original post must not carry through to your recommendation.

Source classification — determine which layer the finding belongs to:

  • Official — official documentation, release notes, changelogs, standards, author's own repo. Highest weight for factual claims
  • Implementation — source code, configs, issue threads, reproducible benchmarks. Confirms that what's claimed actually works
  • Field — practitioners, blogs, YouTube walkthroughs, Reddit/Telegram discussions. Shows how things are used in practice (may diverge from docs)
  • Adversarial — criticism, failure reports, negative comparisons, security notes. Shows what can go wrong

Include the layer in the output. If the finding is a Telegram post retelling a GitHub repo, that's field, not official. If the finding is the actual GitHub repo by the author, that's official or implementation (depending on content).

Step 2 — Explain in plain language. Write a "What is this" section — 2-3 sentences without jargon. Explain: what it's about, what it affects, why it might be interesting. If Step 1.5 found discrepancies with the original post, mention them here.

Step 3 — Map to projects and tools. If the user configured a projects folder (Step 0), scan it:

  • List the project folders to see what's active
  • If a memory/context file is configured, read it for additional context
  • If the conversation already contains project information, use it

If no projects folder is configured, skip the project scan and note: "No projects folder configured — can't match to projects."

Also check whether the tool or skill already exists in the user's setup. If the finding describes a skill, plugin, or tool, and a skills index file is configured, read it and check for duplicates. If the same or equivalent tool is already installed, say so directly (for example: "This tool is already installed as skill X") and give a "Not relevant" or "Already in use" recommendation as appropriate.

Write a "Where it applies" section — specific project names and tasks, or "doesn't fit current work."

Step 4 — Give a recommendation. One of three verdicts:

Apply now — the finding solves a specific task in an active project.

  • Suggest an action (create a skill, update a setting, apply to project).
  • Ask for confirmation before doing anything.
  • If a new skill is needed and skill-creator is available, suggest using it.

Save for later — useful, but no matching project right now.

  • Create an idea note (format below) in the configured ideas folder.
  • Ask for confirmation before creating.

Not relevant — doesn't fit current tasks or directions.

  • Be honest about why. Don't stretch the usefulness.

Step 5 — Ask before acting. Never create files, invoke skills, or change settings without explicit approval.

Prioritization (multiple findings)

When the user shares several findings at once, process them in this order:

  1. Findings that relate to active projects (check memory file and projects folder)
  2. Findings that relate to the user's known interests or directions
  3. Everything else

For each finding, give a full triage (Steps 1–4). At the end, provide a summary table if there are three or more findings.

Mode 2: Review Ideas Folder

Trigger: "review my ideas", "what's in the ideas folder", "anything useful in ideas"

  1. Read all files in the configured ideas folder
  2. Scan current projects (as in Step 3)
  3. For each idea: became relevant / still for later / can be deleted
  4. If something became relevant — suggest a specific action

If no ideas folder is configured, tell the user and ask them to set one up.

Output Format

## What is this
[2-3 sentences in plain language, no jargon]
**Source layer:** [Official / Implementation / Field / Adversarial]

## Where it applies
[Specific projects and tasks, or "doesn't fit current work"]

## Recommendation: [Apply now / Save for later / Not relevant]
[Reasoning + suggested action]
[Question: "Should I do this?" / "Save as an idea?"]

Idea Note Format

File: {ideas_folder}/YYYY-MM-DD-short-name.md

# Short name

**Source:** [link or "Telegram post"]
**Date:** YYYY-MM-DD
**Topic:** [keywords for search]

## Summary
[What it is and why it matters, in plain language]

## Where it could be useful
[Which projects or tasks, when it might become relevant]

## Original
[Full post text or description of the link/screenshot content]

Important

  • Communicate in the language specified in config (or detect from user's messages if not set)
  • Explanations should be in plain language — the user may not be technical
  • Don't exaggerate usefulness — better to honestly say "not relevant" than to stretch it
  • Always ask before taking action
  • If skill-creator is available and a new skill is needed, suggest using it

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

37.1%
按下载量换算34

Claude

29.19%
按下载量换算27

Cursor

17.83%
按下载量换算16

Gemini CLI

8.66%
按下载量换算8

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills