ship — Git 작업 흐름 최적화 Ben8t.github.io, community, Git 작업 흐름 최적화, ide skills, 빠른 커밋과 푸시, 커밋 메시지 지정, Git 상태 확인, 명령행 인자 해석, ship 설치

v1.0.0

이 스킬 정보

개발자 에이전트가 Git 워크플로 자동화를 간소화하는 데 필요한 경우에 적합합니다. ship은 Git 작업 흐름을 최적화하는 기술로 변경 사항을 빠르게 커밋하고 푸시

기능

변경 사항을 빠르게 추가하고 커밋
커밋 메시지 지정 기능 지원
변경 사항을 자동으로 푸시
Git 상태 확인
명령行 인자 해석

# Core Topics

Ben8t Ben8t
[1]
[0]
Updated: 3/11/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
48
Canonical Locale
en
Detected Body Locale
en

개발자 에이전트가 Git 워크플로 자동화를 간소화하는 데 필요한 경우에 적합합니다. ship은 Git 작업 흐름을 최적화하는 기술로 변경 사항을 빠르게 커밋하고 푸시

이 스킬을 사용하는 이유

에이전트가 Git 프로토콜을 사용하여 현재 브랜치에 변경 사항을 추가, 커밋 및 푸시하고, 사용자 정의 가능한 커밋 메시지를 갖춘 효율적인 버전 관리 프로세스를 제공함으로써 Git 워크플로 자동화를 가능하게 합니다.

최적의 용도

개발자 에이전트가 Git 워크플로 자동화를 간소화하는 데 필요한 경우에 적합합니다.

실행 가능한 사용 사례 for ship

리포지토리 업데이트를 자동화하는 것
사용자 정의 메시지를 사용하여 커밋 프로세스를 간소화하는 것
브랜치 관리를 간소화하는 것

! 보안 및 제한 사항

  • Git 설치가 필요함
  • 현재 브랜치 작업만

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is ship?

개발자 에이전트가 Git 워크플로 자동화를 간소화하는 데 필요한 경우에 적합합니다. ship은 Git 작업 흐름을 최적화하는 기술로 변경 사항을 빠르게 커밋하고 푸시

How do I install ship?

Run the command: npx killer-skills add Ben8t/Ben8t.github.io/ship. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for ship?

Key use cases include: 리포지토리 업데이트를 자동화하는 것, 사용자 정의 메시지를 사용하여 커밋 프로세스를 간소화하는 것, 브랜치 관리를 간소화하는 것.

Which IDEs are compatible with ship?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for ship?

Git 설치가 필요함. 현재 브랜치 작업만.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Ben8t/Ben8t.github.io/ship. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use ship immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

ship

Install ship, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

ship

Quickly add, commit, and push changes to the current branch.

Arguments

  • message (optional): Commit message. If not provided, will prompt the user for one.

Instructions

  1. Run git status to check the current state of the repository
  2. If there are no changes to commit, inform the user and exit
  3. Parse the commit message from args:
    • If args starts with -m or --message , extract the message after the flag (removing quotes if present)
    • Otherwise, treat the entire args string as the message (removing surrounding quotes if present)
    • If args is empty or just whitespace, ask the user for a commit message using AskUserQuestion
  4. Run git add . to stage all changes
  5. Create a commit with the message using the git commit protocol from the system instructions:
    • Format the message properly with a Co-Authored-By line at the end
    • Use a heredoc for proper formatting: git commit -m "$(cat <<'EOF'\n[message]\n\nCo-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>\nEOF\n)"
  6. Run git push to push the changes to the remote
  7. Confirm success to the user with a summary of what was pushed (include commit message and branch)

Example Usage

/ship "Add new printer case study"
/ship -m "Fix typography issues"
/ship

Notes

  • Always follow git safety protocols
  • Show git status before committing
  • Confirm successful push with the user
  • If push fails, report the error clearly

관련 스킬

Looking for an alternative to ship or another community skill for your workflow? Explore these related open-source skills.

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

현지화된 요약: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
인공지능

widget-generator

Logo of f
f

현지화된 요약: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf

149.6k
0
인공지능

flags

Logo of vercel
vercel

현지화된 요약: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

현지화된 요약: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
개발자