From essentials
Executes GitHub CLI (gh) commands for PR status/checks/merges, issue listing/creation/viewing, repo viewing, and more. Requires gh installed/authenticated in GitHub repos.
npx claudepluginhub gantisstorm/essentials-claude-code --plugin essentialsThis skill is limited to using the following tools:
GitHub CLI helper skill for common `gh` operations. Requires `gh` CLI installed and authenticated.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
GitHub CLI helper skill for common gh operations. Requires gh CLI installed and authenticated.
Note: For creating/updating PR descriptions, use /mr-description-creator instead.
View PR status:
/github-cli pr status
View PR checks:
/github-cli pr checks
Merge PR:
/github-cli pr merge
View PR in browser:
/github-cli pr view --web
List PRs:
/github-cli pr list
List issues:
/github-cli issue list
Create issue:
/github-cli issue create
View issue:
/github-cli issue view <number>
View repo:
/github-cli repo view
# Check gh is installed
gh --version
# Check gh is authenticated
gh auth status
If not installed, report: "Install gh CLI: https://cli.github.com" If not authenticated, report: "Run: gh auth login"
Parse $ARGUMENTS and pass directly to gh:
gh $ARGUMENTS
Show gh output directly to user.
# View PR status
/github-cli pr status
# View PR checks (CI status)
/github-cli pr checks
# Merge current PR
/github-cli pr merge
# List open PRs
/github-cli pr list
# View PR in browser
/github-cli pr view --web
# List issues
/github-cli issue list
# Create issue interactively
/github-cli issue create
# View repo info
/github-cli repo view
# API calls
/github-cli api repos/{owner}/{repo}/pulls
# Any gh command works
/github-cli release list
/github-cli workflow list
| Scenario | Action |
|---|---|
| gh not installed | "Install gh: https://cli.github.com" |
| Not authenticated | "Run: gh auth login" |
| gh command fails | Show gh error output |