Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

verify-and-ship验证并发货

Agent Skill

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

总安装

1,247

周安装

53

GitHub Stars

559

下载量

437
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ceedaragents/cyrus --skill verify-and-ship

简介

verify-and-ship 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合整理项目状态和变更事项。

  • 适用于需要围绕仓库动态、代码提交或协作流程进行信息归纳的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件读写操作。
  • 建议结合原始 README 和仓库文档进一步核验具体功能和使用方式。

SKILL.md

Verify and Ship

After implementing your changes, follow these steps to verify quality and ship the work.

1. Acceptance Criteria Validation (CRITICAL)

Use the issue tracker get_issue tool to fetch the current issue details. Extract ALL acceptance criteria from the issue description and verify each one is satisfied by the implementation. If no explicit criteria exist, validate against the implied requirements from the issue title and description.

2. Quality Checks

Run all applicable quality checks:

  • Tests — Run the full test suite. If tests fail, fix the issues and re-run. Retry up to 3 times. If you cannot resolve failures after 3 attempts, proceed and note the failures in your summary.
  • Linting — Run linting tools and fix any issues found.
  • Type checking — Run TypeScript type checking (if applicable) and fix any errors.
  • Code review — Review your changes for quality, consistency, and best practices. Remove any debug code, console.logs, or commented-out sections.

3. Changelog Update

Check if the project has changelog files:

ls -la CHANGELOG.md CHANGELOG.internal.md 2>/dev/null || echo "NO_CHANGELOG"

If changelog files exist, diff against the base branch to detect entries already added by this branch:

# See what changelog lines this branch has added compared to the base branch
# Replace <base_branch> with the actual base branch from the issue context
git diff <base_branch> -- CHANGELOG.md CHANGELOG.internal.md 2>/dev/null

Handling existing entries:

  • If the diff shows this branch already added a changelog entry for the current issue (matching the issue identifier), update that entry in-place (e.g., to add the PR/MR link or refine the description). Do NOT add a duplicate entry.
  • If the diff shows this branch added changelog entries for a different issue or no entries at all, add a new entry.

Adding or updating entries:

  • Place entries under ## [Unreleased] in the appropriate subsection (### Added, ### Changed, ### Fixed, ### Removed)
  • Focus on end-user impact — be concise but descriptive
  • Include the Linear issue identifier and PR/MR link (format: ([ISSUE-ID](linear_url), [#NUMBER](PR_OR_MR_URL)))
  • Follow Keep a Changelog format

4. Commit and Push

  • Stage all relevant changes (including changelog updates)
  • Commit with clear, descriptive messages following the project's commit conventions
  • Push to the remote repository

5. Create or Update PR/MR

Determine the platform from the repository context (<github_url> or <gitlab_url> in the issue context). Use the appropriate tool for the platform.

GitHub (when <github_url> is present)

git push -u origin HEAD
gh pr view --json url,number 2>/dev/null || gh pr create --draft --base [base_branch from context] --title "[descriptive title]" --body "Work in progress"

GitLab (when <gitlab_url> is present)

git push -u origin HEAD
glab mr view 2>/dev/null || glab mr create --draft --target-branch [base_branch from context] --title "[descriptive title]" --description "Work in progress"

PR/MR Description

Update the PR/MR with a comprehensive description:

  • Assignee attribution: If <github_username> is available in the assignee context, add Assignee: @username ([Display Name](linear_profile_url)) at the top of the body. If only a linear profile URL is available, use Assignee: [Display Name](linear_profile_url).
  • Summary of changes, implementation approach, and testing performed
  • Link to the Linear issue
  • Cyrus marker: Include <!-- generated-by-cyrus --> as a hidden HTML comment at the end of the body
  • Interaction tip: Add this at the end (before the marker), using the bot username from <github_bot_username> or <gitlab_bot_username> in the <agent_context> block of the system prompt. If <agent_context> is not present, default to cyrusagent: --- > **Tip:** I will respond to comments that @ mention @<bot_username> on this PR/MR. You can also submit a review with all your feedback at once, and I will automatically wake up to address each comment.

Remove any "WIP:" or "Draft:" prefix from the title. Check <agent_guidance> — only mark the PR/MR as ready if guidance does NOT specify keeping them as drafts.

Verify the PR/MR targets the correct base branch from <base_branch> in the issue context.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.41%
按下载量换算155

Claude

31.7%
按下载量换算139

Cursor

20.68%
按下载量换算90

Gemini CLI

9.34%
按下载量换算41

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills