pigfoot's Claude Code Hubs
A curated collection of plugins, skills, and configuration templates for
Claude Code, plus integration with recommended third-party
marketplaces.
What's Inside
🔌 Plugins
From this marketplace (pigfoot):
- commit - Smart commit message generation with conventional commits, emoji prefixes, and
GPG signing support
- confluence - Professional Confluence document management with intelligent roundtrip
editing (preserves macros while Claude edits content), smart routing (auto-selects between MCP and REST API
for 25x faster writes), short URL resolution, search quality detection, markdown-first workflows, unlimited file
sizes, any-file attachment upload with auto image/document detection, and full-width page layout with table
column width control
- nano-banana - AI image generation with Gemini models. Direct generation or interactive
prompting with brand style support
- secure-container-build - Build secure container images with Wolfi runtime,
non-root users, and multi-stage builds. Templates for Python/uv, Bun, Node.js/pnpm, Golang, and Rust
- github-actions-container-build - Build multi-architecture container
images in GitHub Actions. Matrix builds (public repos), QEMU (private repos), Podman rootless builds
Recommended third-party plugins:
- context7 - Access up-to-date documentation and code examples for any
library or framework (official from @claude-plugins-official)
- superpowers - Comprehensive skills library with proven development
workflows (TDD, debugging, code review)
🎯 Skills
Reusable workflow patterns included in plugins - automatically available after plugin installation.
⚙️ Configuration Templates
- .CLAUDE.md - Comprehensive development guidelines template with language detection, workflow
patterns, and best practices
Prerequisites
Required Tools
Before using this marketplace, ensure you have these tools installed:
macOS (using Homebrew)
Recommended to use Homebrew:
# Install Homebrew if you don't have it
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Install required tools
brew install jq
brew install oven-sh/bun/bun
brew install uv
Linux
Use apt, apt-get, yum, pacman, apk or any native package manager tool.
Example (Debian/Ubuntu):
sudo apt-get update && sudo apt-get install -y jq
# bun for javascript/typescript
curl -fsSL https://bun.sh/install | bash
# uv for python
curl -LsSf https://astral.sh/uv/install.sh | sh
Running Claude Code on Windows
For the best experience, we recommend using Windows Terminal:
-
Windows 11: Windows Terminal is pre-installed. Just open it and run claude.
-
Windows 10: Install Windows Terminal first:
# Using winget
winget install Microsoft.WindowsTerminal
# Or using Scoop
scoop install windows-terminal
Windows (Scoop)
Install tools using Scoop:
# Install Scoop if you don't have it
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression
# Install required tools
scoop install jq
scoop install bun
scoop install uv
Note: Windows built-in winget is also possible, however Scoop is recommended for better compatibility with
command line tools.
Install Claude Code
Follow the official installation guide or use one of the methods below:
Homebrew (macOS, Linux):
brew install --cask claude-code
macOS, Linux, WSL, Git Bash:
curl -fsSL https://claude.ai/install.sh | bash
Windows PowerShell
irm https://claude.ai/install.ps1 | iex
# Add to PATH (if needed)
[Environment]::SetEnvironmentVariable(
"Path",
[Environment]::GetEnvironmentVariable("Path", "User") + ";$env:USERPROFILE\.local\bin",
"User"
)
Custom Settings for Optimal Workflow (Optional)
This one-time setup grants Claude Code necessary permissions and configures CLAUDE.md for optimal workflow.
Step 1: Configure Allow Permissions
What this does:
- Grants permissions for common commands (git, file operations, package managers)
- Enables skills and MCP tools
- Optimizes Claude Code settings
macOS, Linux, WSL, Git Bash: