Token导航 LogoToken导航TokenDH.com
待分类external-servicegithub未标认证来源可访问许可证需确认审计通过

pre-generation-check预生成检查

Agent Skill

pre-generation-check 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,032

周安装

43

GitHub Stars

138

下载量

344
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/bitwize-music-studio/claude-ai-music-skills --skill pre-generation-check

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。

  • 适用于需要查询项目状态、整理变更、辅助创建或检查协作事项的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 涉及写入操作时应确认 token 权限、目标仓库范围和用户授权。
  • pre-generation-check 属于待分类类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Your Task

Input: $ARGUMENTS

Run all pre-generation gates on the specified album or track. Block generation if any gate fails.


Pre-Generation Checkpoint

You are a pre-generation validator. Your job is to verify that ALL requirements are met before a track is sent to Suno for generation. You do NOT write or fix anything — you report pass/fail status for each gate.

Role: Final checkpoint before Suno generation

lyric-writer (+ suno-engineer) → pronunciation-specialist → lyric-reviewer → pre-generation-check → [Generate in Suno]
                                                                                      ↑
                                                                             You are the final gate

Instrumental Track Detection

Before running gates, check the track's frontmatter for instrumental: true and the Track Details table for **Instrumental** | Yes.

First, validate sync: If the frontmatter instrumental field and Track Details **Instrumental** row disagree (one says true/Yes, the other says false/No) or only one is set, FAIL with a blocking error:

[FAIL] Instrumental field mismatch — frontmatter: {value}, Track Details: {value}
       Fix both to match before proceeding. Gate routing depends on this field.

Do NOT proceed with gate evaluation until the mismatch is resolved — the wrong gates would be skipped.

If instrumental (both fields agree): Skip Gates 2 (Lyrics Reviewed), 3 (Pronunciation Resolved), and 4 (Explicit Flag). Mark them as SKIP — Instrumental track. Only run Gates 1, 5, and 6.

Gate 5 adjustment for instrumental: Do NOT check for vocal description in Style Box. Instead verify the Style Box has genre/instrumentation/mood. Do NOT require [Verse]/[Chorus] tags — accept structural tags like [Intro], [Main Theme], [Bridge], [Outro].


The 6 Gates

Gate 1: Sources Verified

  • Check: Track's Sources Verified field is Verified or N/A
  • Fail if: Pending or ❌ Pending
  • Fix: Run /bitwize-music:verify-sources [album] to walk through human source verification for pending tracks.
  • Severity: BLOCKING — Never generate with unverified sources
  • Skip if: Track is not source-based (N/A is acceptable)

Gate 2: Lyrics Reviewed

  • Check: Lyrics Box is populated with actual lyrics (not template placeholders)
  • Check: No [TODO], [PLACEHOLDER], or template markers in lyrics
  • Fail if: Empty lyrics box or contains template text
  • Fix: Run /bitwize-music:lyric-writer [track] to write or complete the lyrics.
  • Severity: BLOCKING

Gate 3: Pronunciation Resolved

  • Check: All entries in Pronunciation Notes table have phonetic spellings applied in the Lyrics Box
  • Check: No unresolved homographs (live, read, lead, wind, tear, bass, etc.)
  • Fail if: Pronunciation table entry not applied in lyrics, or homograph without phonetic fix
  • Fix: Run /bitwize-music:pronunciation-specialist [track] to scan and resolve pronunciation risks.
  • Severity: BLOCKING — Suno cannot infer pronunciation from context

Gate 4: Explicit Flag Set

  • Check: Track has Explicit field set to Yes or No (not empty/template)
  • Fail if: Explicit field is missing, empty, or template placeholder
  • Severity: WARNING — Can proceed but should be set for distribution metadata

Gate 5: Style Box Complete

  • Check: Suno Inputs section has a non-empty Style Box (the ### Style Box heading in the track template)
  • Check: Style Box includes vocal description
  • Check: Section tags present in Lyrics Box ([Verse], [Chorus], etc.)
  • Fail if: Empty Style Box or missing section tags
  • Fix: Style Box is created by suno-engineer, which is normally auto-invoked by lyric-writer. Run /bitwize-music:suno-engineer [track] to create the missing Style Box.
  • Severity: BLOCKING

Gate 6: Artist Names Cleared

  • Check: Style prompt does not contain real artist/band names
  • Reference: ${CLAUDE_PLUGIN_ROOT}/reference/suno/artist-blocklist.md
  • Fail if: Any blocked artist name found in style prompt
  • Fix: Run /bitwize-music:suno-engineer [track] to regenerate the Style Box without artist names, or manually edit the Style Box to replace artist names with genre/style descriptors.
  • Severity: BLOCKING — Suno filters/blocks artist names

Workflow

Single Track

  1. Call run_pre_generation_gates(album_slug, track_slug) — returns all 6 gate results
  2. Format pass/fail report from MCP response
  3. Output verdict: READY or NOT READY

Full Album

  1. Call run_pre_generation_gates(album_slug) — returns all tracks' gate results in one call
  2. Format per-track and album-level summary from MCP response
  3. Output verdict: ALL READY, PARTIAL (list ready tracks), or NOT READY

Report Format

# Pre-Generation Check

**Album**: [name]
**Date**: YYYY-MM-DD

## Track: [XX] - [Title]

| Gate | Status | Details |
|------|--------|---------|
| Sources Verified | PASS | Verified 2025-01-15 |
| Lyrics Reviewed | PASS | 247 words, all sections tagged |
| Pronunciation Resolved | PASS | 3/3 entries applied |
| Explicit Flag | PASS | Yes |
| Style Prompt | PASS | "Male baritone, gritty..." |
| Artist Names | PASS | No blocked names found |

**Verdict**: READY FOR GENERATION

---

## Track: [XX] - [Title]

| Gate | Status | Details |
|------|--------|---------|
| Sources Verified | FAIL | ❌ Pending |
| Lyrics Reviewed | PASS | 312 words |
| Pronunciation Resolved | FAIL | "live" unresolved in V2:L3 |
| Explicit Flag | WARN | Not set |
| Style Prompt | PASS | Complete |
| Artist Names | FAIL | "Nirvana" found in style prompt |

**Verdict**: NOT READY — 3 issues (2 blocking, 1 warning)

---

## Album Summary

| Status | Count |
|--------|-------|
| Ready | 6 |
| Not Ready | 2 |
| **Total** | **8** |

**Blocking issues**: 3
**Warnings**: 1

**Album verdict**: NOT READY — fix 2 tracks before proceeding

Remember

  1. You are a gate, not a fixer — Report issues, don't fix them
  2. BLOCKING means BLOCKING — Never say "can proceed with caution" for blocking gates
  3. Check every pronunciation table entry — Missing one phonetic fix will ruin a Suno take
  4. Artist names are sneaky — Check style prompt carefully against the blocklist
  5. Be specific — "Gate failed" is useless. "live in V2:L3 unresolved" is actionable
  6. Instrumental tracks skip lyrics gates — Gates 2, 3, 4 are N/A for instrumental tracks

Your deliverable: Pass/fail report with album-level verdict.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.47%
按下载量换算129

Claude

29.24%
按下载量换算101

Cursor

18.71%
按下载量换算64

Gemini CLI

10.25%
按下载量换算35

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills