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

ship-check船舶检查

Agent Skill

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

总安装

1,505

周安装

64

GitHub Stars

公开资料未说明

下载量

527
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/tahajemmali/skills --skill ship-check

简介

ship-check 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用于研究检索类任务,通过 npx skills add 命令从指定 GitHub 仓库安装。
  • ship-check 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Ship Check

Overview

Run the repo's end-of-task validation flow after code or documentation changes.

This is an orchestration skill. It does not replace the specialized review skills. It tells the agent which checks to run, in what order, and how to summarize the result before final handoff.

Standard Flow

Use this flow after finishing a fix, refactor, or feature:

  1. Review the latest changes with $review-changes.
  2. Check whether project documentation needs maintenance with $repo-doc-maintainer.
  3. Report the combined outcome clearly.
  4. If code changed, remind the user about any validation commands not yet run.

Invocation Pattern

When this skill is invoked, explicitly use the other repo-local skills in sequence.

Start with:

Use $review-changes to review the latest changes against the project's guidelines and report findings first.

Then run:

Use $repo-doc-maintainer to review the latest changes and decide whether project documentation should be updated.

Do not skip either step unless the user explicitly narrows the scope.

How To Interpret Results

If review-changes finds issues

  • present the findings first
  • do not claim the work is validated
  • if the issues are actionable and local, fix them before final handoff when appropriate
  • rerun validation after fixes if you changed the code again

If review-changes finds no issues

  • say that the changes comply with the current repo guidance
  • still run $repo-doc-maintainer

If repo-doc-maintainer says docs should change

  • update the docs if the current task includes making those maintenance edits
  • otherwise report that documentation maintenance is recommended

If repo-doc-maintainer says no doc update is needed

  • state that explicitly in the final close-out

Output Expectations

The final close-out should combine both checks:

  • whether the implementation passed the repo-rule review
  • whether documentation maintenance was needed
  • whether project validation commands were run or remain outstanding

Keep the output compact. Prefer a brief status summary over a long checklist unless there are actual findings.

Constraints

  • Treat $review-changes as the source of truth for repo-rule compliance review.
  • Treat $repo-doc-maintainer as the source of truth for doc-maintenance decisions.
  • Do not invent a separate third review rubric here.
  • Use this skill at the end of work, not before implementation starts.

Validation Flow

Use this checklist after finishing implementation work.

Required Review Skills

  1. $review-changes
  2. $repo-doc-maintainer

Default Sequence

  1. Inspect the latest working tree or commit range.
  2. Run the repo-rule review via $review-changes.
  3. Run the doc-maintenance review via $repo-doc-maintainer.
  4. Summarize both results.

Final Close-Out Should Cover

  • whether the changes respect the project's documented guidelines
  • whether project documentation needed updates
  • whether validation commands (lint, test, analyze) were run
  • any residual risks, such as unrun tests or manual-only verification gaps

When To Re-Run

Re-run the flow if you make additional code or doc edits after the first validation pass.

Closing Signal

After the final close-out, always emit a verdict on its own line:

  • VERDICT: APPROVED — if both review-changes and repo-doc-maintainer passed with no outstanding code or documentation issues
  • VERDICT: REMARKS — if review-changes found actual code issues, or repo-doc-maintainer found documentation gaps that were NOT resolved during this run

Use VERDICT: APPROVED when:

  • review-changes passed (no code findings)
  • repo-doc-maintainer either found no changes needed, or the needed changes were applied during this run
  • Validation commands that require external infrastructure (Docker daemon, cloud services, device emulators, etc.) could not be run — this is expected and is NOT a reason to downgrade to REMARKS
  • Plan checkboxes or other bookkeeping was updated during this run — routine maintenance is NOT a finding

Use VERDICT: REMARKS only when there are actual unresolved issues — real code problems, unfixed doc gaps, or test failures. If the only notes are informational (e.g. "docker build requires manual verification"), that belongs in the close-out summary but does not block approval.

When emitting REMARKS, include findings:

VERDICT: REMARKS

FINDINGS_START
- review-changes: <summary of actual code issues>
- repo-doc-maintainer: <summary of unresolved doc gaps>
FINDINGS_END

The VERDICT: line must be the last substantive output. When using FINDINGS_START/FINDINGS_END delimiters, place them on their own lines.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.63%
按下载量换算183

Claude

28.07%
按下载量换算148

Cursor

21.14%
按下载量换算111

Gemini CLI

9.11%
按下载量换算48

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

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

来源信息

继续浏览同类 Skills