By thimslugga
Expert bash/shell scripting across all platforms with Bash 5.3 and 2025 security-first practices. PROACTIVELY activate for: (1) any bash/shell task, (2) Bash 5.3 features (in-shell substitution, BASH_TRAPSIG), (3) security-first patterns (input validation, HISTFILE), (4) ShellCheck v0.11 validation, (5) CI/CD and container-aware scripting, (6) debugging and profiling. Provides: Bash 5.3 reference, ShellCheck rules, Google Shell Style, POSIX.1-2024 compliance, cross-platform patterns, and cloud/CI helpers.
Based on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Deep analysis of bash scripts for security, performance, portability, and best practices compliance
Optimize bash scripts for performance, reducing execution time and resource usage
Create, review, or optimize bash/shell scripts following 2025 best practices and cross-platform standards
Generate production-ready bash script templates with modern patterns, error handling, and configurable features
Advanced bash array patterns including indexed and associative arrays, mapfile/readarray, slicing, and array manipulation (2025). PROACTIVELY activate for: (1) using bash arrays effectively, (2) reading file contents into an array via mapfile/readarray, (3) authoring associative arrays (declare -A), (4) iterating arrays safely under set -u, (5) deleting/inserting array elements, (6) joining and splitting arrays, (7) passing arrays to functions via nameref (declare -n), (8) array slicing and parameter expansion, (9) sorting and deduplicating arrays in pure bash. Provides: indexed and associative array reference, mapfile and readarray recipes, nameref-based pass-by-reference, slicing/expansion patterns, and gotchas for unset variables and word splitting.
Bash 5.3 new features and modern patterns (2025). PROACTIVELY activate for: (1) Bash 5.3 specific features (BASH_TRAPSIG, in-shell command substitution, ${|} REPLY syntax), (2) checking bash version compatibility, (3) migrating scripts to take advantage of 5.3 additions, (4) C23 conformance changes in bash 5.3, (5) new shopt and bind options, (6) trap handling improvements, (7) wait -p enhancements, (8) READLINE_ARGUMENT and history expansion changes. Provides: complete 5.3 feature reference, version-detection snippets, compatibility shims for older bash, migration recipes, and POSIX.1-2024 alignment notes.
Expert bash/shell scripting across environments where Bash is available (Linux, macOS, Git Bash on Windows, WSL, containers). This is a Bash-focused skill - it does not provide PowerShell parity; on Windows the target is the Bash interpreter (Git Bash / WSL), not native PowerShell. PROACTIVELY activate for: (1) ANY bash/shell script task, (2) System automation, (3) DevOps/CI/CD scripts, (4) Build/deployment automation, (5) Script review/debugging, (6) Converting commands to scripts. Provides: Google Shell Style Guide compliance, ShellCheck validation, Bash portability across Linux/macOS/WSL/Git Bash/containers, POSIX compliance, security hardening, error handling, performance optimization, testing with BATS, and production-ready patterns. Ensures professional-grade, secure, portable Bash scripts every time.
Comprehensive bash script debugging and troubleshooting techniques for 2025. PROACTIVELY activate for: (1) debugging a misbehaving bash script, (2) using set -x, set -e, set -u, set -o pipefail (strict mode), (3) customizing PS4 for richer trace output, (4) trap DEBUG, ERR, and EXIT for diagnostics, (5) bashdb and other interactive debuggers, (6) profiling slow scripts (timing, BASH_REMATCH overhead), (7) reproducing CI-only failures locally, (8) resolving unbound variable or command not found errors, (9) understanding subshell vs current-shell variable scope. Provides: strict-mode template, PS4 patterns, trap recipes for instrumentation, profiling techniques, and a step-by-step debugging playbook.
Modern DevOps and CI/CD bash automation patterns with containers and cloud (2025). PROACTIVELY activate for: (1) writing CI/CD scripts (GitHub Actions, GitLab CI, Azure DevOps), (2) container-aware shell scripting (detecting containers, Kubernetes pods), (3) cloud provider helpers (AWS CLI, Azure CLI, gcloud), (4) blue-green and canary deployments via bash, (5) writing idempotent rollback scripts, (6) integrating with Docker/Compose from bash, (7) cross-environment variable management, (8) build matrix orchestration. Provides: copy-pasteable CI snippets, container detection helpers, cloud CLI wrappers, deployment orchestration patterns, and idempotent rollback templates.
Uses power tools
Uses Bash, Write, or Edit tools
A curated collection of Claude Code plugins covering development tooling, infrastructure, documentation, and language expertise.
| Plugin | Description | Version |
|---|---|---|
| bash-expert | Bash 5.3 scripting, ShellCheck, security-first patterns, cross-platform | 1.0.0 |
| database-expert | SQL, PostgreSQL, Redshift | 1.0.0 |
| developer | General development workflows and tooling | 1.0.0 |
| doc-expert | ADR authoring, Markdown lint, documentation diagnostics | 1.0.0 |
| docker-expert | Docker 2025 features, multi-stage builds, security hardening | 1.5.8 |
| git-expert | Git 2.49+, GitHub CLI, signed commits, safety guardrails | 1.5.6 |
| plugin-expert | Claude Code plugin development, validation, and publishing | 1.0.0 |
| powershell-expert | PowerShell 7.5+, Az/Graph/PnP modules, cross-platform | 2.0.6 |
| python-development | Django, FastAPI, async patterns, uv | 1.0.0 |
| python-expert | Python 3.13+, asyncio, type hints, FastAPI, pytest, Ruff | 2.3.6 |
| terraform-expert | Terraform/OpenTofu, Azure/AWS/GCP, state management, CI/CD | 1.0.0 |
| windows-path-expert | Windows path resolution, Git Bash/MINGW compatibility | 1.0.0 |
# Add this marketplace to Claude Code
/plugin marketplace add thimslugga https://github.com/thimslugga/thimslugga-cc-plugins
# Install a specific plugin
/plugin install bash-expert@thimslugga
/plugin install docker-expert@thimslugga
thimslugga-cc-plugins/
├── .claude-plugin/
│ └── marketplace.json # Central plugin registry
├── plugins/
│ └── <plugin-name>/
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin config (version must match marketplace)
│ ├── agents/ # Agent definitions
│ ├── skills/ # Skill knowledge bases
│ ├── commands/ # Slash commands
│ └── hooks/ # Lifecycle hooks
└── scripts/
├── version_ops.py # Version management
└── validate_plugins.py # Plugin structure validation
Versions are kept in sync between each plugin's plugin.json and the central marketplace.json. Always use the version script — never edit versions by hand.
# Bump a single plugin after making changes
python3 scripts/version_ops.py -b patch -p <plugin-name>
# Bump all plugins
python3 scripts/version_ops.py -b patch --all
# Validate versions are in sync
python3 scripts/version_ops.py --validate
# Sync if they drift
python3 scripts/version_ops.py --sync
Version bump guide:
patch — bug fixes, docs, minor tweaksminor — new features, skills, or agentsmajor — breaking changespython3 scripts/validate_plugins.py to check structurepython3 scripts/version_ops.py --validate to check version syncMIT — see LICENSE
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimnpx claudepluginhub thimslugga/thimslugga-cc-plugins --plugin bash-expertWindows path resolution and Git Bash compatibility expert for Claude Code. PROACTIVELY activate for: (1) file path errors on Windows (backslash issues), (2) Git Bash MINGW path resolution, (3) Edit/Write tool failures with Windows paths, (4) cross-platform path conversion, (5) Windows file system navigation, (6) path format detection and conversion, (7) Windows-specific file operation troubleshooting. Provides: automatic format detection, backslash conversion, MINGW fixes, real-time validation.
Comprehensive Python 3.13+ expertise covering modern Python, async, types, performance, and cloud deployment. PROACTIVELY activate for: (1) any Python task, (2) 3.13+ features (free-threading, JIT), (3) asyncio and concurrency, (4) type hints with mypy/pyright, (5) package management (uv/pip/poetry), (6) project layout, (7) FastAPI, (8) Pydantic, (9) pytest, (10) Cloudflare Workers/Containers Python, (11) GitHub Actions workflows, (12) profiling, (13) OWASP security, (14) Ruff linting. Provides: production patterns, memory profiling, dataclass vs Pydantic guidance.
Complete PowerShell expertise across Windows/Linux/macOS. PROACTIVELY activate for: (1) any PowerShell task (scripts/modules/cmdlets), (2) CI/CD automation (GitHub Actions, Azure DevOps), (3) cross-platform scripting, (4) module management (PSGallery), (5) Azure/AWS/M365 automation, (6) debugging and optimization, (7) security best practices. Provides: PowerShell 7+ features, Az/Microsoft.Graph/PnP/AWS Tools patterns, PSGallery integration, CI/CD pipeline templates.
Python development with Django, FastAPI, async patterns and uv for package management
Complete Terraform expertise for Azure, AWS, and Google Cloud. PROACTIVELY activate for: (1) any Terraform task (init/plan/apply/validate), (2) IaC design, (3) resource import and state management, (4) multi-environment architectures, (5) CI/CD integration, (6) security scanning, (7) version-aware code generation, (8) CLI mastery. Provides: provider knowledge (AzureRM/AWS/GCP), state operations, bulk import (Terraformer/aztfexport), tfsec/Checkov, enterprise patterns, full CLI reference.
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Harness-native ECC operator layer - 67 agents, 271 skills, 92 legacy command shims, reusable hooks, rules, selective install profiles, and production-ready workflows for Claude Code, Codex, OpenCode, Cursor, and related agent harnesses
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns
Develop, test, build, and deploy Godot 4.x games with Claude Code. Includes GdUnit4 testing, web/desktop exports, CI/CD pipelines, and deployment to Vercel/GitHub Pages/itch.io.
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.