github — for Claude Code github, printful-client, community, for Claude Code, ide skills, dropship, dropshipping, ecommerce, printful, printful-js

v1.0.0

Acerca de este Skill

Escenario recomendado: Ideal for AI agents that need github pull requests and merges. Resumen localizado: --auto — Enable auto-merge when checks pass (GitHub will merge automatically). It covers dropship, dropshipping, ecommerce workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Características

GitHub Pull Requests and Merges
GitHub CLI (gh) installed and authenticated: gh auth login
Creating a Pull Request
From current branch (after push)
Interactive prompts for title, body, base branch, and reviewers.

# Core Topics

grenovales grenovales
[20]
[3]
Updated: 2/1/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
43
Canonical Locale
en
Detected Body Locale
en

Escenario recomendado: Ideal for AI agents that need github pull requests and merges. Resumen localizado: --auto — Enable auto-merge when checks pass (GitHub will merge automatically). It covers dropship, dropshipping, ecommerce workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

¿Por qué usar esta habilidad?

Recomendacion: github helps agents github pull requests and merges. --auto — Enable auto-merge when checks pass (GitHub will merge automatically). This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Mejor para

Escenario recomendado: Ideal for AI agents that need github pull requests and merges.

Casos de uso accionables for github

Caso de uso: Applying GitHub Pull Requests and Merges
Caso de uso: Applying GitHub CLI (gh) installed and authenticated: gh auth login
Caso de uso: Applying Creating a Pull Request

! Seguridad y limitaciones

  • Limitacion: Requires repository-specific context from the skill documentation
  • Limitacion: Works best when the underlying tools and dependencies are already configured

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 github?

Escenario recomendado: Ideal for AI agents that need github pull requests and merges. Resumen localizado: --auto — Enable auto-merge when checks pass (GitHub will merge automatically). It covers dropship, dropshipping, ecommerce workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

How do I install github?

Run the command: npx killer-skills add grenovales/printful-client. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for github?

Key use cases include: Caso de uso: Applying GitHub Pull Requests and Merges, Caso de uso: Applying GitHub CLI (gh) installed and authenticated: gh auth login, Caso de uso: Applying Creating a Pull Request.

Which IDEs are compatible with github?

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 github?

Limitacion: Requires repository-specific context from the skill documentation. Limitacion: Works best when the underlying tools and dependencies are already configured.

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 grenovales/printful-client. 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 github 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

github

--auto — Enable auto-merge when checks pass (GitHub will merge automatically). It covers dropship, dropshipping, ecommerce workflows. This AI agent skill

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

GitHub Pull Requests and Merges

Prerequisites

  • GitHub CLI (gh) installed and authenticated: gh auth login

Creating a Pull Request

From current branch (after push)

bash
1gh pr create

Interactive prompts for title, body, base branch, and reviewers.

Non-interactive

bash
1gh pr create --title "feat: add X" --body "Description of changes" --base main

From a branch without pushing first

bash
1gh pr create --fill # Uses commit messages for title/body; pushes if needed

Draft PR

bash
1gh pr create --draft

Reviewing a Pull Request

Check out a PR locally

bash
1gh pr checkout <pr-number> 2# or 3gh pr checkout 42

View PR details

bash
1gh pr view <pr-number> 2gh pr view --web # Open in browser

List PRs

bash
1gh pr list # Open PRs 2gh pr list --state merged # Merged PRs 3gh pr list --author @me # Your PRs

Add a review comment (from CLI)

bash
1gh pr review <pr-number> --comment --body "LGTM" 2gh pr review <pr-number> --approve --body "Approved" 3gh pr review <pr-number> --request-changes --body "Please fix X"

Merging a Pull Request

Merge with default strategy (repo setting)

bash
1gh pr merge <pr-number>

Merge strategies

StrategyFlagResult
Merge--mergeCreates a merge commit
Squash--squashSingle commit from PR
Rebase--rebaseRebase PR commits onto base

Examples:

bash
1gh pr merge 42 --squash --delete-branch 2gh pr merge 42 --merge 3gh pr merge 42 --rebase

Common merge options

  • --delete-branch — Delete the branch after merge (local and remote when using squash/merge).
  • --auto — Enable auto-merge when checks pass (GitHub will merge automatically).
  • --admin — Merge even if branch is not up to date (use with care).

Merge without merging (close as not merged)

bash
1gh pr close <pr-number>

Workflow checklist

Before creating a PR:

  • Branch is up to date with base (e.g. git fetch origin && git rebase origin/main)
  • Commits are logical; consider squash if many small fixes
  • Title and description explain what and why

Before merging:

  • CI passes
  • Review approved (if required)
  • Choose correct strategy: squash for single-feature PRs, merge when preserving history

Quick reference

TaskCommand
Create PRgh pr create
Checkout PRgh pr checkout <n>
View PRgh pr view <n>
Merge (squash)gh pr merge <n> --squash --delete-branch
Merge (merge)gh pr merge <n> --merge
List open PRsgh pr list

Habilidades relacionadas

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

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

Resumen localizado: 🦞 # 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
Inteligencia Artificial

widget-generator

Logo of f
f

Resumen localizado: 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

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

Resumen localizado: 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
Navegador

pr-review

Logo of pytorch
pytorch

Resumen localizado: 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
Desarrollador