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

verify-sources核实来源

Agent Skill

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

总安装

988

周安装

42

GitHub Stars

138

下载量

346
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bitwize-music-studio/claude-ai-music-skills --skill verify-sources

简介

用于查找、检索和筛选相关信息,支持基于关键词或任务场景快速定位候选结果。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中辅助信息收集与线索整理。
  • 可结合来源仓库和原始 README 进一步验证具体功能与使用方式。
  • 安装命令:npx skills add https://github.com/bitwize-music-studio/claude-ai-music-skills --skill verify-sources
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件操作。

SKILL.md

Your Task

Input: $ARGUMENTS (album name)

Guide the user through source verification for all tracks with pending sources in the specified album.


Source Verification Skill

You facilitate the human source verification gate — the critical checkpoint between research and generation. No track should be generated on Suno until a human has verified that all sources are real, accessible, and accurately represented.


Step 1: Find the Album

  1. Call find_album(name) — fuzzy match by name, slug, or partial
  2. If not found, MCP returns available albums

Step 2: Identify Pending Tracks

  1. Call get_pending_verifications(album_slug="{album}") — returns pending tracks for the target album
  2. If no album specified, call get_pending_verifications() for all albums

If no pending tracks:

All tracks in [album] have been verified. No action needed.

If pending tracks exist, list them:

SOURCE VERIFICATION: [Album Title]
===================================

Tracks needing verification:
  1. [track-slug] — [track-title]
  2. [track-slug] — [track-title]
  ...

Total: X tracks pending verification

Step 3: Walk Through Each Track

For each pending track:

  1. Call extract_links(album_slug, track_slug) — extracts markdown links from the track file
  2. Call extract_links(album_slug, "SOURCES.md") — get the full citation list
  3. Read RESEARCH.md (if it exists) for evidence chains, confidence levels, and claim-to-source mappings — this gives the human verifier context for *what* each source is supposed to support, not just the URL
  4. Present sources to the user:
TRACK: [track-title]
--------------------
Sources referenced in this track:

  1. [Source Name](URL) — [brief description of what it supports]
  2. [Source Name](URL) — [brief description]
  ...

Please verify:
  - Each URL is accessible and contains the claimed information
  - No sources are fabricated or hallucinated
  - Claims in lyrics are supported by cited sources

Type "verified" to confirm, or describe any issues.
  1. Wait for user response:

- If "verified" (or equivalent affirmative) → update the track - If issues reported → note them, ask user how to proceed

Step 4: Update Track Files

When user confirms verification for a track:

  1. Call update_track_field(album_slug, track_slug, "sources-verified", "✅ Verified (YYYY-MM-DD)") — updates the field and auto-rebuilds state cache

- Use today's date

  1. Confirm the update:
✅ [track-title] — Sources verified (2025-02-06)
  1. Move to next pending track

Step 5: Update Album Status (Auto-Advance)

After processing all tracks, check if the album status should advance:

  1. Call get_album_progress(album_slug) — check how many tracks are now verified
  2. If ALL tracks are verified (no more pending):

- Read the album README to check current album status - If album status is Research Complete: - Update album README: change | **Status** | Research Complete || **Status** | Sources Verified | - Report: "Album status advanced: Research Complete → Sources Verified" - If album status is In Progress: - Report: "All track sources verified. Album status stays In Progress (already past research phase)."

  1. If some tracks still pending:

- Report how many remain and which ones

  1. Rebuild state cache: Call rebuild_state() to ensure MCP server has fresh data
  2. Summary report:
VERIFICATION COMPLETE
=====================
Album: [title]
Tracks verified: X/Y
Album status: [previous] → [new status]
Date: YYYY-MM-DD

All sources verified. This album is cleared for lyric writing.
Next step: /bitwize-music:lyric-writer [track] (write lyrics from verified sources)

Partial verification report (if some tracks still pending):

VERIFICATION PROGRESS
=====================
Album: [title]
Tracks verified this session: X
Tracks still pending: Y
  - [track-slug] — [reason if known]

Album status: unchanged ([current])
Resume verification later with /bitwize-music:verify-sources [album]

Handling Issues

If the user reports a problem with a source:

  1. Document the issue in the track file as a comment or note
  2. Do NOT mark as verified — keep status as Pending
  3. Suggest resolution:

- Source URL broken → "Can you find an updated URL?" - Source doesn't support claim → "Should we revise the lyric, or find a supporting source?" - Source is fabricated → "I'll remove this source. Do we need to revise the track?"

  1. After resolution, re-present for verification

Remember

  • Never auto-verify — this skill exists specifically for human review
  • Present sources clearly — the user needs to actually check each URL
  • Date-stamp everything — verification dates matter for audit trail
  • One track at a time — don't rush through, each track matters
  • Update state cache — after changes, run indexer update so MCP server has fresh data

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.58%
按下载量换算130

Claude

32.62%
按下载量换算113

Cursor

16.83%
按下载量换算58

Gemini CLI

9.19%
按下载量换算32

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills