git-github-workflow

Automate Git operations and GitHub tasks via the GitHub CLI.

1|Updated Nov 17, 2023
One-click install
npx skills add https://github.com/Suntory-N-Water/sui-blog --skill git-github-workflow
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: git-github-workflow
Source: https://github.com/Suntory-N-Water/sui-blog/tree/main/.claude/skills/git-github-workflow
Command: npx skills add https://github.com/Suntory-N-Water/sui-blog --skill git-github-workflow

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill automates common Git tasks and GitHub CLI operations to reduce repetitive commands, minimize human error, and keep branches and PRs in sync.

Core Features & Use Cases

  • Git操作の自動化: add, commit, switch branches, push
  • PR作成・編集: gh pr create/view/edit
  • Issue作成・コメント: gh issue create and basic commenting
  • Use Case: 複数機能のブランチを扱う際に、変更をコミットし、PRを自動生成する workflow など

Quick Start

Create a new feature branch named feature-<name>, add changes, commit with a Japanese message, push to origin, and create a PR with a concise title.

Frequently Asked Questions about git-github-workflow

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Git commits and pushes with bash?

This Skill automates Git operations including add, commit, switch branches, and push commands through bash scripting. It enforces non-main-branch workflows and supports Japanese commit message conventions (feat, fix, refactor, docs) to standardize your workflow and reduce manual command entry.

Can I create pull requests automatically with GitHub CLI?

Yes. This Skill uses gh CLI to automate PR creation and editing, including multi-line PR bodies via heredoc syntax. It generates PRs with concise titles and structured descriptions, eliminating manual GitHub web interface steps for feature-branch workflows.

What's the best way to create GitHub issues and retrieve comments via CLI?

This Skill automates issue creation and comment retrieval using GitHub CLI (gh). It streamlines issue management within bash-based development workflows, keeping issue tracking synchronized with your Git and PR automation pipeline.

Do I need special setup to enforce feature-branch workflows?

This Skill enforces non-main-branch workflow requirements built into its automation logic. It requires bash, GitHub CLI (gh), and Git installed; no additional tooling or configuration is needed beyond standard development environment prerequisites.

How do I handle multi-line PR descriptions in automation?

This Skill uses heredoc syntax to construct multi-line PR bodies within bash automation. It avoids Co-Authored-By metadata and supports structured, readable descriptions for complex feature PRs without manual formatting.

Can I integrate this workflow for teams working with multiple feature branches?

Yes. This Skill is designed for workflows involving multiple feature branches where changes must be committed, PRs generated, and branch synchronization automated. It reduces errors and keeps parallel development tracks aligned through CLI-driven batch operations.