Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By xobotyi
Infrastructure management discipline: Ansible automation, container orchestration, Proxmox virtualization, Unraid NAS, and network architecture
npx claudepluginhub xobotyi/cc-foundry --plugin infrastructureAnsible automation conventions, patterns, and toolchain: playbook design, roles, inventory, vault, collections, execution environments, Event-Driven Ansible, testing, and performance tuning. Invoke whenever task involves any interaction with Ansible — writing playbooks, creating roles, managing inventory, reviewing automation code, debugging runs, upgrading ansible-core, or working with AAP.
Docker and Podman container management: Dockerfile optimization, multi-stage builds, Compose v2 orchestration, networking, volumes, security hardening, supply chain integrity, health checks, resource limits, Quadlet systemd integration, and debugging. Invoke whenever task involves any interaction with containers — writing Dockerfiles, configuring Compose, managing Podman Quadlets, reviewing container security, debugging container issues, or setting up image signing and scanning.
Infrastructure engineering discipline: infrastructure-as-code principles, deliverable quality standards, environment parity, change management, security posture, observability, incident response, policy-as-code, supply chain integrity, and disaster recovery. Invoke whenever task involves any interaction with infrastructure work — provisioning, configuring, deploying, monitoring, or operating infrastructure systems.
Network infrastructure for self-hosted environments: VLANs, firewalls (nftables, OPNsense, pfSense), DNS (Pi-hole, AdGuard Home, split-horizon), reverse proxies (Caddy, Traefik, Nginx Proxy Manager), VPN (WireGuard, Tailscale), TLS/SSL certificate management, DHCP, and security hardening. Invoke when task involves any interaction with network configuration — designing, implementing, debugging, reviewing, or planning network architecture.
Proxmox VE administration: VM/LXC/OCI container provisioning, storage backends, networking/SDN, clustering, high availability, API automation, cloud-init templates, backups/PBS, PCIe passthrough, and vGPU. Invoke whenever task involves any interaction with Proxmox VE — configuring hosts, managing guests, designing storage or networking, writing automation scripts, planning clusters, troubleshooting, or reviewing PVE configurations.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Multi-agent orchestration system with MCP tools and Claude Code plugin agents. 51 specialized agents for development workflows, code quality, deployment, research, and more.
Ansible playbook validation and configuration management best practices
Use this agent when setting up CI/CD pipelines, configuring Docker containers, deploying applications to cloud platforms, setting up Kubernetes clusters, implementing infrastructure as code, or automating deployment workflows. Examples: <example>Context: User is setting up a new project and needs deployment automation. user: "I've built a FastAPI application and need to deploy it to production with proper CI/CD" assistant: "I'll use the deployment-engineer agent to set up a complete deployment pipeline with Docker, GitHub Actions, and production-ready configurations."</example> <example>Context: User mentions containerization or deployment issues. user: "Our deployment process is manual and error-prone. We need to automate it." assistant: "Let me use the deployment-engineer agent to design an automated CI/CD pipeline that eliminates manual steps and ensures reliable deployments."</example>
Complete developer toolkit for Claude Code
Comprehensive plugin development toolkit for creating Claude Code plugins with AI-powered guidance for skills, agents, commands, and hooks
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.
Open-source contribution discipline: issue writing, pull request creation, and contribution etiquette
PHP language discipline: conventions, modern idioms, type system, OOP, and testing
Git commit workflow: atomic commits, validation, conventions
Status line with context window, cost, and model info
Python language discipline: conventions, modern idioms, type system, packaging, testing, and LSP-powered code intelligence
Plugins that make Claude Code better at its job.
Claude Code is powerful out of the box, but it has gaps. It forgets skills mid-session. Commits are messy. Building AI artifacts is trial-and-error. Code ships without validation. These plugins fix that.
Add the marketplace, then install any plugin:
/plugin marketplace add xobotyi/cc-foundry
/plugin install <plugin-name>
Claude skips skills and forgets about them mid-session. This plugin injects a Skill Enforcement Framework via lifecycle hooks that forces Claude to evaluate which skills apply at every checkpoint: user prompt, after reading files, after editing, and after loading skills. Skills are treated as non-atomic — phase shifts (coding to testing) trigger re-evaluation of unread references from already-loaded skills.
/plugin install skill-enforcer
Messy commits — mixed changes, vague messages, wrong order. The /commit command enforces an 8-step pipeline: identify
logical units in the diff, plan commit order (style to refactor to fix to feature), run quality gates, self-review,
stage selectively, validate messages against conventions, commit, and verify. Each message runs through automated
validation before execution.
/plugin install git-commit
Planning is either too shallow or too detailed. This plugin provides a four-stage pipeline that produces artifacts consumable by both humans and agents: design documents (problem analysis and recommendation), technical designs (component mapping and sequencing), task decomposition (actionable hierarchies with acceptance criteria), and task creation (issue tracker items). Each stage builds on the previous with explicit approval gates.
/plugin install the-blueprint
Claude writes code before understanding what exists — guessing APIs, skipping tests, multiplying abstractions. This
plugin provides a coding skill that enforces a discovery-first workflow (Discover, Plan, Implement, Verify) and a
software-engineer output style with LSP-first navigation and engineering judgment. Runs before language-specific
skills as a prerequisite.
/plugin install the-coder
Code quality is checked manually or not at all. This plugin provides a two-level validation pipeline:
quality-validation checks that deliverables match the original request before completion, and
code-quality-evaluation orchestrates 8 specialized review agents (naming, complexity, comments, tests, error handling,
security, observability, documentation) that evaluate code in parallel. All agents are read-only — they report, you
decide.
/plugin install the-crucible
No visibility into context window usage, cost, or model. This plugin installs a 3-row status line to your user-level Claude configuration showing output style, model, session cost, context window remaining, cache hit rate, and current working directory. Color urgency increases as context approaches limits. Auto-syncs on every session start and survives agent directory changes.
/plugin install the-statusline
Agentic workflow mechanics — the foundational skills that make working with Claude Code effective across sessions and
teams. The claude-md skill applies prompt engineering principles to CLAUDE.md files: what belongs where, writing
instructions Claude actually follows, diagnosing why rules get ignored (buried, vague, stale, contradictory), and
systematic improvement. The handoff skill produces structured transfer documents when work crosses context boundaries
— session restarts, teammate delegation, async resumption — preserving decisions, constraints, and remaining work in
500-2000 tokens while dropping noise.
/plugin install the-workflow
Creating prompts, skills, agents, and output styles is guesswork without structured guidance. This plugin provides
skills encoding best practices for each artifact type: prompt-engineering (foundation), skill-engineering,
subagent-engineering, output-style-engineering, and claude-code-sdk (reference). All skills build on
prompt-engineering fundamentals. Includes an ai-engineer output style for collaborative artifact work.
/plugin install ai-helpers
Go has strong idioms that differ from other languages — premature abstraction, incorrect error handling, interface
misuse, and concurrency bugs are common pitfalls. This plugin provides a golang skill covering conventions, error
handling, interfaces, concurrency, testing, and project structure, plus a templ skill for type-safe HTML templating
with component composition, attribute handling, and JS integration.
/plugin install golang