By robbyt
Manage GitHub repositories conversationally via gh CLI: create/edit/close issues and pull requests, monitor/rerun Actions workflows, fetch repo details/metadata, and view raw file contents from URLs.
npx claudepluginhub robbyt/claude-skills --plugin gh-cliGitHub Actions workflow management using GitHub CLI. Trigger when user wants to check CI status ("check CI", "is the build passing"), view workflow runs ("show recent runs", "view action logs"), watch running workflows ("watch CI"), or rerun failed workflows ("rerun the build").
GitHub issue management using GitHub CLI. Trigger when user wants to list issues ("show open issues"), view issue details ("view issue 456"), create issues ("create an issue", "file a bug"), or edit/close issues ("close issue", "add label to issue").
Pull request operations using GitHub CLI. Trigger when user wants to list PRs ("show open PRs"), view PR details ("view PR 123"), create PRs ("create a pull request"), review/merge PRs ("merge PR", "approve PR"), or view PR diffs ("show PR diff", "what files changed in PR").
Repository information using GitHub CLI. Trigger when user wants to view repository details ("show repo info", "what's this repo about"), list repositories ("list my repos", "show repos for user"), or check repository metadata ("stars", "languages", "topics").
Fetch raw file content from GitHub URLs. Trigger when user shares a GitHub file link (https://github.com/user/repo/blob/main/file.go) and wants to view the source code. Avoids HTML/JS clutter from WebFetch.
A collection of Claude Code skills and plugins.
Note: This marketplace is under active development and has not yet reached a stable release. Skills may be renamed, reorganized, or change considerably. A stable release is expected soon.
/plugin marketplace add robbyt/claude-skills
After adding the marketplace, run /exit and restart Claude Code with claude --continue.
To install individual skills:
/plugin pluginsBrowse and install pluginsrobbyt-claude-skills marketplaceTo update skills:
/plugin pluginsManage and uninstall pluginsrobbyt-claude-skillsSome plugins require the following tools:
uv - Python package installer and runner (installation guide)jq - JSON processor for parsing tool inputExternal formatters are called directly from your PATH:
ruff - Python formatter (install via uv sync)black - Python formatter (install via uv sync)gofmt - Go formatter (version matches your installed Go)swiftformat - Swift formatter (install via brew install swiftformat)For reproducible formatting, pin tool versions in your project's dependency files (pyproject.toml, go.mod, etc.).
Claude Code plugins can contain scripts that run on your local computer. Only install plugins from sources you trust. Consider enabling the sandbox feature: /sandbox (see sandboxing docs)
Tools for managing CLAUDE.md memory files. Includes reflect skill for analyzing conversation history to improve memory files. Trigger with reflect on this session or reflect on this conversation.
Integrates the OpenAI Codex CLI for code reviews, plan review, and codebase analysis. Includes MCP server integration and three skills: diff-review, plan-review, and codebase-analysis. Trigger with use codex to ..., ask codex ..., or have codex review ....
Requirements: Codex CLI (installation guide) with API keys or OAuth configured.
Integrates the Gemini CLI for code reviews, web search via Google Search, plan review, and codebase analysis. Includes four skills: web-search, diff-review, plan-review, and codebase-analysis. Trigger with use gemini to ... or ask gemini ....
Requirements: Gemini CLI v0.17.0+ (installation guide) with authentication configured.
Interacts with GitHub using the gh CLI for PR management, issues, repository operations, GitHub Actions, and viewing GitHub file links. Triggers on gh mentions or GitHub operations such as viewing a github.com link.
Requirements: GitHub CLI (installation guide) with authentication configured (gh auth login).
Formats Go files with gofmt after Write/Edit/MultiEdit operations. Runs as a PostToolUse hook.
Reviews Go code against a style guide combining Google and Uber Go style guides. Identifies issues not typically found by static analysis. Trigger with review this Go code or review my PR.
Formats Python files with black after Write/Edit/MultiEdit operations. Runs as a PostToolUse hook.
Formats Python files with ruff after Write/Edit/MultiEdit operations. Runs as a PostToolUse hook. Ruff formats faster than Black.
Note: Do not enable both python-formatter-ruff and python-formatter-black simultaneously, as both will attempt to format the same files.
Formats Swift files with swiftformat after Write/Edit/MultiEdit operations. Runs as a PostToolUse hook. Falls back to swift format (built-in) if swiftformat is not installed.
Requirements: swiftformat (install via brew install swiftformat) or Swift toolchain
To use locally during development:
/plugin marketplace add /path/to/claude-skills
/plugin install claude-md
MIT
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns
Creative skill for generating algorithmic and generative art. Produces visual designs using mathematical patterns, fractals, and procedural generation.
Frontend design skill for UI/UX implementation
Humanise text and remove AI writing patterns. Detects and fixes 24 AI tell-tales including inflated language, promotional tone, AI vocabulary, filler phrases, sycophantic tone, and formulaic structure.
Expert guidance for Next.js Cache Components and Partial Prerendering (PPR). Proactively activates in projects with cacheComponents: true, providing patterns for 'use cache' directive, cacheLife(), cacheTag(), cache invalidation, and parameter permutation rendering.