Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计提醒

ship-changes船舶变更

Agent Skill

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

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/aljorhythm/devtools --skill ship-changes

简介

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

  • 它可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用于前端设计类任务,通过 npx skills add 命令从指定 GitHub 仓库安装。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Ship Changes

Interactive workflow for committing and pushing changes following repository conventions.

Platform-agnostic: Works with GitHub, GitLab, Gitea, or any git host.

Workflow Detection

1. Detect Version Control Platform

# Determine which platform by checking remote URL
REMOTE_URL=$(git remote get-url origin)

if [[ "$REMOTE_URL" == *"github.com"* ]]; then
  echo "GitHub (use 'gh' CLI)"
elif [[ "$REMOTE_URL" == *"gitlab"* ]]; then
  echo "GitLab (use 'glab' CLI)"
else
  echo "Other platform (use standard git commands)"
fi

2. Identify Repository Pattern

# Check if service repo (single commit per branch) or docs/notes repo (multiple logical commits)
git log --oneline -5 | head -3

Single-commit repos (services, libraries, feature branches):

  • One commit per branch
  • Amend workflow for updates
  • Force-push for cleanup

Multi-commit repos (documentation, notes, monorepos):

  • Multiple logical commits OK
  • Group related changes together
  • Regular push workflow

Single-Commit Pattern: Amend Workflow

2. Check Current State

git fetch origin
git rev-list --left-right --count origin/main...HEAD
# or
git rev-list --left-right --count origin/$(target_branch)...HEAD
OutputMeaningNext Step
0 0No commits yetCreate new commit
0 11 commit existsAmend & update
N 1Behind target by NRebase first
N 2+Multiple commitsSquash to 1

3. Generate Commit Message

If JIRA/issue ticket convention exists in your repo:

# Extract ticket from branch name
git rev-parse --abbrev-ref HEAD
# Example: feat/PROJ-123-description → [PROJ-123]

# Check recent commit style
git log --oneline -10

# Format: <type>: [<TICKET>] [<component>:] <description>
# Example: feat: [PROJ-123] add user preferences panel

If no ticket system, use general format:

git commit -m "feat: add user preferences panel"
git commit -m "fix: handle null pointer in validation"
git commit -m "docs: update API authentication guide"

4. Execute Based on State

No commit exists (0 0):

git add -A
git commit -m "type: [TICKET] description"
git push -u origin HEAD

Commit exists (0 1) - Amend:

git add -A
git commit --amend -m "type: [TICKET] updated description"
git push --force-with-lease

Behind target (N 1) - Rebase first:

git rebase origin/$(target_branch)
# Resolve conflicts if any
git add -A
git commit --amend -m "type: [TICKET] description"
git push --force-with-lease

Multiple commits (N 2+) - Squash:

git reset --soft origin/$(target_branch)
git commit -m "type: [TICKET] description"
git push --force-with-lease

5. Create/Update Merge/Pull Request (Optional)

Detect and use the appropriate CLI for your platform:

# For GitLab repos (use glab)
glab mr create --fill --yes --assignee @me
glab mr update --assignee @me  # Update existing

# For GitHub repos (use gh)
gh pr create --fill --assignee @me
gh pr edit --add-assignee @me  # Update existing

# For other platforms
# Use web interface or platform-specific CLI

Quick detection:

if git remote get-url origin | grep -q github; then
  gh pr create --fill --assignee @me
elif git remote get-url origin | grep -q gitlab; then
  glab mr create --fill --yes --assignee @me
fi

Multi-Commit Pattern: Group and Ship

2. Review Changes

git status
git diff --stat
git diff --cached  # staged changes

3. Identify Logical Groups

Group related changes by:

  • Feature/ticket
  • Component or module
  • Documentation section
  • Tool or utility

4. Stage and Commit Each Group

# Group 1: Feature implementation
git add src/features/auth/
git add tests/features/auth/
git commit -m "feat: implement OAuth2 flow"

# Group 2: Bug fixes
git add src/utils/validation.ts
git commit -m "fix: handle edge case in date parsing"

# Group 3: Documentation
git add docs/api/auth.md
git commit -m "docs: add OAuth2 troubleshooting guide"

Each commit should be self-contained and make sense on its own.

5. Push

git push
# or
git push -u origin HEAD  # for new branch

Commit Message Conventions

Common Types

  • feat: New feature or capability
  • fix: Bug fix
  • docs: Documentation updates
  • refactor: Code restructuring (no behavior change)
  • test: Test additions or updates
  • perf: Performance improvements
  • chore: Maintenance, dependencies, config
  • ci: CI/CD pipeline changes

With Ticket (if applicable)

type: [TICKET-123] brief description

Without Ticket

type: brief description

Component Scoping (optional)

type: [TICKET] component: description
type: fix: auth: prevent token expiry race condition

Error Handling

Rebase conflicts:

  1. View conflicts: git diff
  2. Fix files manually
  3. Stage resolved files: git add <files>
  4. Continue rebase: git rebase --continue
  5. Then proceed with commit/push

Push rejected (force-with-lease failed):

  • Someone else pushed to your branch or remote changed
  • Review incoming changes: git fetch && git log HEAD..origin/HEAD
  • Pull and rebase: git pull --rebase
  • If needed, force-push again: git push --force-with-lease

Diverged history:

  • Use git push --force-with-lease (safer than --force)
  • Only overwrites remote if it matches expected state
  • Use --force only if absolutely necessary (and you know why)

Safety Rules

  • NEVER skip hooks (--no-verify) unless explicitly requested
  • NEVER use --force alone—always use --force-with-lease for safety
  • NEVER push directly to main/master/develop (use feature branches + MR/PR workflow)
  • Test before pushing: Run tests locally to catch issues early

Quick Reference

# View staged changes
git diff --cached

# View all changes
git diff HEAD

# Amend last commit
git commit --amend

# Rebase on target
git rebase origin/main

# Squash last N commits
git rebase -i HEAD~N

# Safe force push
git push --force-with-lease

# Push new branch
git push -u origin HEAD

Related Skills

  • Commit message generation: Use /commit-message skill to format properly
  • Git conventions: Check your repo's contributing guide for specific rules
  • MR/PR workflow: Create and manage merge/pull requests for code review

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.95%
按下载量换算27

Claude

28.52%
按下载量换算21

Cursor

19.22%
按下载量换算14

Gemini CLI

8.53%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills